forked from dojonode/taiko-node-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
39 lines (38 loc) · 1.14 KB
/
tailwind.config.cjs
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
import {createThemes} from "tw-colors";
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
plugins: [
createThemes({
paper: {
secondaryColor: "#f8c4cf",
tertiaryColor: "#808080",
backgroundColor: "#FFF9EB",
textColor: "#444444",
nodeTypesColorActive: "#E53325",
progressBarFillColor: "#F4AB9F",
progressBarBackgroundColor: "#E0E7EC",
cardBackgroundColor: "#F4F4F4",
cardTitleColor: "#E53325",
cardSubBodyColor: "#9A989F",
inputAccentColor: "#E0E7EC",
glowColor: "#0000004C",
themeSwitcherColor: "#F4AB9F",
},
dark: {
secondaryColor: "#f8c4cf",
tertiaryColor: "#cecece",
backgroundColor: "#1a1b1b",
textColor: "#F4F4F4",
nodeTypesColorActive: "#E53325",
progressBarFillColor: "#E53325",
progressBarBackgroundColor: "#707D75",
cardBackgroundColor: "#444444",
cardTitleColor: "#E53325",
cardSubBodyColor: "#BDC0BA",
inputAccentColor: "#707D75",
glowColor: "#ffffffb3",
themeSwitcherColor: "#E53325",
},
})
],
};