forked from 0xchasercat/chaser-oxide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
39 lines (35 loc) · 820 Bytes
/
Copy pathglobals.css
File metadata and controls
39 lines (35 loc) · 820 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--admin-bg: #0a0a0a;
--admin-surface: #111111;
--admin-surface2: #1a1a1a;
--admin-border: #222222;
--admin-primary: #dc2626;
--admin-text: #f3f4f6;
--admin-muted: #9ca3af;
--admin-faint: #4b5563;
--admin-success: #22c55e;
--admin-warning: #f59e0b;
--admin-error: #ef4444;
}
body {
background: var(--admin-bg);
color: var(--admin-text);
font-family: 'Inter', system-ui, sans-serif;
}
/* Live preview iframe isolation */
.brand-preview-frame {
border: 1px solid var(--admin-border);
border-radius: 12px;
overflow: hidden;
}
/* Token color swatch */
.color-swatch {
width: 32px;
height: 32px;
border-radius: 6px;
border: 1px solid rgba(255,255,255,0.1);
flex-shrink: 0;
}