-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.admin.config.js
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathtailwind.admin.config.js
File metadata and controls
42 lines (42 loc) · 1.17 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
module.exports = {
content: ["./internal/httpapi/web/templates/admin.html"],
darkMode: "media",
theme: {
extend: {
colors: {
proofline: {
bg: "#1a0c2e",
"bg-deep": "#10051f",
surface: "#25143f",
"surface-elevated": "#321c55",
"surface-strong": "#44286f",
border: "#5b3b89",
"border-strong": "#7c5bc4",
text: "#f8f4ff",
"text-secondary": "#e5d8ff",
"text-muted": "#c9b8ea",
"text-disabled": "#8e78b3",
primary: "#a78bfa",
"primary-hover": "#c4b5fd",
"primary-active": "#8b5cf6",
"primary-text": "#12071f",
"accent-cyan": "#22d3ee",
"accent-magenta": "#e879f9",
focus: "#c084fc",
success: "#34d399",
"success-bg": "#052e24",
warning: "#fbbf24",
"warning-bg": "#3a2603",
danger: "#fb7185",
"danger-bg": "#3f0b16",
info: "#38bdf8",
"info-bg": "#082f49",
},
},
boxShadow: {
panel: "0 18px 45px rgb(16 5 31 / 0.24)",
soft: "0 10px 30px rgb(16 5 31 / 0.18)",
},
},
},
};