-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.79 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
54
55
56
57
58
59
60
61
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
light: {
100: '#8993A4',
200: '#97A0AF',
},
dark: {
100: '#172B4D',
200: '#253858',
},
},
light: {
0: '#FFFFFF',
100: '#FFE6EE',
200: '#FFCCDE',
300: '#FFB3CD',
400: '#FF99BD',
500: '#FF80AC',
600: '#FF669B',
700: '#FF4D8B',
800: '#FF337A',
900: '#FF1A6A',
1000: '#FF0059',
},
dark: {
0: '#FF0059',
100: '#E60050',
200: '#CC0047',
300: '#B3003E',
400: '#990035',
500: '#80002D',
600: '#660024',
700: '#4C001B',
800: '#330012',
900: '#190009',
1000: '#000000',
},
mix: {
0: '#FFCCDE',
100: '#FF99BD',
200: '#FF669B',
300: '#FF337A',
400: '#FF0059',
500: '#CC0047',
600: '#990035',
700: '#660024',
800: '#330012',
},
},
},
},
variants: {
extend: {},
},
plugins: [],
}