-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (56 loc) · 1.18 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
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
// darkMode: "media",
theme: {
extend: {
spacing: {
1: "4px",
2: "8px",
3: "12px",
4: "16px",
5: "24px",
6: "28px",
7: "36px",
8: "40px",
},
colors: {
transparent: "transparent",
black: "#000",
white: "#fff",
progressiveRed: "#f50537",
signalRedLight: "#eb0d3f",
signalRedDark: "#fd2c4e",
signalGreenLight: "#0da20d",
signalGreenDark: "#0da20d",
signalYellowLight: "#ffaa00",
signalYellowDark: "#ffaa00",
grey: {
100: "#000000",
90: "#1a1a1a",
80: "#333333",
70: "#4c4c4c",
60: "#666666",
50: "#808080",
40: "#999999",
30: "#b3b3b3",
20: "#cccccc",
15: "#d9d9d9",
10: "#e5e5e5",
5: "f2f2f2",
0: "#ffffff",
},
},
borderRadius: {
none: "0",
sm: ".0",
DEFAULT: "0",
lg: "0",
full: "0",
},
container: {
center: true,
},
},
plugins: [],
},
};