-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
59 lines (45 loc) · 1.2 KB
/
Copy paththeme.css
File metadata and controls
59 lines (45 loc) · 1.2 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
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
/* Gold palette - shadcn semantic naming */
--gold: #C9933A;
--gold-light: #E8B86D;
--gold-dark: #A67830;
--gold-dim: #6B5530;
/* Backgrounds */
--background: #0f0f0f;
--foreground: #E8B86D;
--card: #1A1A1A;
--card-foreground: #E8B86D;
--popover: #1A1A1A;
--popover-foreground: #E8B86D;
--muted: #1A1A1A;
--muted-foreground: #A67830;
--accent: #5A4520;
--accent-foreground: #E8B86D;
--destructive: #8B3A3A;
--destructive-foreground: #E8B86D;
/* Borders */
--border: #2A2A2A;
--input: #3A3A3A;
--ring: #C9933A;
/* Semantic */
--success: #4A7C59;
--warning: #C9933A;
--info: #3A6B7C;
/* Radius */
--radius: 4px;
/* Fonts */
--font-display: "Cormorant Garamond", Georgia, serif;
--font-mono: "IBM Plex Mono", ui-monospace, monospace;
}
* {
@apply border-border;
}
body {
@apply bg-background text-foreground font-mono;
}
}