-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
102 lines (102 loc) · 2.29 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
99
100
101
102
module.exports = {
theme: {
extend: {
screens: {
'2xl': '1408px'
},
colors: {
black: '#050505',
'light-blue': '#f1f8ff',
gray: {
default: '#f7f7f9',
light: '#9194A1',
lightest: '#EFF0F5',
'100': '#f5f5f5',
'200': '#eeeeee',
'300': '#e0e0e0',
'400': '#bdbdbd',
'500': '#9e9e9e',
'600': '#757575',
'700': '#616161',
'800': '#424242',
'900': '#212121'
},
'light-gray': '#525560',
purple: '#6F42C1',
red: '#D73A49',
green: '#28A745',
orange: {
default: '#f66a0a',
'100': '#fff8f2',
'200': '#eee6d5',
'300': '#d15704',
'400': '#a04100'
},
blue: {
default: '#0366D6',
light: '#d9e8f9'
},
pink: '#D03592',
severity: {
mild: '#fffdef',
moderate: '#ffebda',
aggressive: '#ffdce0'
},
severitytext: {
mild: '#735c0f;',
moderate: '#a04100',
aggressive: '#86181d'
},
severityhover: {
mild: '#FFF5B1',
moderate: '#FFD1AC',
aggressive: '#FDAEB7'
}
},
spacing: {
'11': '2.75rem',
'14': '3.5rem',
'59': '14.75rem',
'80': '20rem',
'102': '25.5rem',
'128': '32rem'
},
maxHeight: {
'128': '32rem'
},
fontFamily: {
sans: [
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"'
],
serif: ['Georgia', 'Cambria', '"Times New Roman"', 'Times', 'serif'],
mono: [
'Anonymous Pro',
'Menlo',
'Monaco',
'Consolas',
'"Liberation Mono"',
'"Courier New"',
'monospace'
]
},
fontSize: {
xxs: '0.65rem',
'3.2xl': '1.25rem',
'3.25xl': '1.5rem',
'3.5xl': '2rem'
}
}
}
}