-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokens.css
More file actions
142 lines (125 loc) · 3.41 KB
/
Copy pathtokens.css
File metadata and controls
142 lines (125 loc) · 3.41 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* AUTO-GENERATED FROM shell/src/ui/styles/theme.ts */
/* Design tokens — declared values for the shell (Settings window). */
:root {
/* ---- Font stacks ---- */
--font-display: "Fraunces", Georgia, "Times New Roman", serif;
--font-body: "Commissioner", "Segoe UI", Helvetica, Arial, sans-serif;
--font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
/* ---- Type ramp ---- */
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-md: 1.125rem;
--text-lg: 1.25rem;
--text-xl: 1.5rem;
--text-2xl: 2rem;
--text-3xl: 2.5rem;
--text-4xl: 3rem;
--weight-base: 400;
--weight-md: 500;
--weight-lg: 600;
--weight-xl: 600;
--weight-2xl: 700;
--leading-base: 1.6;
--leading-lg: 1.4;
--leading-xl: 1.3;
--leading-2xl: 1.2;
--tracking-xl: -0.01em;
--tracking-2xl: -0.015em;
--tracking-caps: 0.02em;
/* ---- Spacing ---- */
--space-1: 4px;
--space-2: 8px;
--space-3: 12px;
--space-4: 16px;
--space-5: 24px;
--space-6: 32px;
--space-7: 48px;
--space-8: 64px;
/* ---- Radii ---- */
--radius-input: 6px;
--radius-card: 8px;
--radius-chip: 4px;
--radius-pill: 9999px;
/* ---- Border widths ---- */
--border-width-hairline: 1px;
--border-width-thin: 1px;
--border-width-thick: 2px;
--border-width-heavy: 4px;
/* ---- Sizing ---- */
--size-xs: 12px;
--size-sm: 16px;
--size-md: 20px;
--size-lg: 24px;
--size-xl: 32px;
--size-2xl: 40px;
/* ---- Elevation ---- */
--elevation-card: 0 1px 2px rgb(0 0 0 / 0.06);
--elevation-modal: 0 8px 24px rgb(0 0 0 / 0.18);
--elevation-tooltip: 0 2px 6px rgb(0 0 0 / 0.1);
/* ---- Opacity ---- */
--opacity-disabled: 0.5;
/* ---- Motion ---- */
--duration-fast: 120ms;
--duration-base: 150ms;
--easing-standard: ease-out;
/* ---- Colors ---- */
--brand: #c8334a;
--brand-fg: #ffffff;
--accent: #5198a6;
--accent-fg: #ffffff;
--accent-hover: #63a9b6;
--accent-destructive: #b32d3f;
--accent-destructive-foreground: #ffffff;
/* ---- Semantic status ---- */
--status-error: #ef4444;
--status-error-fg: #fca5a5;
--status-success: #22c55e;
--status-success-fg: #4ade80;
--status-warning: #eab308;
--status-warning-fg: #facc15;
--status-info: #38bdf8;
--status-info-fg: #7dd3fc;
/* ---- Data viz (Usage charts) ---- */
--viz-input: #3f9aa8;
--viz-output: #7b6fd0;
--viz-cache: #8a8f98;
--viz-cache-read: #c68a3c;
--viz-cache-creation: #c56b86;
/* ---- Link colors (defaults to dark theme) ---- */
--link: #7fc1d2;
--link-hover: #a8d8e3;
/* ---- Focus ring ---- */
--focus-ring-width: 2px;
--focus-ring-offset: 2px;
--focus-ring-color: var(--accent);
--focus-ring: var(--focus-ring-width) solid var(--focus-ring-color);
/* ---- Layout constants ---- */
--sidebar-width: 200px;
--content-max: 640px;
--content-max-wide: 1040px;
}
[data-theme="dark"] {
--surface-base: #0a0a0a;
--surface-card: #161616;
--surface-control: #1f1f1f;
--text-strong: #f5f5f5;
--text-base-color: #d4d4d4;
--text-muted: #8a8a8a;
--border-subtle: #2a2a2a;
--border-strong: #666666;
--link: #7fc1d2;
--link-hover: #a8d8e3;
}
[data-theme="light"] {
--surface-base: #fafafa;
--surface-card: #ffffff;
--surface-control: #f0f0f0;
--text-strong: #0a0a0a;
--text-base-color: #2a2a2a;
--text-muted: #6a6a6a;
--border-subtle: #e5e5e5;
--border-strong: #8a8a8a;
--link: #2d6470;
--link-hover: #1e5560;
}