-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
38 lines (36 loc) · 1.11 KB
/
tailwind.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin')
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
ngreyblack: '#171717',
ngreyblackhover: '#26252A',
ngreyblacktransparent: 'rgba(0,0,0,0.3)',
ngreytransparent: 'rgba(255,255,255,0.05)',
ngreyoverlay: 'rgba(0,0,0,0.3)',
bgreytext: '#B1B1B1',
ngreen: '#0DBA71',
ngreenhover: '#11E98E',
npurple: '#605dff',
npurpledark: '#26263E',
nwhite: 'white'
},
borderRadius: {
md: '0.5rem',
xl: '1rem'
}
}
},
darkMode: 'class',
plugins: [
plugin(function ({ addBase, theme }) {
addBase({
h1: { fontSize: theme('fontSize.2xl') },
h2: { fontSize: theme('fontSize.xl') },
h3: { fontSize: theme('fontSize.lg') }
})
})
]
}