-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathtailwind.config.js
89 lines (89 loc) · 1.78 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.tsx"],
theme: {
colors: {
blue: {
1: "#1487d0",
2: "#d0ecfd",
3: "#d4deea",
4: "#5a9dc1",
5: "rgb(140, 166, 195)",
6: "#002ebd",
7: "#1678c2",
},
// previously called "black"
dark: {
1: "#111111",
2: "#333",
3: "#2d3137",
},
grey: {
1: "#e7edf3",
2: "#7089a9",
4: "#aaa",
5: "#f5f8fd",
6: "#f7f5f5",
7: "#dfe1e4",
333: "#333",
444: "#444",
main: "#4e4e4e",
666: "#666",
888: "#888",
999: "#999",
bbb: "#bbb",
ccc: "#ccc",
eee: "#eee",
a1: "rgb(231, 234, 236)",
},
green: {
1: "#25b530",
2: "#1eb128",
3: "#084e14",
4: "#c9e8c0",
5: "#16ab39",
6: "#2c662d",
7: "#fcfff5",
8: "#a3c293",
},
purple: {
1: "#7970a9",
2: "#6c5a8c",
3: "#ede4f9",
},
red: {
1: "#e0b4b4",
2: "#fff6f6",
3: "#5f0909",
4: "#a74b4b",
5: "#db2828",
6: "#e48585",
7: "#eccac7",
8: "#d48a8a",
},
white: "white",
black: "black",
transparent: "transparent",
},
extend: {
borderRadius: {
xs: "1px",
},
fontFamily: {
lato: '"Lato", "Helvetica Neue", Arial, Helvetica, sans-serif',
open: "Open Sans,Helvetica,Arial,sans-serif",
mono: '"Courier New", Courier, monospace',
},
maxWidth: {
1200: "1200px",
},
fontSize: {
"2xs": "11px",
},
opacity: {
95: ".95",
},
},
},
plugins: [],
};