-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 947 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (34 loc) · 947 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
// Read config dir
let korpConfigDir = "app"
try {
korpConfigDir = require("./run_config.json").configDir
} catch {}
module.exports = {
content: ["./app/**/*.{js,ts,html}", korpConfigDir + "/**/*.{js,ts,html,yml}"],
theme: {
extend: {
animation: {
"spin-slow": "spin 2s linear infinite",
},
colors: {
gray: {
100: "#f5f5f5",
200: "#eeeeee",
300: "#e0e0e0",
400: "#bdbdbd",
500: "#9e9e9e",
600: "#757575",
700: "#616161",
800: "#424242",
900: "#212121",
},
orange: {
900: "#f2581a",
},
blue: {
100: "rgb(221, 233, 255)",
},
},
},
},
}