-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1.07 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
module.exports = {
purge: [],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
bg: "#f9f8ff",
brand: {
100: "#ffd0ea",
200: "#f9b5da",
300: "#f299c9",
400: "#eb7cb8",
500: "#e35da6",
600: "#d9519b",
700: "#e35da6",
800: "#c53985",
900: "#bb2b7a"
},
dBrand: "#140e63",
dark: "#17181C",
lDark: "#434343",
mGray: "#979797",
sideGray: "#2C2D31",
sideIcon: "#62686e",
danger: "#C84B4B",
lSuccess: "#90E586",
success: "#0CAB2C",
disabled: "#E6E6E6",
background: "#fff",
//darkmode colors
darkbg: "#191b1f",
darkfg: "#202129",
darkgray: "#2c2f36"
},
borderRadius: {
DEFAULT: ".5rem",
},
fontSize: {
'xxs': '.55rem',
}
},
},
variants: {
extend: {
opacity: ["disabled"],
cursor: ["disabled", "hover"],
borderWidth: ["hover"],
},
},
plugins: [],
};