-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
51 lines (50 loc) · 929 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
43
44
45
46
47
48
49
50
51
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
future: {
removeDeprecatedGapUtilities: true,
},
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
lila: {
light: '#D1C1D7',
dark: '#B9A2C3',
},
black: '#000',
rose: {
light: '#F6CBD1',
dark: '#EEA0AA',
},
green: {
light: '#B4E9D6',
dark: '#8CDEC0',
},
blue: {
light: '#70ABC7',
dark: '#507b90',
},
white: {
pure: '#fff',
base: '#f9fafb',
},
gray: {
light: '#d1d5db',
dark: '#898D90',
},
},
extend: {
animation: {
'spin-slow': 'spin 3s ease-in-out infinite',
},
zIndex: {
'-10': '-10',
},
},
},
variants: {
extend: {
animation: ['hover', 'focus'],
},
},
plugins: [],
};