forked from anonaddy/anonaddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
134 lines (133 loc) · 2.69 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
module.exports = {
purge: {
content: [
'app/**/*.php',
'resources/**/*.html',
'resources/**/*.js',
'resources/**/*.php',
'resources/**/*.vue',
],
// These options are passed through directly to PurgeCSS
options: {
safelist: [
/-active$/,
/-enter$/,
/-leave-to$/,
/show$/,
'bg-green-400',
'bg-red-400',
'bg-grey-400',
],
},
},
theme: {
colors: {
white: '#FFF',
black: '#000',
transparent: 'transparent',
indigo: {
50: '#E0E8F9',
100: '#BED0F7',
200: '#98AEEB',
300: '#7B93DB',
400: '#647ACB',
500: '#4C63B6',
600: '#4055A8',
700: '#35469C',
800: '#2D3A8C',
900: '#19216C',
},
cyan: {
50: '#E1FCF8',
100: '#C1FEF6',
200: '#92FDF2',
300: '#62F4EB',
400: '#3AE7E1',
500: '#1CD4D4',
600: '#0FB5BA',
700: '#099AA4',
800: '#07818F',
900: '#05606E',
},
grey: {
50: '#F5F7FA',
100: '#E4E7EB',
200: '#CBD2D9',
300: '#9AA5B1',
400: '#7B8794',
500: '#616E7C',
600: '#52606D',
700: '#3E4C59',
800: '#323F4B',
900: '#1F2933',
},
pink: {
50: '#FFE3EC',
100: '#FFB8D2',
200: '#FF8CBA',
300: '#F364A2',
400: '#E8368F',
500: '#DA127D',
600: '#BC0A6F',
700: '#A30664',
800: '#870557',
900: '#620042',
},
red: {
50: '#FFE3E3',
100: '#FFBDBD',
200: '#FF9B9B',
300: '#F86A6A',
400: '#EF4E4E',
500: '#E12D39',
600: '#CF1124',
700: '#AB091E',
800: '#8A041A',
900: '#610316',
},
yellow: {
50: '#FFFBEA',
100: '#FFF3C4',
200: '#FCE588',
300: '#FADB5F',
400: '#F7C948',
500: '#F0B429',
600: '#DE911D',
700: '#CB6E17',
800: '#B44D12',
900: '#8D2B0B',
},
green: {
50: '#E3F9E5',
100: '#C1F2C7',
200: '#91E697',
300: '#51CA58',
400: '#31B237',
500: '#18981D',
600: '#0F8613',
700: '#0E7817',
800: '#07600E',
900: '#014807',
},
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
container: {
center: true,
padding: '1.5rem',
},
},
plugins: [
// Some useful comment
],
}