-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.12 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 = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
borderWidth: {
"1": "1px",
},
colors: {
dteal: "#1abc9c",
ddark_teal: "#11806a",
dgreen: "#2ecc71",
ddark_green: "#1f8b4c",
dblue: "#3498db",
ddark_blue: "#206694",
dpurple: "#9b59b6",
ddark_purple: "#71368a",
dmagenta: "#e91e63",
ddark_magenta: "#ad1457",
dgold: "#f1c40f",
ddark_gold: "#c27c0e",
dorange: "#e67e22",
ddark_orange: "#a84300",
dred: "#e74c3c",
ddark_red: "#992d22",
dlighter_grey: "#95a5a6",
dlighter_gray: "#95a5a6",
ddark_grey: "#607d8b",
ddark_gray: "#607d8b",
dlight_grey: "#979c9f",
dlight_gray: "#979c9f",
ddarker_grey: "#546e7a",
ddarker_gray: "#546e7a",
dog_blurple: "#7289da",
dblurple: "#5865f2",
dgreyple: "#99aab5",
ddark_theme: "#36393f",
dfuchsia: "#eb459e",
dlink: "#0067e0"
}
},
},
plugins: [],
}