generated from alpas/starter
-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
35 lines (35 loc) · 971 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
module.exports = {
plugins: [
require('@tailwindcss/custom-forms'),
],
theme: {
fontFamily: {
sans: ['Gilroy', 'sans-serif'],
mono: ['Menlo', 'Monaco', 'Consolas', '"Liberation Mono"', '"Courier New"', 'monospace'],
},
extend: {
colors: {
blue: {
'100': '#cad6f5',
'200': '#aabdef',
'300': '#8aa5e9',
'400': '#4a74dd',
'500': '#2A5BD7',
'600': '#244db7',
'700': '#1d4097',
'800': '#173276',
'900': '#112456'
},
},
screens: {
'xxl': '1921px',
},
lineHeight: {
chill: 1.8
}
}
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'odd', 'even'],
}
}