-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal.css
More file actions
91 lines (77 loc) · 2.54 KB
/
global.css
File metadata and controls
91 lines (77 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
/* Base text & background */
--background: 249 250 251;
--color-secondary: 229 231 235; /* surface */
--color-tertiary: 209 213 219; /* border or muted bg */
--color-disabled: 156 163 175; /* text disabled */
/* Text colors */
--color-text-primary: 22 22 22;
--color-text-secondary: 75 85 99;
--color-text-tertiary: 107 114 128;
/* Brand colors */
--color-brand-primary: 5 146 136;
--color-brand-secondary: 3 114 106;
--color-brand-disabled: 10 101 97;
--color-brand-light: 230 247 246;
/* Buttons */
--color-button-primary: 5 146 136;
--color-button-primary-text: 249 249 249;
--color-button-primary-disabled: 10 101 97;
--color-button-primary-disabled-text: 156 163 175;
--color-button-secondary: 229 231 235;
--color-button-secondary-text: 22 22 22;
/* Overlays */
--color-overlay-dark: 0 0 0 / 0.4;
--color-overlay-light: 255 255 255 / 0.6;
--color-overlay-card: 37 39 44 / 0.08;
/* Borders */
--color-border-primary: 209 213 219;
--color-border-secondary: 229 231 235;
/* System colors */
--color-system-white: 255 255 255;
--color-system-black: 0 0 0;
--color-system-success: 52 199 89;
--color-system-warning: 235 171 22;
--color-system-error: 255 59 48;
--color-system-info: 90 200 250;
}
.dark:root {
/* Base */
--background: 22 22 22;
--color-secondary: 37 39 44; /* surface */
--color-tertiary: 73 79 91; /* muted surface */
--color-disabled: 0 51 51; /* text disabled */
/* Text colors */
--color-text-primary: 249 249 249;
--color-text-secondary: 106 114 130;
--color-text-tertiary: 237 238 241;
/* Brand (same as light for consistency) */
--color-brand-primary: 5 146 136;
--color-brand-secondary: 3 114 106;
--color-brand-disabled: 10 101 97;
--color-brand-light: 230 247 246;
/* Buttons */
--color-button-primary: 5 146 136;
--color-button-primary-text: 249 249 249;
--color-button-primary-disabled: 10 101 97;
--color-button-primary-disabled-text: 0 51 51;
--color-button-secondary: 37 39 44;
--color-button-secondary-text: 237 238 241;
/* Overlays */
--color-overlay-dark: 0 0 0 / 0.5;
--color-overlay-light: 255 255 255 / 0.1;
--color-overlay-card: 37 39 44 / 0.6;
/* Borders */
--color-border-primary: 56 56 58;
--color-border-secondary: 72 72 74;
/* System */
--color-system-white: 255 255 255;
--color-system-black: 0 0 0;
--color-system-success: 52 199 89;
--color-system-warning: 235 171 22;
--color-system-error: 255 59 48;
--color-system-info: 90 200 250;
}