forked from deepjyoti30/ytmdl-web-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.js
More file actions
35 lines (35 loc) · 692 Bytes
/
Copy pathtailwind.js
File metadata and controls
35 lines (35 loc) · 692 Bytes
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
module.exports = {
purge: ["./src/**/*.vue", "./src/scss/**/*.scss"],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
darkblue: {
DEFAULT: "#293241"
},
cyan: {
light: "#E0FBFC",
DEFAULT: "#E0FBFC"
},
darkgreen: {
DEFAULT: "#1EB980",
500: "#ddf9ef",
400: "#b1f2da",
300: "#85ebc6",
200: "#59e4b1",
100: "#2ddd9c",
50: "#22cf8f"
},
darkhigh: {
DEFAULT: "#121212"
},
darklow: {
DEFAULT: "#1A1A1A"
}
}
}
},
variants: {
extend: {}
}
};