-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (38 loc) · 1.05 KB
/
tailwind.config.js
File metadata and controls
46 lines (38 loc) · 1.05 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
module.exports = {
theme: {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
extend: {
colors: {
primary: "#00A176",
active: "#004D39",
natural: "#F1F1F1",
buttonPrimary: "#00A176",
buttonDisabled: "#DFDFDF",
text: "#282828",
textDescription: "#797979",
textWarning: "#FF7657",
textLight: "#CBCBCB",
textProfile: "#474747",
placeholderPrimary: "#fff",
background: "#FFFFFF",
border: "#CBCBCB",
borderInput: "#6b7280",
borderSelect: "#e5e7eb",
borderBottom: "#f3f4f6",
borderCheckbox: "#d1d5db",
borderFooter: "#E8E9EB",
borderFeed: "#E8E9EB",
footerBackground: "#FCFCFC",
chipBorder: "#A6CFC4",
chipActive: "#F6FFFD",
toastBackground: "#A4A4A4",
modalBorderBottom: "#F6F6F6",
iconBorder: "#797977",
headerBottom: "#E8E9EB",
selectActive: "#f0fdf4",
mainBackground: "#F6F6F6",
},
},
},
plugins: [],
};