-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (54 loc) · 1.69 KB
/
tailwind.config.js
File metadata and controls
55 lines (54 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
const { createThemes } = require('tw-colors');
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
plugins: [
createThemes({
paper: {
secondaryColor: "#f8c4cf",
tertiaryColor: "#808080",
backgroundColor: "#FFF9EB",
textColor: "#444444",
nodeTypesColorActive: "#E81899",
progressBarFillColor: "#F8C4CF",
progressBarBackgroundColor: "#E0E7EC",
cardBackgroundColor: "#F4F4F4",
cardTitleColor: "#E81899",
cardSubBodyColor: "#9A989F",
inputAccentColor: "#E0E7EC",
glowColor: "#0000004C",
themeSwitcherColor: "#F4AB9F",
},
light: {
secondaryColor: "#f8c4cf",
tertiaryColor: "#808080",
backgroundColor: "#FFFFFD",
textColor: "#444444",
nodeTypesColorActive: "#E81899",
progressBarFillColor: "#F8C4CF",
progressBarBackgroundColor: "#E0E7EC",
cardBackgroundColor: "#F4F4F4",
cardTitleColor: "#E81899",
cardSubBodyColor: "#9A989F",
inputAccentColor: "#E0E7EC",
glowColor: "#0000004C",
themeSwitcherColor: "#F4AB9F",
},
dark: {
secondaryColor: "#f8c4cf",
tertiaryColor: "#cecece",
backgroundColor: "#1a1b1b",
textColor: "#F4F4F4",
nodeTypesColorActive: "#E81899",
progressBarFillColor: "#E13A8C",
progressBarBackgroundColor: "#707D75",
cardBackgroundColor: "#444444",
cardTitleColor: "#ec4899",
cardSubBodyColor: "#BDC0BA",
inputAccentColor: "#707D75",
glowColor: "#ffffffb3",
themeSwitcherColor: "#F4AB9F",
},
})
],
};