-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
53 lines (53 loc) · 1.05 KB
/
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
52
53
module.exports = {
purge: ['./src/**/*.tsx'],
mode: 'jit',
darkMode: 'class',
theme: {
fontFamily: {
sans: ['Avenir Next Rounded Std'],
},
extend: {
keyframes: {
fadein: {
from: { opacity: 0 },
to: { opacity: 1 },
},
},
animation: {
fadein: 'fadein 0.6s ease-in-out',
},
colors: {
teal: {
50: '#f0faf5',
100: '#e4f7ee',
200: '#c0eddb',
300: '#84dcbf',
400: '#36c9a0',
500: '#29a389',
600: '#1d8170',
700: '#15655c',
800: '#10514e',
900: '#0d4a4a',
},
violet: {
50: '#f7f6fd',
100: '#efedfc',
200: '#e1dbfa',
300: '#c5b6f6',
400: '#a98bf4',
500: '#8950f1',
600: '#600dde',
700: '#3c0580',
800: '#26024b',
900: '#1c0033',
},
},
},
},
variants: {
extend: {
animation: ['hover', 'focus'],
},
},
plugins: [],
};