-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
76 lines (76 loc) · 1.66 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
// tailwind.config.js
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('tailwindcss/colors')
// eslint-disable-next-line @typescript-eslint/no-var-requires
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [],
theme: {
colors: {
white: '#FFFFFF',
black: '#000000',
primary: {
50: '#F3FAFE',
100: '#E6F6FE',
200: '#C1E8FC',
300: '#9CDBFA',
400: '#51BFF6',
500: '#07A4F2',
600: '#0694DA',
700: '#046291',
800: '#034A6D',
900: '#023149',
},
secondary: {
50: '#F9FDFF',
100: '#F4FBFE',
200: '#E3F5FD',
300: '#D2EEFC',
400: '#B1E2F9',
500: '#8FD5F7',
600: '#81C0DE',
700: '#568094',
800: '#40606F',
900: '#2B404A',
},
light: {
50: '#FEFEFE',
100: '#FEFEFE',
200: '#FBFBFB',
300: '#F9F9F9',
400: '#F5F5F5',
500: '#F0F0F0',
600: '#D8D8D8',
700: '#909090',
800: '#6C6C6C',
900: '#484848',
},
dark: {
50: '#F7F9FA',
100: '#EFF3F4',
200: '#D7E0E4',
300: '#BECDD4',
400: '#8EA8B4',
500: '#5D8294',
600: '#547585',
700: '#384E59',
800: '#2A3B43',
900: '#1C272C',
},
red: colors.red,
},
screens: {
xs: { max: '639px' },
sm: { min: '640px' },
md: { min: '768px' },
lg: { min: '1024px' },
xl: { min: '1280px' },
},
extend: {},
},
variants: {},
plugins: [],
}