forked from AI-team-UoA/GreekQA-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
122 lines (122 loc) · 2.96 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
plugins: [
require('@tailwindcss/forms'),
require("tailwindcss-autofill")
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
navy: {
DEFAULT: '#0747A6',
"50": "#CAE5FA",
"100": "#97C9F6",
"200": "#61A0E4",
"300": "#3878C9",
"400": "#0747A6",
"500": "#05368E",
"600": "#032877",
"700": "#021C60",
"800": "#01144F",
"900": "#01144F"
},
indigo: {
'50': '#f9fafb',
'100': '#ecf0fc',
'200': '#d9d5f9',
'300': '#b9afef',
'400': '#a185e3',
'500': '#8860da',
'600': '#7044c9',
'700': '#5433a5',
'800': '#3a2377',
'900': '#201747',
},
cerise: {
'50': '#fdfcfb',
'100': '#fbf0ed',
'200': '#f7cfda',
'300': '#eda2b6',
'400': '#ea728d',
'500': '#dd4e6c',
'600': '#c6344d',
'700': '#9e2738',
'800': '#721b25',
'900': '#451114',
},
cocoa: {
'50': '#fcfbf9',
'100': '#fbf0df',
'200': '#f6d5bd',
'300': '#e9ab8c',
'400': '#df7c5d',
'500': '#cc593b',
'600': '#b13f27',
'700': '#892f1e',
'800': '#602016',
'900': '#3c140d',
},
gold: {
'50': '#fbfaf6',
'100': '#f9f0ca',
'200': '#f2db95',
'300': '#dfb560',
'400': '#c68a37',
'500': '#aa691d',
'600': '#8c4f12',
'700': '#6a3b10',
'800': '#48280d',
'900': '#2f190a',
},
lemon: {
'50': '#fbfaf4',
'100': '#f8f0c3',
'200': '#efde89',
'300': '#d6bb55',
'400': '#b2912e',
'500': '#917217',
'600': '#74580f',
'700': '#59420e',
'800': '#3c2d0c',
'900': '#281b09',
},
green: {
'50': '#f4f7f4',
'100': '#e3f0e8',
'200': '#bee5cb',
'300': '#86c99b',
'400': '#41a76a',
'500': '#2e8b43',
'600': '#267430',
'700': '#215827',
'800': '#183c1f',
'900': '#112517',
},
island: {
'50': '#f1f7f7',
'100': '#d5f0f6',
'200': '#a4e4eb',
'300': '#6cc8d1',
'400': '#31a8b0',
'500': '#238a8e',
'600': '#1f7273',
'700': '#1c565a',
'800': '#143b41',
'900': '#0d242e',
},
},
inset: {
'13': '3.3rem',
}
}
},
variants: {
extend: {
backgroundColor: ["autofill", "active", "disabled"],
textColor: ["autofill", "active", "disabled"],
transitionDuration: ["active"],
cursor: ["disabled"]
}
},
}