-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (74 loc) · 1.91 KB
/
Copy pathtailwind.config.js
File metadata and controls
74 lines (74 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
bg: {
base: "#06090c",
panel: "#080d10",
panelDeep: "#070b0e",
deep: "#05080b",
grad1: "#0d161d",
grad2: "#080f14",
},
ac: "#3df0ff", // default accent — overridden at runtime via --ac
ink: {
base: "#bcccd0",
bright: "#eaf6f8",
light: "#dceef1",
dim: "#8aa0a6",
mid: "#9fb0b5",
dimmer: "#5a6e72",
darkest: "#46585e",
deepest: "#3a4a50",
},
sig: {
warn: "#ffb000",
danger: "#ff5a3c",
ok: "#7fd49a",
okDark: "#3a8f4e",
add: "#7fd49a",
delete: "#d98a7d",
violet: "#c08bff",
},
},
fontFamily: {
chrome: ["Saira", "system-ui", "sans-serif"],
mono: ["JetBrains Mono", "ui-monospace", "monospace"],
},
keyframes: {
scan: {
"0%": { transform: "translateY(0)" },
"100%": { transform: "translateY(6px)" },
},
sweep: {
"0%": { top: "-34%" },
"100%": { top: "130%" },
},
flick: {
"0%,95%,100%": { opacity: "1" },
"96%": { opacity: ".86" },
"98%": { opacity: ".98" },
"99%": { opacity: ".9" },
},
blink: {
"0%,49%": { opacity: "1" },
"50%,100%": { opacity: "0" },
},
pulse: {
"0%,100%": { opacity: ".5" },
"50%": { opacity: "1" },
},
},
animation: {
scan: "scan 1.1s steps(3) infinite",
sweep: "sweep 7s linear infinite",
flick: "flick 8s infinite",
blink: "blink 1s steps(1) infinite",
pulse: "pulse 2s infinite",
},
},
},
plugins: [],
};