forked from nuxt/website-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 972 Bytes
/
tailwind.config.js
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
39
40
41
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
fontFamily: {
sans: [
'Quicksand',
...defaultTheme.fontFamily.sans
]
},
colors: {
nuxt: {
gray: '#2F495E',
lightgreen: '#00C58E',
green: '#108775'
}
},
fill: theme => ({
'nuxt-gray': theme('colors.nuxt.gray'),
'nuxt-lightgreen': theme('colors.nuxt.lightgreen'),
'nuxt-green': theme('colors.nuxt.green')
}),
stroke: theme => ({
'nuxt-gray': theme('colors.nuxt.gray'),
'nuxt-lightgreen': theme('colors.nuxt.lightgreen'),
'nuxt-green': theme('colors.nuxt.green')
}),
boxShadow: {
nuxt: '0 0 8px 0 rgba(10, 31, 68, 0.08)'
},
inset: {
24: '6rem'
}
}
},
variants: {
textColor: ['responsive', 'hover', 'focus', 'group-hover']
},
plugins: []
}