@weasel-js/theme 0.7.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +18 -0
- package/README.md +33 -6
- package/dist/fonts.css +19 -0
- package/dist/index.d.ts +211 -44
- package/dist/index.js +236 -89
- package/dist/index.js.map +1 -1
- package/dist/tokens.css +86 -172
- package/fonts/OFL-Inter.txt +92 -0
- package/fonts/OFL-Oswald.txt +93 -0
- package/fonts/README.md +70 -0
- package/fonts/inter-latin.woff2 +0 -0
- package/fonts/oswald-latin-variable.woff2 +0 -0
- package/package.json +14 -6
package/dist/index.js
CHANGED
|
@@ -1,93 +1,240 @@
|
|
|
1
|
-
// src/
|
|
2
|
-
var
|
|
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
|
-
|
|
1
|
+
// src/generated/themes.ts
|
|
2
|
+
var THEMES = {
|
|
3
|
+
"weasel": {
|
|
4
|
+
name: "weasel",
|
|
5
|
+
defaultMode: "dark",
|
|
6
|
+
modes: {
|
|
7
|
+
"dark": {
|
|
8
|
+
"--wzl-gray-50": "#f5f5f6",
|
|
9
|
+
"--wzl-gray-100": "#e6e7e9",
|
|
10
|
+
"--wzl-gray-200": "#c9cbcf",
|
|
11
|
+
"--wzl-gray-300": "#9ea1a8",
|
|
12
|
+
"--wzl-gray-400": "#6f737b",
|
|
13
|
+
"--wzl-gray-500": "#4d5058",
|
|
14
|
+
"--wzl-gray-600": "#383b42",
|
|
15
|
+
"--wzl-gray-700": "#25272c",
|
|
16
|
+
"--wzl-gray-800": "#181a1e",
|
|
17
|
+
"--wzl-gray-900": "#0e0f12",
|
|
18
|
+
"--wzl-accent-soft": "#1d1454",
|
|
19
|
+
"--wzl-accent-base": "#2e1f7a",
|
|
20
|
+
"--wzl-accent-strong": "#5841b8",
|
|
21
|
+
"--wzl-danger-base": "#d94a3f",
|
|
22
|
+
"--wzl-warning-base": "#d99a3f",
|
|
23
|
+
"--wzl-success-base": "#2ec27e",
|
|
24
|
+
"--wzl-fg-on-accent": "#f5f5f6",
|
|
25
|
+
"--wzl-fg": "#e6e7e9",
|
|
26
|
+
"--wzl-line-subtle": "rgba(230, 231, 233, 0.1)",
|
|
27
|
+
"--wzl-line": "rgba(230, 231, 233, 0.2)",
|
|
28
|
+
"--wzl-line-strong": "rgba(230, 231, 233, 0.4)",
|
|
29
|
+
"--wzl-curve-color": "#5841b8",
|
|
30
|
+
"--wzl-accent": "#2e1f7a",
|
|
31
|
+
"--wzl-accent-hover": "#5841b8",
|
|
32
|
+
"--wzl-danger": "#d94a3f",
|
|
33
|
+
"--wzl-warning": "#d99a3f",
|
|
34
|
+
"--wzl-success": "#2ec27e",
|
|
35
|
+
"--wzl-focus-ring": "#5841b8",
|
|
36
|
+
"--wzl-glass-tint": "#2e1f7a",
|
|
37
|
+
"--wzl-text": "#e6e7e9",
|
|
38
|
+
"--wzl-fg-muted": "#9ea1a8",
|
|
39
|
+
"--wzl-text-muted": "#9ea1a8",
|
|
40
|
+
"--wzl-surface": "#181a1e",
|
|
41
|
+
"--wzl-bg": "#181a1e",
|
|
42
|
+
"--wzl-muted": "#9ea1a8",
|
|
43
|
+
"--wzl-panel-bg": "#181a1e",
|
|
44
|
+
"--wzl-border": "#25272c",
|
|
45
|
+
"--wzl-panel-border": "#25272c",
|
|
46
|
+
"--wzl-surface-sunken": "#0e0f12",
|
|
47
|
+
"--wzl-input-bg": "#0e0f12",
|
|
48
|
+
"--wzl-track-bg": "#0e0f12",
|
|
49
|
+
"--wzl-track-border": "#25272c",
|
|
50
|
+
"--wzl-thumb-fill": "#9ea1a8",
|
|
51
|
+
"--wzl-border-strong": "#383b42",
|
|
52
|
+
"--wzl-thumb-border": "#383b42",
|
|
53
|
+
"--wzl-surface-raised": "#25272c",
|
|
54
|
+
"--wzl-button-fill": "#25272c",
|
|
55
|
+
"--wzl-button-fill-hover": "rgba(230, 231, 233, 0.1)",
|
|
56
|
+
"--wzl-button-fill-pressed": "rgba(230, 231, 233, 0.18)",
|
|
57
|
+
"--wzl-button-text": "#e6e7e9",
|
|
58
|
+
"--wzl-radius-sm": "3px",
|
|
59
|
+
"--wzl-radius-md": "5px",
|
|
60
|
+
"--wzl-border-w": "1px",
|
|
61
|
+
"--wzl-line-width": "2px",
|
|
62
|
+
"--wzl-curve-width": "3px",
|
|
63
|
+
"--wzl-tb-height": "28px",
|
|
64
|
+
"--wzl-motion-fast": "120ms",
|
|
65
|
+
"--wzl-motion-medium": "240ms",
|
|
66
|
+
"--wzl-ease-in-cubic": "cubic-bezier(0.32, 0, 0.67, 0)",
|
|
67
|
+
"--wzl-ease-out-cubic": "cubic-bezier(0.33, 1, 0.68, 1)",
|
|
68
|
+
"--wzl-ease-in-out-cubic": "cubic-bezier(0.65, 0, 0.35, 1)",
|
|
69
|
+
"--wzl-ease-out-back": "cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
70
|
+
"--wzl-font-ui": "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif",
|
|
71
|
+
"--wzl-font-display": "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif",
|
|
72
|
+
"--wzl-font-body": "Inter, system-ui, -apple-system, 'Segoe UI', sans-serif",
|
|
73
|
+
"--wzl-font-mono": "ui-monospace, SFMono-Regular, Menlo, Consolas, monospace",
|
|
74
|
+
"--wzl-font-weight-light": "200",
|
|
75
|
+
"--wzl-font-weight-normal": "300",
|
|
76
|
+
"--wzl-font-weight-bold": "400",
|
|
77
|
+
"--wzl-fg-subtle": "#6f737b",
|
|
78
|
+
"--wzl-accent-fg": "#5841b8",
|
|
79
|
+
"--wzl-thumb-text": "#0e0f12"
|
|
80
|
+
},
|
|
81
|
+
"light": {
|
|
82
|
+
"--wzl-gray-50": "#f5f5f6",
|
|
83
|
+
"--wzl-gray-100": "#e6e7e9",
|
|
84
|
+
"--wzl-gray-200": "#c9cbcf",
|
|
85
|
+
"--wzl-gray-300": "#9ea1a8",
|
|
86
|
+
"--wzl-gray-400": "#6f737b",
|
|
87
|
+
"--wzl-gray-500": "#4d5058",
|
|
88
|
+
"--wzl-gray-600": "#383b42",
|
|
89
|
+
"--wzl-gray-700": "#25272c",
|
|
90
|
+
"--wzl-gray-800": "#181a1e",
|
|
91
|
+
"--wzl-gray-900": "#0e0f12",
|
|
92
|
+
"--wzl-accent-soft": "#1d1454",
|
|
93
|
+
"--wzl-accent-base": "#2e1f7a",
|
|
94
|
+
"--wzl-accent-strong": "#5841b8",
|
|
95
|
+
"--wzl-danger-base": "#d94a3f",
|
|
96
|
+
"--wzl-warning-base": "#d99a3f",
|
|
97
|
+
"--wzl-success-base": "#2ec27e",
|
|
98
|
+
"--wzl-fg-on-accent": "#f5f5f6",
|
|
99
|
+
"--wzl-fg": "#0e0f12",
|
|
100
|
+
"--wzl-line-subtle": "rgba(14, 15, 18, 0.1)",
|
|
101
|
+
"--wzl-line": "rgba(14, 15, 18, 0.2)",
|
|
102
|
+
"--wzl-line-strong": "rgba(14, 15, 18, 0.4)",
|
|
103
|
+
"--wzl-curve-color": "#5841b8",
|
|
104
|
+
"--wzl-accent": "#2e1f7a",
|
|
105
|
+
"--wzl-accent-hover": "#5841b8",
|
|
106
|
+
"--wzl-danger": "#d94a3f",
|
|
107
|
+
"--wzl-warning": "#d99a3f",
|
|
108
|
+
"--wzl-success": "#2ec27e",
|
|
109
|
+
"--wzl-focus-ring": "#5841b8",
|
|
110
|
+
"--wzl-glass-tint": "#2e1f7a",
|
|
111
|
+
"--wzl-text": "#0e0f12",
|
|
112
|
+
"--wzl-fg-muted": "#383b42",
|
|
113
|
+
"--wzl-text-muted": "#383b42",
|
|
114
|
+
"--wzl-surface": "#f5f5f6",
|
|
115
|
+
"--wzl-bg": "#f5f5f6",
|
|
116
|
+
"--wzl-muted": "#383b42",
|
|
117
|
+
"--wzl-panel-bg": "#f5f5f6",
|
|
118
|
+
"--wzl-border": "#c9cbcf",
|
|
119
|
+
"--wzl-panel-border": "#c9cbcf",
|
|
120
|
+
"--wzl-surface-sunken": "#c9cbcf",
|
|
121
|
+
"--wzl-input-bg": "#c9cbcf",
|
|
122
|
+
"--wzl-track-bg": "#c9cbcf",
|
|
123
|
+
"--wzl-track-border": "#c9cbcf",
|
|
124
|
+
"--wzl-thumb-fill": "#383b42",
|
|
125
|
+
"--wzl-border-strong": "#9ea1a8",
|
|
126
|
+
"--wzl-thumb-border": "#9ea1a8",
|
|
127
|
+
"--wzl-surface-raised": "#e6e7e9",
|
|
128
|
+
"--wzl-button-fill": "#e6e7e9",
|
|
129
|
+
"--wzl-button-fill-hover": "rgba(14, 15, 18, 0.1)",
|
|
130
|
+
"--wzl-button-fill-pressed": "rgba(14, 15, 18, 0.18)",
|
|
131
|
+
"--wzl-button-text": "#0e0f12",
|
|
132
|
+
"--wzl-radius-sm": "3px",
|
|
133
|
+
"--wzl-radius-md": "5px",
|
|
134
|
+
"--wzl-border-w": "1px",
|
|
135
|
+
"--wzl-line-width": "2px",
|
|
136
|
+
"--wzl-curve-width": "3px",
|
|
137
|
+
"--wzl-tb-height": "28px",
|
|
138
|
+
"--wzl-motion-fast": "120ms",
|
|
139
|
+
"--wzl-motion-medium": "240ms",
|
|
140
|
+
"--wzl-ease-in-cubic": "cubic-bezier(0.32, 0, 0.67, 0)",
|
|
141
|
+
"--wzl-ease-out-cubic": "cubic-bezier(0.33, 1, 0.68, 1)",
|
|
142
|
+
"--wzl-ease-in-out-cubic": "cubic-bezier(0.65, 0, 0.35, 1)",
|
|
143
|
+
"--wzl-ease-out-back": "cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
144
|
+
"--wzl-font-ui": "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif",
|
|
145
|
+
"--wzl-font-display": "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif",
|
|
146
|
+
"--wzl-font-body": "Inter, system-ui, -apple-system, 'Segoe UI', sans-serif",
|
|
147
|
+
"--wzl-font-mono": "ui-monospace, SFMono-Regular, Menlo, Consolas, monospace",
|
|
148
|
+
"--wzl-font-weight-light": "200",
|
|
149
|
+
"--wzl-font-weight-normal": "300",
|
|
150
|
+
"--wzl-font-weight-bold": "400",
|
|
151
|
+
"--wzl-fg-subtle": "#4d5058",
|
|
152
|
+
"--wzl-accent-fg": "#2e1f7a",
|
|
153
|
+
"--wzl-thumb-text": "#f5f5f6"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
89
157
|
};
|
|
90
158
|
|
|
91
|
-
|
|
159
|
+
// src/generated/manifest.ts
|
|
160
|
+
var TOKEN_MANIFEST = [
|
|
161
|
+
{ name: "--wzl-gray-50", type: "color", group: "gray", defaultValue: "#f5f5f6", description: "" },
|
|
162
|
+
{ name: "--wzl-gray-100", type: "color", group: "gray", defaultValue: "#e6e7e9", description: "" },
|
|
163
|
+
{ name: "--wzl-gray-200", type: "color", group: "gray", defaultValue: "#c9cbcf", description: "" },
|
|
164
|
+
{ name: "--wzl-gray-300", type: "color", group: "gray", defaultValue: "#9ea1a8", description: "" },
|
|
165
|
+
{ name: "--wzl-gray-400", type: "color", group: "gray", defaultValue: "#6f737b", description: "" },
|
|
166
|
+
{ name: "--wzl-gray-500", type: "color", group: "gray", defaultValue: "#4d5058", description: "" },
|
|
167
|
+
{ name: "--wzl-gray-600", type: "color", group: "gray", defaultValue: "#383b42", description: "" },
|
|
168
|
+
{ name: "--wzl-gray-700", type: "color", group: "gray", defaultValue: "#25272c", description: "" },
|
|
169
|
+
{ name: "--wzl-gray-800", type: "color", group: "gray", defaultValue: "#181a1e", description: "" },
|
|
170
|
+
{ name: "--wzl-gray-900", type: "color", group: "gray", defaultValue: "#0e0f12", description: "" },
|
|
171
|
+
{ name: "--wzl-accent-soft", type: "color", group: "accent", defaultValue: "#1d1454", description: "" },
|
|
172
|
+
{ name: "--wzl-accent-base", type: "color", group: "accent", defaultValue: "#2e1f7a", description: "Midnight blue-violet. Deep and saturated; anchors primary actions on light and dark surfaces alike." },
|
|
173
|
+
{ name: "--wzl-accent-strong", type: "color", group: "accent", defaultValue: "#5841b8", description: "" },
|
|
174
|
+
{ name: "--wzl-danger-base", type: "color", group: "danger", defaultValue: "#d94a3f", description: "" },
|
|
175
|
+
{ name: "--wzl-warning-base", type: "color", group: "warning", defaultValue: "#d99a3f", description: "" },
|
|
176
|
+
{ name: "--wzl-success-base", type: "color", group: "success", defaultValue: "#2ec27e", description: "" },
|
|
177
|
+
{ name: "--wzl-fg-on-accent", type: "color", group: "fg", defaultValue: "#f5f5f6", description: "" },
|
|
178
|
+
{ name: "--wzl-line-subtle", type: "color", group: "line", defaultValue: "rgba(230, 231, 233, 0.1)", description: "Barely-there separators (table rows)." },
|
|
179
|
+
{ name: "--wzl-line", type: "color", group: "line", defaultValue: "rgba(230, 231, 233, 0.2)", description: "Primary gridlines on sunken surfaces." },
|
|
180
|
+
{ name: "--wzl-line-strong", type: "color", group: "line", defaultValue: "rgba(230, 231, 233, 0.4)", description: "Axes and emphasized dividers." },
|
|
181
|
+
{ name: "--wzl-curve-color", type: "color", group: "curve", defaultValue: "#5841b8", description: "Drawn data curves. Routes through the bright accent because accent-base is too dim on sunken surfaces." },
|
|
182
|
+
{ name: "--wzl-accent", type: "color", group: "accent", defaultValue: "#2e1f7a", description: "" },
|
|
183
|
+
{ name: "--wzl-accent-hover", type: "color", group: "accent", defaultValue: "#5841b8", description: "" },
|
|
184
|
+
{ name: "--wzl-danger", type: "color", group: "danger", defaultValue: "#d94a3f", description: "" },
|
|
185
|
+
{ name: "--wzl-warning", type: "color", group: "warning", defaultValue: "#d99a3f", description: "" },
|
|
186
|
+
{ name: "--wzl-success", type: "color", group: "success", defaultValue: "#2ec27e", description: "" },
|
|
187
|
+
{ name: "--wzl-focus-ring", type: "color", group: "focus", defaultValue: "#5841b8", description: "" },
|
|
188
|
+
{ name: "--wzl-glass-tint", type: "color", group: "glass", defaultValue: "#2e1f7a", description: "Frosted-glass tint. Components compose it as color-mix(in srgb, var(--wzl-glass-tint) 78%, transparent) with backdrop-filter: blur(3px)." },
|
|
189
|
+
{ name: "--wzl-text", type: "color", group: "text", defaultValue: "#e6e7e9", description: "" },
|
|
190
|
+
{ name: "--wzl-text-muted", type: "color", group: "text", defaultValue: "#9ea1a8", description: "" },
|
|
191
|
+
{ name: "--wzl-bg", type: "color", group: "bg", defaultValue: "#181a1e", description: "" },
|
|
192
|
+
{ name: "--wzl-muted", type: "color", group: "muted", defaultValue: "#9ea1a8", description: "" },
|
|
193
|
+
{ name: "--wzl-panel-bg", type: "color", group: "panel", defaultValue: "#181a1e", description: "" },
|
|
194
|
+
{ name: "--wzl-panel-border", type: "color", group: "panel", defaultValue: "#25272c", description: "" },
|
|
195
|
+
{ name: "--wzl-input-bg", type: "color", group: "input", defaultValue: "#0e0f12", description: "" },
|
|
196
|
+
{ name: "--wzl-track-bg", type: "color", group: "track", defaultValue: "#0e0f12", description: "" },
|
|
197
|
+
{ name: "--wzl-track-border", type: "color", group: "track", defaultValue: "#25272c", description: "" },
|
|
198
|
+
{ name: "--wzl-thumb-fill", type: "color", group: "thumb", defaultValue: "#9ea1a8", description: "" },
|
|
199
|
+
{ name: "--wzl-thumb-border", type: "color", group: "thumb", defaultValue: "#383b42", description: "" },
|
|
200
|
+
{ name: "--wzl-button-fill", type: "color", group: "button", defaultValue: "#25272c", description: "" },
|
|
201
|
+
{ name: "--wzl-button-fill-hover", type: "color", group: "button", defaultValue: "rgba(230, 231, 233, 0.1)", description: "" },
|
|
202
|
+
{ name: "--wzl-button-fill-pressed", type: "color", group: "button", defaultValue: "rgba(230, 231, 233, 0.18)", description: "" },
|
|
203
|
+
{ name: "--wzl-button-text", type: "color", group: "button", defaultValue: "#e6e7e9", description: "" },
|
|
204
|
+
{ name: "--wzl-radius-sm", type: "dimension", group: "radius", defaultValue: "3px", description: "" },
|
|
205
|
+
{ name: "--wzl-radius-md", type: "dimension", group: "radius", defaultValue: "5px", description: "" },
|
|
206
|
+
{ name: "--wzl-border-w", type: "dimension", group: "border", defaultValue: "1px", description: "" },
|
|
207
|
+
{ name: "--wzl-line-width", type: "dimension", group: "line", defaultValue: "2px", description: "Structural lines \u2014 gridlines, dividers, axes." },
|
|
208
|
+
{ name: "--wzl-curve-width", type: "dimension", group: "curve", defaultValue: "3px", description: "Drawn data curves. Heavier than structural lines so data reads as primary content." },
|
|
209
|
+
{ name: "--wzl-tb-height", type: "dimension", group: "tb", defaultValue: "28px", description: "Height of a horizontal toolbar strip (ActionsBar, OptionsBar, ToggleBar, ToolOptionsBar)." },
|
|
210
|
+
{ name: "--wzl-motion-fast", type: "duration", group: "motion", defaultValue: "120ms", description: "Micro-interactions \u2014 hover, focus, pressed." },
|
|
211
|
+
{ name: "--wzl-motion-medium", type: "duration", group: "motion", defaultValue: "240ms", description: "Entrances and exits \u2014 toasts, popovers, panels." },
|
|
212
|
+
{ name: "--wzl-ease-in-cubic", type: "cubicBezier", group: "ease", defaultValue: "cubic-bezier(0.32, 0, 0.67, 0)", description: "" },
|
|
213
|
+
{ name: "--wzl-ease-out-cubic", type: "cubicBezier", group: "ease", defaultValue: "cubic-bezier(0.33, 1, 0.68, 1)", description: "" },
|
|
214
|
+
{ name: "--wzl-ease-in-out-cubic", type: "cubicBezier", group: "ease", defaultValue: "cubic-bezier(0.65, 0, 0.35, 1)", description: "" },
|
|
215
|
+
{ name: "--wzl-ease-out-back", type: "cubicBezier", group: "ease", defaultValue: "cubic-bezier(0.34, 1.56, 0.64, 1)", description: "" },
|
|
216
|
+
{ name: "--wzl-font-ui", type: "fontFamily", group: "font", defaultValue: "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif", description: "Condensed UI/display face. The heavier cuts get blocky at any size, so the weight tokens stay in the 200-400 range." },
|
|
217
|
+
{ name: "--wzl-font-display", type: "fontFamily", group: "font", defaultValue: "Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif", description: "" },
|
|
218
|
+
{ name: "--wzl-font-body", type: "fontFamily", group: "font", defaultValue: "Inter, system-ui, -apple-system, 'Segoe UI', sans-serif", description: "" },
|
|
219
|
+
{ name: "--wzl-font-mono", type: "fontFamily", group: "font", defaultValue: "ui-monospace, SFMono-Regular, Menlo, Consolas, monospace", description: "" },
|
|
220
|
+
{ name: "--wzl-font-weight-light", type: "fontWeight", group: "font", defaultValue: "200", description: "" },
|
|
221
|
+
{ name: "--wzl-font-weight-normal", type: "fontWeight", group: "font", defaultValue: "300", description: "" },
|
|
222
|
+
{ name: "--wzl-font-weight-bold", type: "fontWeight", group: "font", defaultValue: "400", description: "" },
|
|
223
|
+
{ name: "--wzl-surface", type: "color", group: "surface", defaultValue: "#181a1e", description: "" },
|
|
224
|
+
{ name: "--wzl-surface-raised", type: "color", group: "surface", defaultValue: "#25272c", description: "" },
|
|
225
|
+
{ name: "--wzl-surface-sunken", type: "color", group: "surface", defaultValue: "#0e0f12", description: "" },
|
|
226
|
+
{ name: "--wzl-fg", type: "color", group: "fg", defaultValue: "#e6e7e9", description: "" },
|
|
227
|
+
{ name: "--wzl-fg-muted", type: "color", group: "fg", defaultValue: "#9ea1a8", description: "" },
|
|
228
|
+
{ name: "--wzl-fg-subtle", type: "color", group: "fg", defaultValue: "#6f737b", description: "" },
|
|
229
|
+
{ name: "--wzl-border", type: "color", group: "border", defaultValue: "#25272c", description: "" },
|
|
230
|
+
{ name: "--wzl-border-strong", type: "color", group: "border", defaultValue: "#383b42", description: "" },
|
|
231
|
+
{ name: "--wzl-accent-fg", type: "color", group: "accent", defaultValue: "#5841b8", description: "Accent for foreground use \u2014 text, icons, selected labels drawn on a surface. accent is a fill; the midnight base is too dim to read as text on dark surfaces." },
|
|
232
|
+
{ name: "--wzl-thumb-text", type: "color", group: "thumb", defaultValue: "#0e0f12", description: "" }
|
|
233
|
+
];
|
|
234
|
+
|
|
235
|
+
// src/index.ts
|
|
236
|
+
var DEFAULT_TOKENS = THEMES.weasel.modes[THEMES.weasel.defaultMode];
|
|
237
|
+
|
|
238
|
+
export { DEFAULT_TOKENS, THEMES, TOKEN_MANIFEST };
|
|
92
239
|
//# sourceMappingURL=index.js.map
|
|
93
240
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tokens.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["/**\n * Source of truth for token default values. Mirrors tokens.css exactly,\n * with var(--*) references resolved to their literal target value (TS\n * exports can't reference each other syntactically the way CSS can with\n * var()). The parity test in tokens.test.ts catches drift.\n *\n * color-mix() expressions are resolved to plausible hex approximations\n * — consumers that need exact mixed values should read getComputedStyle\n * from the live DOM rather than relying on these defaults.\n */\nexport const DEFAULT_TOKENS = {\n // Primitive — grays\n '--wzl-gray-50': '#f5f5f6',\n '--wzl-gray-100': '#e6e7e9',\n '--wzl-gray-200': '#c9cbcf',\n '--wzl-gray-300': '#9ea1a8',\n '--wzl-gray-400': '#6f737b',\n '--wzl-gray-500': '#4d5058',\n '--wzl-gray-600': '#383b42',\n '--wzl-gray-700': '#25272c',\n '--wzl-gray-800': '#181a1e',\n '--wzl-gray-900': '#0e0f12',\n\n // Primitive — accent + status\n '--wzl-accent-soft': '#1d1454',\n '--wzl-accent-base': '#2e1f7a',\n '--wzl-accent-strong': '#5841b8',\n '--wzl-danger-base': '#d94a3f',\n '--wzl-warning-base': '#d99a3f',\n '--wzl-success-base': '#2ec27e',\n\n // Geometry\n '--wzl-radius-sm': '3px',\n '--wzl-radius-md': '5px',\n '--wzl-border-w': '1px',\n '--wzl-line-width': '2px',\n '--wzl-curve-width': '3px',\n '--wzl-tb-height': '28px',\n\n // Motion — durations + CSS equivalents of the JS easing library\n '--wzl-motion-fast': '120ms',\n '--wzl-motion-medium': '240ms',\n '--wzl-ease-in-cubic': 'cubic-bezier(0.32, 0, 0.67, 0)',\n '--wzl-ease-out-cubic': 'cubic-bezier(0.33, 1, 0.68, 1)',\n '--wzl-ease-in-out-cubic': 'cubic-bezier(0.65, 0, 0.35, 1)',\n '--wzl-ease-out-back': 'cubic-bezier(0.34, 1.56, 0.64, 1)',\n\n // Structural lines — three opacity levels of fg. color-mix at runtime;\n // hex approximations here resolve against the dark default fg.\n '--wzl-line-subtle': 'rgba(230, 231, 233, 0.10)',\n '--wzl-line': 'rgba(230, 231, 233, 0.20)',\n '--wzl-line-strong': 'rgba(230, 231, 233, 0.40)',\n\n // Curve color — semantic alias for the accent.\n '--wzl-curve-color': '#5841b8',\n\n // Typography\n '--wzl-font-ui': \"'Oswald', 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-display': \"'Oswald', 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-body': \"'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif\",\n '--wzl-font-mono': 'ui-monospace, SFMono-Regular, Menlo, Consolas, monospace',\n '--wzl-font-weight-light': '200',\n '--wzl-font-weight-normal': '300',\n '--wzl-font-weight-bold': '400',\n\n // Semantic — surfaces\n '--wzl-surface': '#181a1e',\n '--wzl-surface-raised': '#25272c',\n '--wzl-surface-sunken': '#0e0f12',\n\n // Semantic — text\n '--wzl-fg': '#e6e7e9',\n '--wzl-fg-muted': '#9ea1a8',\n '--wzl-fg-subtle': '#6f737b',\n '--wzl-fg-on-accent': '#f5f5f6',\n\n // Semantic — borders\n '--wzl-border': '#25272c',\n '--wzl-border-strong': '#383b42',\n\n // Semantic — interactive\n '--wzl-accent': '#2e1f7a',\n '--wzl-accent-fg': '#5841b8',\n '--wzl-accent-hover': '#5841b8',\n '--wzl-danger': '#d94a3f',\n '--wzl-warning': '#d99a3f',\n '--wzl-success': '#2ec27e',\n '--wzl-focus-ring': '#5841b8',\n\n // Semantic — glass\n '--wzl-glass-tint': '#2e1f7a',\n\n // Deprecated aliases (kept for older consumers)\n '--wzl-text': '#e6e7e9',\n '--wzl-text-muted': '#9ea1a8',\n '--wzl-bg': '#181a1e',\n '--wzl-muted': '#9ea1a8',\n '--wzl-panel-bg': '#181a1e',\n '--wzl-panel-border': '#25272c',\n '--wzl-input-bg': '#0e0f12',\n '--wzl-track-bg': '#0e0f12',\n '--wzl-track-border': '#25272c',\n '--wzl-thumb-fill': '#9ea1a8',\n '--wzl-thumb-border': '#383b42',\n '--wzl-thumb-text': '#0e0f12',\n '--wzl-button-fill': '#25272c',\n '--wzl-button-fill-hover': '#2f3138',\n '--wzl-button-fill-pressed': '#363941',\n '--wzl-button-text': '#e6e7e9',\n} as const;\n\nexport type TokenName = keyof typeof DEFAULT_TOKENS;\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/generated/themes.ts","../src/generated/manifest.ts","../src/index.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// GENERATED by packages/theme/scripts/build-tokens.ts — do not edit.\n\nexport type TokenName =\n | '--wzl-accent'\n | '--wzl-accent-base'\n | '--wzl-accent-fg'\n | '--wzl-accent-hover'\n | '--wzl-accent-soft'\n | '--wzl-accent-strong'\n | '--wzl-bg'\n | '--wzl-border'\n | '--wzl-border-strong'\n | '--wzl-border-w'\n | '--wzl-button-fill'\n | '--wzl-button-fill-hover'\n | '--wzl-button-fill-pressed'\n | '--wzl-button-text'\n | '--wzl-curve-color'\n | '--wzl-curve-width'\n | '--wzl-danger'\n | '--wzl-danger-base'\n | '--wzl-ease-in-cubic'\n | '--wzl-ease-in-out-cubic'\n | '--wzl-ease-out-back'\n | '--wzl-ease-out-cubic'\n | '--wzl-fg'\n | '--wzl-fg-muted'\n | '--wzl-fg-on-accent'\n | '--wzl-fg-subtle'\n | '--wzl-focus-ring'\n | '--wzl-font-body'\n | '--wzl-font-display'\n | '--wzl-font-mono'\n | '--wzl-font-ui'\n | '--wzl-font-weight-bold'\n | '--wzl-font-weight-light'\n | '--wzl-font-weight-normal'\n | '--wzl-glass-tint'\n | '--wzl-gray-100'\n | '--wzl-gray-200'\n | '--wzl-gray-300'\n | '--wzl-gray-400'\n | '--wzl-gray-50'\n | '--wzl-gray-500'\n | '--wzl-gray-600'\n | '--wzl-gray-700'\n | '--wzl-gray-800'\n | '--wzl-gray-900'\n | '--wzl-input-bg'\n | '--wzl-line'\n | '--wzl-line-strong'\n | '--wzl-line-subtle'\n | '--wzl-line-width'\n | '--wzl-motion-fast'\n | '--wzl-motion-medium'\n | '--wzl-muted'\n | '--wzl-panel-bg'\n | '--wzl-panel-border'\n | '--wzl-radius-md'\n | '--wzl-radius-sm'\n | '--wzl-success'\n | '--wzl-success-base'\n | '--wzl-surface'\n | '--wzl-surface-raised'\n | '--wzl-surface-sunken'\n | '--wzl-tb-height'\n | '--wzl-text'\n | '--wzl-text-muted'\n | '--wzl-thumb-border'\n | '--wzl-thumb-fill'\n | '--wzl-thumb-text'\n | '--wzl-track-bg'\n | '--wzl-track-border'\n | '--wzl-warning'\n | '--wzl-warning-base';\n\nexport interface GeneratedTheme {\n readonly name: string;\n readonly defaultMode: string;\n readonly modes: Readonly<Record<string, Readonly<Record<TokenName, string>>>>;\n}\n\nexport const THEMES = {\n \"weasel\": {\n name: \"weasel\",\n defaultMode: \"dark\",\n modes: {\n \"dark\": {\n '--wzl-gray-50': \"#f5f5f6\",\n '--wzl-gray-100': \"#e6e7e9\",\n '--wzl-gray-200': \"#c9cbcf\",\n '--wzl-gray-300': \"#9ea1a8\",\n '--wzl-gray-400': \"#6f737b\",\n '--wzl-gray-500': \"#4d5058\",\n '--wzl-gray-600': \"#383b42\",\n '--wzl-gray-700': \"#25272c\",\n '--wzl-gray-800': \"#181a1e\",\n '--wzl-gray-900': \"#0e0f12\",\n '--wzl-accent-soft': \"#1d1454\",\n '--wzl-accent-base': \"#2e1f7a\",\n '--wzl-accent-strong': \"#5841b8\",\n '--wzl-danger-base': \"#d94a3f\",\n '--wzl-warning-base': \"#d99a3f\",\n '--wzl-success-base': \"#2ec27e\",\n '--wzl-fg-on-accent': \"#f5f5f6\",\n '--wzl-fg': \"#e6e7e9\",\n '--wzl-line-subtle': \"rgba(230, 231, 233, 0.1)\",\n '--wzl-line': \"rgba(230, 231, 233, 0.2)\",\n '--wzl-line-strong': \"rgba(230, 231, 233, 0.4)\",\n '--wzl-curve-color': \"#5841b8\",\n '--wzl-accent': \"#2e1f7a\",\n '--wzl-accent-hover': \"#5841b8\",\n '--wzl-danger': \"#d94a3f\",\n '--wzl-warning': \"#d99a3f\",\n '--wzl-success': \"#2ec27e\",\n '--wzl-focus-ring': \"#5841b8\",\n '--wzl-glass-tint': \"#2e1f7a\",\n '--wzl-text': \"#e6e7e9\",\n '--wzl-fg-muted': \"#9ea1a8\",\n '--wzl-text-muted': \"#9ea1a8\",\n '--wzl-surface': \"#181a1e\",\n '--wzl-bg': \"#181a1e\",\n '--wzl-muted': \"#9ea1a8\",\n '--wzl-panel-bg': \"#181a1e\",\n '--wzl-border': \"#25272c\",\n '--wzl-panel-border': \"#25272c\",\n '--wzl-surface-sunken': \"#0e0f12\",\n '--wzl-input-bg': \"#0e0f12\",\n '--wzl-track-bg': \"#0e0f12\",\n '--wzl-track-border': \"#25272c\",\n '--wzl-thumb-fill': \"#9ea1a8\",\n '--wzl-border-strong': \"#383b42\",\n '--wzl-thumb-border': \"#383b42\",\n '--wzl-surface-raised': \"#25272c\",\n '--wzl-button-fill': \"#25272c\",\n '--wzl-button-fill-hover': \"rgba(230, 231, 233, 0.1)\",\n '--wzl-button-fill-pressed': \"rgba(230, 231, 233, 0.18)\",\n '--wzl-button-text': \"#e6e7e9\",\n '--wzl-radius-sm': \"3px\",\n '--wzl-radius-md': \"5px\",\n '--wzl-border-w': \"1px\",\n '--wzl-line-width': \"2px\",\n '--wzl-curve-width': \"3px\",\n '--wzl-tb-height': \"28px\",\n '--wzl-motion-fast': \"120ms\",\n '--wzl-motion-medium': \"240ms\",\n '--wzl-ease-in-cubic': \"cubic-bezier(0.32, 0, 0.67, 0)\",\n '--wzl-ease-out-cubic': \"cubic-bezier(0.33, 1, 0.68, 1)\",\n '--wzl-ease-in-out-cubic': \"cubic-bezier(0.65, 0, 0.35, 1)\",\n '--wzl-ease-out-back': \"cubic-bezier(0.34, 1.56, 0.64, 1)\",\n '--wzl-font-ui': \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-display': \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-body': \"Inter, system-ui, -apple-system, 'Segoe UI', sans-serif\",\n '--wzl-font-mono': \"ui-monospace, SFMono-Regular, Menlo, Consolas, monospace\",\n '--wzl-font-weight-light': \"200\",\n '--wzl-font-weight-normal': \"300\",\n '--wzl-font-weight-bold': \"400\",\n '--wzl-fg-subtle': \"#6f737b\",\n '--wzl-accent-fg': \"#5841b8\",\n '--wzl-thumb-text': \"#0e0f12\",\n },\n \"light\": {\n '--wzl-gray-50': \"#f5f5f6\",\n '--wzl-gray-100': \"#e6e7e9\",\n '--wzl-gray-200': \"#c9cbcf\",\n '--wzl-gray-300': \"#9ea1a8\",\n '--wzl-gray-400': \"#6f737b\",\n '--wzl-gray-500': \"#4d5058\",\n '--wzl-gray-600': \"#383b42\",\n '--wzl-gray-700': \"#25272c\",\n '--wzl-gray-800': \"#181a1e\",\n '--wzl-gray-900': \"#0e0f12\",\n '--wzl-accent-soft': \"#1d1454\",\n '--wzl-accent-base': \"#2e1f7a\",\n '--wzl-accent-strong': \"#5841b8\",\n '--wzl-danger-base': \"#d94a3f\",\n '--wzl-warning-base': \"#d99a3f\",\n '--wzl-success-base': \"#2ec27e\",\n '--wzl-fg-on-accent': \"#f5f5f6\",\n '--wzl-fg': \"#0e0f12\",\n '--wzl-line-subtle': \"rgba(14, 15, 18, 0.1)\",\n '--wzl-line': \"rgba(14, 15, 18, 0.2)\",\n '--wzl-line-strong': \"rgba(14, 15, 18, 0.4)\",\n '--wzl-curve-color': \"#5841b8\",\n '--wzl-accent': \"#2e1f7a\",\n '--wzl-accent-hover': \"#5841b8\",\n '--wzl-danger': \"#d94a3f\",\n '--wzl-warning': \"#d99a3f\",\n '--wzl-success': \"#2ec27e\",\n '--wzl-focus-ring': \"#5841b8\",\n '--wzl-glass-tint': \"#2e1f7a\",\n '--wzl-text': \"#0e0f12\",\n '--wzl-fg-muted': \"#383b42\",\n '--wzl-text-muted': \"#383b42\",\n '--wzl-surface': \"#f5f5f6\",\n '--wzl-bg': \"#f5f5f6\",\n '--wzl-muted': \"#383b42\",\n '--wzl-panel-bg': \"#f5f5f6\",\n '--wzl-border': \"#c9cbcf\",\n '--wzl-panel-border': \"#c9cbcf\",\n '--wzl-surface-sunken': \"#c9cbcf\",\n '--wzl-input-bg': \"#c9cbcf\",\n '--wzl-track-bg': \"#c9cbcf\",\n '--wzl-track-border': \"#c9cbcf\",\n '--wzl-thumb-fill': \"#383b42\",\n '--wzl-border-strong': \"#9ea1a8\",\n '--wzl-thumb-border': \"#9ea1a8\",\n '--wzl-surface-raised': \"#e6e7e9\",\n '--wzl-button-fill': \"#e6e7e9\",\n '--wzl-button-fill-hover': \"rgba(14, 15, 18, 0.1)\",\n '--wzl-button-fill-pressed': \"rgba(14, 15, 18, 0.18)\",\n '--wzl-button-text': \"#0e0f12\",\n '--wzl-radius-sm': \"3px\",\n '--wzl-radius-md': \"5px\",\n '--wzl-border-w': \"1px\",\n '--wzl-line-width': \"2px\",\n '--wzl-curve-width': \"3px\",\n '--wzl-tb-height': \"28px\",\n '--wzl-motion-fast': \"120ms\",\n '--wzl-motion-medium': \"240ms\",\n '--wzl-ease-in-cubic': \"cubic-bezier(0.32, 0, 0.67, 0)\",\n '--wzl-ease-out-cubic': \"cubic-bezier(0.33, 1, 0.68, 1)\",\n '--wzl-ease-in-out-cubic': \"cubic-bezier(0.65, 0, 0.35, 1)\",\n '--wzl-ease-out-back': \"cubic-bezier(0.34, 1.56, 0.64, 1)\",\n '--wzl-font-ui': \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-display': \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\",\n '--wzl-font-body': \"Inter, system-ui, -apple-system, 'Segoe UI', sans-serif\",\n '--wzl-font-mono': \"ui-monospace, SFMono-Regular, Menlo, Consolas, monospace\",\n '--wzl-font-weight-light': \"200\",\n '--wzl-font-weight-normal': \"300\",\n '--wzl-font-weight-bold': \"400\",\n '--wzl-fg-subtle': \"#4d5058\",\n '--wzl-accent-fg': \"#2e1f7a\",\n '--wzl-thumb-text': \"#f5f5f6\",\n },\n },\n },\n} as const satisfies Record<string, GeneratedTheme>;\n","// GENERATED by packages/theme/scripts/build-tokens.ts — do not edit.\n\nexport interface TokenManifestEntry {\n readonly name: string;\n readonly type: string;\n readonly group: string;\n readonly defaultValue: string;\n readonly description: string;\n}\n\nexport const TOKEN_MANIFEST: readonly TokenManifestEntry[] = [\n { name: '--wzl-gray-50', type: \"color\", group: \"gray\", defaultValue: \"#f5f5f6\", description: \"\" },\n { name: '--wzl-gray-100', type: \"color\", group: \"gray\", defaultValue: \"#e6e7e9\", description: \"\" },\n { name: '--wzl-gray-200', type: \"color\", group: \"gray\", defaultValue: \"#c9cbcf\", description: \"\" },\n { name: '--wzl-gray-300', type: \"color\", group: \"gray\", defaultValue: \"#9ea1a8\", description: \"\" },\n { name: '--wzl-gray-400', type: \"color\", group: \"gray\", defaultValue: \"#6f737b\", description: \"\" },\n { name: '--wzl-gray-500', type: \"color\", group: \"gray\", defaultValue: \"#4d5058\", description: \"\" },\n { name: '--wzl-gray-600', type: \"color\", group: \"gray\", defaultValue: \"#383b42\", description: \"\" },\n { name: '--wzl-gray-700', type: \"color\", group: \"gray\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-gray-800', type: \"color\", group: \"gray\", defaultValue: \"#181a1e\", description: \"\" },\n { name: '--wzl-gray-900', type: \"color\", group: \"gray\", defaultValue: \"#0e0f12\", description: \"\" },\n { name: '--wzl-accent-soft', type: \"color\", group: \"accent\", defaultValue: \"#1d1454\", description: \"\" },\n { name: '--wzl-accent-base', type: \"color\", group: \"accent\", defaultValue: \"#2e1f7a\", description: \"Midnight blue-violet. Deep and saturated; anchors primary actions on light and dark surfaces alike.\" },\n { name: '--wzl-accent-strong', type: \"color\", group: \"accent\", defaultValue: \"#5841b8\", description: \"\" },\n { name: '--wzl-danger-base', type: \"color\", group: \"danger\", defaultValue: \"#d94a3f\", description: \"\" },\n { name: '--wzl-warning-base', type: \"color\", group: \"warning\", defaultValue: \"#d99a3f\", description: \"\" },\n { name: '--wzl-success-base', type: \"color\", group: \"success\", defaultValue: \"#2ec27e\", description: \"\" },\n { name: '--wzl-fg-on-accent', type: \"color\", group: \"fg\", defaultValue: \"#f5f5f6\", description: \"\" },\n { name: '--wzl-line-subtle', type: \"color\", group: \"line\", defaultValue: \"rgba(230, 231, 233, 0.1)\", description: \"Barely-there separators (table rows).\" },\n { name: '--wzl-line', type: \"color\", group: \"line\", defaultValue: \"rgba(230, 231, 233, 0.2)\", description: \"Primary gridlines on sunken surfaces.\" },\n { name: '--wzl-line-strong', type: \"color\", group: \"line\", defaultValue: \"rgba(230, 231, 233, 0.4)\", description: \"Axes and emphasized dividers.\" },\n { name: '--wzl-curve-color', type: \"color\", group: \"curve\", defaultValue: \"#5841b8\", description: \"Drawn data curves. Routes through the bright accent because accent-base is too dim on sunken surfaces.\" },\n { name: '--wzl-accent', type: \"color\", group: \"accent\", defaultValue: \"#2e1f7a\", description: \"\" },\n { name: '--wzl-accent-hover', type: \"color\", group: \"accent\", defaultValue: \"#5841b8\", description: \"\" },\n { name: '--wzl-danger', type: \"color\", group: \"danger\", defaultValue: \"#d94a3f\", description: \"\" },\n { name: '--wzl-warning', type: \"color\", group: \"warning\", defaultValue: \"#d99a3f\", description: \"\" },\n { name: '--wzl-success', type: \"color\", group: \"success\", defaultValue: \"#2ec27e\", description: \"\" },\n { name: '--wzl-focus-ring', type: \"color\", group: \"focus\", defaultValue: \"#5841b8\", description: \"\" },\n { name: '--wzl-glass-tint', type: \"color\", group: \"glass\", defaultValue: \"#2e1f7a\", description: \"Frosted-glass tint. Components compose it as color-mix(in srgb, var(--wzl-glass-tint) 78%, transparent) with backdrop-filter: blur(3px).\" },\n { name: '--wzl-text', type: \"color\", group: \"text\", defaultValue: \"#e6e7e9\", description: \"\" },\n { name: '--wzl-text-muted', type: \"color\", group: \"text\", defaultValue: \"#9ea1a8\", description: \"\" },\n { name: '--wzl-bg', type: \"color\", group: \"bg\", defaultValue: \"#181a1e\", description: \"\" },\n { name: '--wzl-muted', type: \"color\", group: \"muted\", defaultValue: \"#9ea1a8\", description: \"\" },\n { name: '--wzl-panel-bg', type: \"color\", group: \"panel\", defaultValue: \"#181a1e\", description: \"\" },\n { name: '--wzl-panel-border', type: \"color\", group: \"panel\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-input-bg', type: \"color\", group: \"input\", defaultValue: \"#0e0f12\", description: \"\" },\n { name: '--wzl-track-bg', type: \"color\", group: \"track\", defaultValue: \"#0e0f12\", description: \"\" },\n { name: '--wzl-track-border', type: \"color\", group: \"track\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-thumb-fill', type: \"color\", group: \"thumb\", defaultValue: \"#9ea1a8\", description: \"\" },\n { name: '--wzl-thumb-border', type: \"color\", group: \"thumb\", defaultValue: \"#383b42\", description: \"\" },\n { name: '--wzl-button-fill', type: \"color\", group: \"button\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-button-fill-hover', type: \"color\", group: \"button\", defaultValue: \"rgba(230, 231, 233, 0.1)\", description: \"\" },\n { name: '--wzl-button-fill-pressed', type: \"color\", group: \"button\", defaultValue: \"rgba(230, 231, 233, 0.18)\", description: \"\" },\n { name: '--wzl-button-text', type: \"color\", group: \"button\", defaultValue: \"#e6e7e9\", description: \"\" },\n { name: '--wzl-radius-sm', type: \"dimension\", group: \"radius\", defaultValue: \"3px\", description: \"\" },\n { name: '--wzl-radius-md', type: \"dimension\", group: \"radius\", defaultValue: \"5px\", description: \"\" },\n { name: '--wzl-border-w', type: \"dimension\", group: \"border\", defaultValue: \"1px\", description: \"\" },\n { name: '--wzl-line-width', type: \"dimension\", group: \"line\", defaultValue: \"2px\", description: \"Structural lines — gridlines, dividers, axes.\" },\n { name: '--wzl-curve-width', type: \"dimension\", group: \"curve\", defaultValue: \"3px\", description: \"Drawn data curves. Heavier than structural lines so data reads as primary content.\" },\n { name: '--wzl-tb-height', type: \"dimension\", group: \"tb\", defaultValue: \"28px\", description: \"Height of a horizontal toolbar strip (ActionsBar, OptionsBar, ToggleBar, ToolOptionsBar).\" },\n { name: '--wzl-motion-fast', type: \"duration\", group: \"motion\", defaultValue: \"120ms\", description: \"Micro-interactions — hover, focus, pressed.\" },\n { name: '--wzl-motion-medium', type: \"duration\", group: \"motion\", defaultValue: \"240ms\", description: \"Entrances and exits — toasts, popovers, panels.\" },\n { name: '--wzl-ease-in-cubic', type: \"cubicBezier\", group: \"ease\", defaultValue: \"cubic-bezier(0.32, 0, 0.67, 0)\", description: \"\" },\n { name: '--wzl-ease-out-cubic', type: \"cubicBezier\", group: \"ease\", defaultValue: \"cubic-bezier(0.33, 1, 0.68, 1)\", description: \"\" },\n { name: '--wzl-ease-in-out-cubic', type: \"cubicBezier\", group: \"ease\", defaultValue: \"cubic-bezier(0.65, 0, 0.35, 1)\", description: \"\" },\n { name: '--wzl-ease-out-back', type: \"cubicBezier\", group: \"ease\", defaultValue: \"cubic-bezier(0.34, 1.56, 0.64, 1)\", description: \"\" },\n { name: '--wzl-font-ui', type: \"fontFamily\", group: \"font\", defaultValue: \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\", description: \"Condensed UI/display face. The heavier cuts get blocky at any size, so the weight tokens stay in the 200-400 range.\" },\n { name: '--wzl-font-display', type: \"fontFamily\", group: \"font\", defaultValue: \"Oswald, 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif\", description: \"\" },\n { name: '--wzl-font-body', type: \"fontFamily\", group: \"font\", defaultValue: \"Inter, system-ui, -apple-system, 'Segoe UI', sans-serif\", description: \"\" },\n { name: '--wzl-font-mono', type: \"fontFamily\", group: \"font\", defaultValue: \"ui-monospace, SFMono-Regular, Menlo, Consolas, monospace\", description: \"\" },\n { name: '--wzl-font-weight-light', type: \"fontWeight\", group: \"font\", defaultValue: \"200\", description: \"\" },\n { name: '--wzl-font-weight-normal', type: \"fontWeight\", group: \"font\", defaultValue: \"300\", description: \"\" },\n { name: '--wzl-font-weight-bold', type: \"fontWeight\", group: \"font\", defaultValue: \"400\", description: \"\" },\n { name: '--wzl-surface', type: \"color\", group: \"surface\", defaultValue: \"#181a1e\", description: \"\" },\n { name: '--wzl-surface-raised', type: \"color\", group: \"surface\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-surface-sunken', type: \"color\", group: \"surface\", defaultValue: \"#0e0f12\", description: \"\" },\n { name: '--wzl-fg', type: \"color\", group: \"fg\", defaultValue: \"#e6e7e9\", description: \"\" },\n { name: '--wzl-fg-muted', type: \"color\", group: \"fg\", defaultValue: \"#9ea1a8\", description: \"\" },\n { name: '--wzl-fg-subtle', type: \"color\", group: \"fg\", defaultValue: \"#6f737b\", description: \"\" },\n { name: '--wzl-border', type: \"color\", group: \"border\", defaultValue: \"#25272c\", description: \"\" },\n { name: '--wzl-border-strong', type: \"color\", group: \"border\", defaultValue: \"#383b42\", description: \"\" },\n { name: '--wzl-accent-fg', type: \"color\", group: \"accent\", defaultValue: \"#5841b8\", description: \"Accent for foreground use — text, icons, selected labels drawn on a surface. accent is a fill; the midnight base is too dim to read as text on dark surfaces.\" },\n { name: '--wzl-thumb-text', type: \"color\", group: \"thumb\", defaultValue: \"#0e0f12\", description: \"\" },\n];\n","export { THEMES, type TokenName, type GeneratedTheme } from './generated/themes';\nexport { TOKEN_MANIFEST, type TokenManifestEntry } from './generated/manifest';\n\nimport { THEMES } from './generated/themes';\n\n/**\n * Default token values for the built-in theme's default mode.\n *\n * Retained under its original name because `@weasel-js/hud` reads it as a\n * boot-window fallback. Plan B replaces that consumer with a resolved theme.\n */\nexport const DEFAULT_TOKENS = THEMES.weasel.modes[THEMES.weasel.defaultMode];\n"]}
|