-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
105 lines (105 loc) · 2.42 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
105 lines (105 loc) · 2.42 KB
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
103
104
105
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
'./src/**/*.tsx'
],
theme: {
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
}
},
fontSize: {
xs: ['12px', { fontWeight: '400', lineHeight: '18.75px', }],
sm: ['14px', { fontWeight: '400', lineHeight: '22px', }],
sm2: ['14px', { fontWeight: '500', lineHeight: '22px', }],
base: ['14px', { fontWeight: '400', lineHeight: '16px', }],
lg: ['16px', { fontWeight: '500', lineHeight: '28px', }],
xl: ['24px', { fontWeight: '500', lineHeight: '22px', }],
},
colors: {
transparent: 'transparent',
brand: {
primary: {
darkest: '#0068AB',
dark: '#0077B3',
dark01: '#008ACF',
dark02: '#0068AB',
light: '#EDF8FD',
},
secondary: {
darkest: '#002C50',
dark: '#0C395D',
light: '#C7E1EE',
},
background: {
DEFAULT: '#F8F8F8',
}
},
neutral: {
dark: {
base: '#303133',
dark01: '#595A5C',
dark02: '#979899',
dark03: '#E0E0E0',
dark04: '#B6B6B6',
},
light: {
base: '#FFFFFF',
light01: '#FAFAFA',
light02: '#F5F5F5',
light03: '#F1F1F1',
},
},
alert: {
success: {
darkest: '#347A12',
dark: '#52C41A',
medium: '#B7EB8F',
light: '#F6FFED',
},
info: {
darkest: '#01588C',
dark: '#1890FF',
medium: '#91D5FF',
light: '#E6F7FF',
},
danger: {
darkest: '#B82121',
dark: '#FF4D4F',
medium: '#FFCCC7',
light: '#FFF1F0',
},
warning: {
darkest: '#E5A100',
dark: '#FAAD14',
medium: '#FFE58F',
light: '#FFFBE6',
},
},
extra: {
orange: '#F19529',
error: '#D32F2F',
logo: '#3FB9BC',
},
menu: {
background: '#0C395D',
exit: '#002C50',
line: '#1F5B8A',
item: {
selected: '#07253D'
},
text: {
selected: '#C7E1EE',
disabled: '#C7E1EE 49%',
},
},
},
fontFamily: {
roboto: 'Roboto, sans-serif',
markpro: 'Mark Pro, sans-serif',
}
},
plugins: [],
}