-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
99 lines (95 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import scrollbar from 'tailwindcss-scrollbar';
export default {
mode: 'jit',
content: ['./src/**/*.{tsx,html}'],
theme: {
fontFamily: {
header: ['Bebas Neue', 'cursive'],
code: ['Courier New', 'Courier', 'monospace'],
cursive: ['Gruppo', 'cursive'],
},
extend: {
colors: {
midnight: {
DEFAULT: '#5d616c',
50: '#fefefe',
100: '#cfd2d9',
200: '#b5b9c2',
300: '#79808c',
400: '#5d616c',
500: '#474952',
600: '#37393f',
700: '#25272b',
750: '#202327',
800: '#15171b',
900: '#0a0d10',
},
primary: {
DEFAULT: '#46bdc6',
50: '#b2faff',
100: '#5df0fb',
200: '#52ebf6',
300: '#4fe1ec',
400: '#4bd5df',
500: '#46bdc6',
600: '#30868c',
700: '#1d5256',
800: '#102d30',
900: '#091819',
},
info: {
DEFAULT: '#4979EA',
50: '#8791F1',
100: '#808EF0',
200: '#7287EF',
300: '#6581ED',
400: '#577DEB',
500: '#4979EA',
600: '#1A5FE1',
700: '#1450AE',
800: '#0F3E7C',
900: '#09284A',
},
success: {
50: '#c2fa6e',
100: '#a9eb6e',
200: '#91dd6e',
300: '#7bce6d',
400: '#66be6c',
500: '#52af6a',
600: '#40a067',
700: '#2f9062',
800: '#1f815d',
900: '#107257',
},
error: {
DEFAULT: '#D45F5F',
50: '#E8B9A7',
100: '#E6B09F',
200: '#E19E8F',
300: '#DD8A7F',
400: '#D9756F',
500: '#D45F5F',
600: '#C6353D',
700: '#9A2936',
800: '#6E1D2C',
900: '#41111D',
},
warning: {
DEFAULT: '#EAAC49',
50: '#F1DE87',
100: '#F0D980',
200: '#EFD072',
300: '#EDC565',
400: '#EBB957',
500: '#EAAC49',
600: '#E18C1A',
700: '#AE6614',
800: '#7C430F',
900: '#4A2509',
},
},
},
},
plugins: [scrollbar],
};