-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1003 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
42
let plugins = [require('@tkh/tailwind-plugin-aspect-ratio')()];
if (!process.env.NETLIFY) {
plugins.push(require('tailwindcss-debug-screens'));
}
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
theme: {
extend: {
fontFamily: {
serif: ['Merriweather', 'serif'],
sans: ['Montserrat', 'sans-serif'],
},
colors: {
nord0: '#2E3440',
nord1: '#3B4252',
nord2: '#434C5E',
nord3: '#4C566A',
nord4: '#D8DEE9',
nord5: '#E5E9F0',
nord6: '#ECEFF4',
nord7: '#8FBCBB',
nord8: '#88C0D0',
nord9: '#81A1C1',
nord10: '#5E81AC',
nord11: '#BF616A',
nord12: '#D08770',
nord13: '#EBCB8B',
nord14: '#A3BE8C',
nord15: '#B48EAD',
},
},
},
variants: {
borderWidth: ['responsive', 'hover'],
opacity: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
},
plugins,
};