@titan-design/react-ui 0.12.0 → 0.12.1
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/dist/bodymap.js.map +1 -1
- package/dist/bodymap.mjs.map +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/pages.js.map +1 -1
- package/dist/pages.mjs.map +1 -1
- package/dist/theme/index.d.mts +5 -906
- package/dist/theme/index.d.ts +5 -906
- package/dist/theme/index.js.map +1 -1
- package/dist/theme/index.mjs.map +1 -1
- package/dist/theme/tokens-css.js.map +1 -1
- package/dist/theme/tokens-css.mjs.map +1 -1
- package/dist/theme/tokens.d.mts +904 -0
- package/dist/theme/tokens.d.ts +904 -0
- package/dist/theme/tokens.js +856 -0
- package/dist/theme/tokens.js.map +1 -0
- package/dist/theme/tokens.mjs +833 -0
- package/dist/theme/tokens.mjs.map +1 -0
- package/package.json +7 -1
- package/src/components/custom/Workout/README.md +1 -1
- package/src/components/shell/README.md +1 -1
- package/src/components/shell/SessionRailSpecimen.stories.tsx +1 -1
- package/src/components/ui/surface/surface.contract.test.ts +1 -1
- package/src/theme/ColorPrimitives.stories.tsx +1 -1
- package/src/theme/DepthCalibration.stories.tsx +1 -1
- package/src/theme/materials.ts +2 -2
- package/src/theme/token-export-guard.test.ts +104 -0
- package/src/theme/tokens/primitives.ts +2 -2
package/dist/theme/index.d.mts
CHANGED
|
@@ -1,541 +1,7 @@
|
|
|
1
|
+
import { ThemeMode, getSemanticColors } from './tokens.mjs';
|
|
2
|
+
export { CATEGORICAL_CVD_SAFE_MAX, CategoricalVariant, SURFACE_PLANE_STEPS, bestTextColor, buttonSizes, categoricalPalette, discreteRainbow, divergingScale, getCategoricalColor, getDiscreteRainbowColor, greyRamp, primitiveBorderRadius, primitiveBreakpoints, primitiveColors, primitiveRamps, primitiveSpacing, primitiveTypography, primitiveZIndex, semanticColorsDark, semanticColorsLight, semanticTypography, sequentialEffort } from './tokens.mjs';
|
|
1
3
|
import { ViewStyle, ViewProps } from 'react-native';
|
|
2
4
|
|
|
3
|
-
/**
|
|
4
|
-
* Semantic Design Tokens
|
|
5
|
-
*
|
|
6
|
-
* Meaningful tokens following DTCG (Design Tokens Community Group) naming conventions.
|
|
7
|
-
* Pattern: {category}-{intent}-{variant?}-{state?}
|
|
8
|
-
*
|
|
9
|
-
* Categories:
|
|
10
|
-
* - brand-* : Brand colors (primary, secondary, accent)
|
|
11
|
-
* - status-* : Feedback colors (success, error, warning, info)
|
|
12
|
-
* - result-* : Outcome indicators (improve, degrade, inconclusive, neutral)
|
|
13
|
-
* - data-* : Data visualization colors (chart series)
|
|
14
|
-
* - on-* : Text on colored backgrounds
|
|
15
|
-
* - surface-* : Elevated containers (NOT "paper")
|
|
16
|
-
* - background-* : Page backgrounds
|
|
17
|
-
* - text-* : Text colors
|
|
18
|
-
* - border-* : Border colors
|
|
19
|
-
* - interactive-* : Hover/focus/active/disabled states
|
|
20
|
-
*/
|
|
21
|
-
/**
|
|
22
|
-
* GREY MAPPING (TD-07.14) — how the old cool scales resolved onto `greyRamp`.
|
|
23
|
-
*
|
|
24
|
-
* Every grey below came off `grey` (pure R=G=B) or `neutral` (cool, R−B
|
|
25
|
-
* down to −26). They were snapped by NEAREST L*, not by matching step numbers,
|
|
26
|
-
* because the two old scales were numbered incompatibly: `grey` ran
|
|
27
|
-
* INVERTED and compressed (0 = #6E6E6E lightest, 900 = #101010 darkest), so
|
|
28
|
-
* `grey[400]` and `greyRamp[400]` have nothing to do with each other.
|
|
29
|
-
*
|
|
30
|
-
* grey 200→800 300→900 400→925 500→950
|
|
31
|
-
* neutral 50→50 100→100 300→200 400→400 500→600 600→700 900→950
|
|
32
|
-
*
|
|
33
|
-
* Surfaces move ΔE 1.9–4.8 — at or near imperceptible. The TEXT roles move
|
|
34
|
-
* further (8.6–12.8), and that is the intended part of the change: they are
|
|
35
|
-
* picking up the warmth the surfaces already had.
|
|
36
|
-
*
|
|
37
|
-
* Light gets its own column because strict L*-nearest collapsed `neutral[50]`
|
|
38
|
-
* and `[100]` onto one step, flattening surface-elevated into surface-raised.
|
|
39
|
-
* Light is still deferred as a design question — there is no `surfaceRampLight`.
|
|
40
|
-
*
|
|
41
|
-
* `border-default`, `-subtle` and `-strong` are GONE, replaced by `hairline-*`.
|
|
42
|
-
* Once the planes became ramp steps, every value dark enough to read as a
|
|
43
|
-
* border was also a plane's fill. Alpha composites instead of colliding.
|
|
44
|
-
*
|
|
45
|
-
* `text-tertiary` on dark is the one role that ignores L*-nearest; see it.
|
|
46
|
-
*/
|
|
47
|
-
declare const semanticColorsLight: {
|
|
48
|
-
readonly 'brand-primary': "#FF7900";
|
|
49
|
-
readonly 'brand-primary-light': "#FFA063";
|
|
50
|
-
readonly 'brand-primary-dark': "#DA5F00";
|
|
51
|
-
readonly 'brand-primary-subtle': "rgba(255, 121, 0, 0.08)";
|
|
52
|
-
readonly 'brand-primary-hover': "#DA5F00";
|
|
53
|
-
readonly 'brand-primary-active': "#B94A00";
|
|
54
|
-
readonly 'brand-secondary': "#307B9B";
|
|
55
|
-
readonly 'brand-secondary-light': "#2697B7";
|
|
56
|
-
readonly 'brand-secondary-dark': "#2A617F";
|
|
57
|
-
readonly 'brand-secondary-subtle': "rgba(48, 123, 155, 0.08)";
|
|
58
|
-
readonly 'brand-secondary-hover': "#2A617F";
|
|
59
|
-
readonly 'brand-secondary-active': "#22465F";
|
|
60
|
-
readonly 'on-brand-primary': "#FFFFFF";
|
|
61
|
-
readonly 'on-brand-secondary': "#FFFFFF";
|
|
62
|
-
readonly 'status-success': "#2ED573";
|
|
63
|
-
readonly 'status-success-light': "#58F69E";
|
|
64
|
-
readonly 'status-success-dark': "#298732";
|
|
65
|
-
readonly 'status-success-subtle': "#E3FFEE";
|
|
66
|
-
readonly 'status-live': "#2ED573";
|
|
67
|
-
readonly 'status-live-muted': "#22A444";
|
|
68
|
-
readonly 'status-error': "#D14343";
|
|
69
|
-
readonly 'status-error-light': "#E05254";
|
|
70
|
-
readonly 'status-error-dark': "#A4221C";
|
|
71
|
-
readonly 'status-error-subtle': "#FFF4F4";
|
|
72
|
-
readonly 'status-error-vivid': "#D14343";
|
|
73
|
-
readonly 'status-error-vivid-light': "#E05254";
|
|
74
|
-
readonly 'status-error-vivid-dark': "#A4221C";
|
|
75
|
-
readonly 'status-error-vivid-subtle': "rgba(255, 71, 87, 0.12)";
|
|
76
|
-
readonly 'status-warning': "#F9B415";
|
|
77
|
-
readonly 'status-warning-light': "#FFD352";
|
|
78
|
-
readonly 'status-warning-dark': "#C27400";
|
|
79
|
-
readonly 'status-warning-subtle': "#FFF7DD";
|
|
80
|
-
readonly 'status-info': "#2196F3";
|
|
81
|
-
readonly 'status-info-light': "#78C2FF";
|
|
82
|
-
readonly 'status-info-dark': "#1072CB";
|
|
83
|
-
readonly 'status-info-subtle': "#EFF8FF";
|
|
84
|
-
readonly 'on-status-success': "#FFFFFF";
|
|
85
|
-
readonly 'on-status-error': "#FFFFFF";
|
|
86
|
-
readonly 'on-status-warning': "#FFFFFF";
|
|
87
|
-
readonly 'on-status-info': "#FFFFFF";
|
|
88
|
-
readonly 'result-improve': "#4caf50";
|
|
89
|
-
readonly 'result-improve-light': "rgba(76, 175, 80, 0.12)";
|
|
90
|
-
readonly 'result-improve-dark': "#248a24";
|
|
91
|
-
readonly 'result-degrade': "#ef5350";
|
|
92
|
-
readonly 'result-degrade-light': "rgba(239, 83, 80, 0.12)";
|
|
93
|
-
readonly 'result-degrade-dark': "#b30000";
|
|
94
|
-
readonly 'result-inconclusive': "#9E9A97";
|
|
95
|
-
readonly 'result-inconclusive-light': "rgba(158, 154, 151, 0.12)";
|
|
96
|
-
readonly 'result-neutral': "#72716F";
|
|
97
|
-
readonly 'on-result-improve': "#FFFFFF";
|
|
98
|
-
readonly 'on-result-degrade': "#FFFFFF";
|
|
99
|
-
readonly 'on-result-inconclusive': "#FFFFFF";
|
|
100
|
-
readonly 'data-1': "#1965B0";
|
|
101
|
-
readonly 'data-2': "#4EB265";
|
|
102
|
-
readonly 'data-3': "#F7F056";
|
|
103
|
-
readonly 'data-4': "#DC050C";
|
|
104
|
-
readonly 'data-5': "#882E72";
|
|
105
|
-
readonly 'data-6': "#F4A736";
|
|
106
|
-
readonly 'data-7': "#7BAFDE";
|
|
107
|
-
readonly 'data-8': "#90C987";
|
|
108
|
-
readonly 'data-9': "#CAACCB";
|
|
109
|
-
readonly 'data-10': "#EE8026";
|
|
110
|
-
readonly 'text-primary': "#121828";
|
|
111
|
-
readonly 'text-secondary': "#65748B";
|
|
112
|
-
readonly 'text-tertiary': "#A29F9D";
|
|
113
|
-
readonly 'text-disabled': "rgba(55, 65, 81, 0.48)";
|
|
114
|
-
readonly 'text-inverse': "#FFFFFF";
|
|
115
|
-
readonly 'text-link': "#1072CB";
|
|
116
|
-
readonly 'text-link-hover': "#135AA8";
|
|
117
|
-
readonly 'surface-base': "#FFFFFF";
|
|
118
|
-
readonly 'surface-elevated': "#F9F6F3";
|
|
119
|
-
readonly 'surface-raised': "#EDEAE7";
|
|
120
|
-
readonly 'surface-overlay': "#FFFFFF";
|
|
121
|
-
readonly 'surface-input': "#F9F6F3";
|
|
122
|
-
readonly 'background-base': "#EBEBEB";
|
|
123
|
-
readonly 'background-default': "#FFFFFF";
|
|
124
|
-
readonly 'background-subtle': "#F9F6F3";
|
|
125
|
-
readonly 'background-frame': "#A29F9D";
|
|
126
|
-
readonly 'border-prominent': "#A29F9D";
|
|
127
|
-
readonly 'border-focus': "#1072CB";
|
|
128
|
-
readonly 'border-input': "#D4D1CE";
|
|
129
|
-
readonly 'border-input-hover': "#A29F9D";
|
|
130
|
-
readonly 'border-input-focus': "#1072CB";
|
|
131
|
-
readonly 'border-input-error': "#D14343";
|
|
132
|
-
readonly 'hairline-subtle': "rgba(0, 0, 0, 0.06)";
|
|
133
|
-
readonly 'hairline-default': "rgba(0, 0, 0, 0.09)";
|
|
134
|
-
readonly 'hairline-strong': "rgba(0, 0, 0, 0.14)";
|
|
135
|
-
readonly 'interactive-hover': "rgba(55, 65, 81, 0.04)";
|
|
136
|
-
readonly 'interactive-focus': "rgba(55, 65, 81, 0.12)";
|
|
137
|
-
readonly 'interactive-active': "rgba(55, 65, 81, 0.16)";
|
|
138
|
-
readonly 'interactive-selected': "rgba(55, 65, 81, 0.08)";
|
|
139
|
-
readonly 'interactive-disabled': "rgba(55, 65, 81, 0.12)";
|
|
140
|
-
readonly 'interactive-disabled-text': "rgba(55, 65, 81, 0.26)";
|
|
141
|
-
readonly divider: "#E8E9EB";
|
|
142
|
-
readonly 'avatar-background': "#72716F";
|
|
143
|
-
readonly 'avatar-text': "#FFFFFF";
|
|
144
|
-
};
|
|
145
|
-
declare const semanticColorsDark: {
|
|
146
|
-
readonly 'brand-primary': "#FF7900";
|
|
147
|
-
readonly 'brand-primary-light': "#FFA063";
|
|
148
|
-
readonly 'brand-primary-dark': "#DA5F00";
|
|
149
|
-
readonly 'brand-primary-subtle': "rgba(255, 121, 0, 0.12)";
|
|
150
|
-
readonly 'brand-primary-hover': "#FFA063";
|
|
151
|
-
readonly 'brand-primary-active': "#FFC7A2";
|
|
152
|
-
readonly 'brand-secondary': "#307B9B";
|
|
153
|
-
readonly 'brand-secondary-light': "#2697B7";
|
|
154
|
-
readonly 'brand-secondary-dark': "#2A617F";
|
|
155
|
-
readonly 'brand-secondary-subtle': "rgba(48, 123, 155, 0.12)";
|
|
156
|
-
readonly 'brand-secondary-hover': "#2697B7";
|
|
157
|
-
readonly 'brand-secondary-active': "#01B5D1";
|
|
158
|
-
readonly 'on-brand-primary': "#FFFFFF";
|
|
159
|
-
readonly 'on-brand-secondary': "#FFFFFF";
|
|
160
|
-
readonly 'status-success': "#2ED573";
|
|
161
|
-
readonly 'status-success-light': "#58F69E";
|
|
162
|
-
readonly 'status-success-dark': "#298732";
|
|
163
|
-
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
164
|
-
readonly 'status-live': "#2ED573";
|
|
165
|
-
readonly 'status-live-muted': "#22A444";
|
|
166
|
-
readonly 'status-error': "#D14343";
|
|
167
|
-
readonly 'status-error-light': "#E05254";
|
|
168
|
-
readonly 'status-error-dark': "#A4221C";
|
|
169
|
-
readonly 'status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
170
|
-
readonly 'status-error-vivid': "#D14343";
|
|
171
|
-
readonly 'status-error-vivid-light': "#E05254";
|
|
172
|
-
readonly 'status-error-vivid-dark': "#A4221C";
|
|
173
|
-
readonly 'status-error-vivid-subtle': "rgba(255, 71, 87, 0.12)";
|
|
174
|
-
readonly 'status-warning': "#F9B415";
|
|
175
|
-
readonly 'status-warning-light': "#FFD352";
|
|
176
|
-
readonly 'status-warning-dark': "#C27400";
|
|
177
|
-
readonly 'status-warning-subtle': "rgba(249, 180, 21, 0.12)";
|
|
178
|
-
readonly 'status-info': "#2196F3";
|
|
179
|
-
readonly 'status-info-light': "#78C2FF";
|
|
180
|
-
readonly 'status-info-dark': "#1072CB";
|
|
181
|
-
readonly 'status-info-subtle': "rgba(33, 150, 243, 0.12)";
|
|
182
|
-
readonly 'on-status-success': "#FFFFFF";
|
|
183
|
-
readonly 'on-status-error': "#FFFFFF";
|
|
184
|
-
readonly 'on-status-warning': "#FFFFFF";
|
|
185
|
-
readonly 'on-status-info': "#FFFFFF";
|
|
186
|
-
readonly 'result-improve': "#4caf50";
|
|
187
|
-
readonly 'result-improve-light': "rgba(76, 175, 80, 0.16)";
|
|
188
|
-
readonly 'result-improve-dark': "#248a24";
|
|
189
|
-
readonly 'result-degrade': "#ef5350";
|
|
190
|
-
readonly 'result-degrade-light': "rgba(239, 83, 80, 0.16)";
|
|
191
|
-
readonly 'result-degrade-dark': "#b30000";
|
|
192
|
-
readonly 'result-inconclusive': "#9E9A97";
|
|
193
|
-
readonly 'result-inconclusive-light': "rgba(158, 154, 151, 0.16)";
|
|
194
|
-
readonly 'result-neutral': "#A29F9D";
|
|
195
|
-
readonly 'on-result-improve': "#FFFFFF";
|
|
196
|
-
readonly 'on-result-degrade': "#FFFFFF";
|
|
197
|
-
readonly 'on-result-inconclusive': "#FFFFFF";
|
|
198
|
-
readonly 'data-1': "#1965B0";
|
|
199
|
-
readonly 'data-2': "#4EB265";
|
|
200
|
-
readonly 'data-3': "#F7F056";
|
|
201
|
-
readonly 'data-4': "#DC050C";
|
|
202
|
-
readonly 'data-5': "#882E72";
|
|
203
|
-
readonly 'data-6': "#F4A736";
|
|
204
|
-
readonly 'data-7': "#7BAFDE";
|
|
205
|
-
readonly 'data-8': "#90C987";
|
|
206
|
-
readonly 'data-9': "#CAACCB";
|
|
207
|
-
readonly 'data-10': "#EE8026";
|
|
208
|
-
readonly 'text-primary': "#F9F6F3";
|
|
209
|
-
readonly 'text-secondary': "#A29F9D";
|
|
210
|
-
readonly 'text-tertiary': "#888684";
|
|
211
|
-
readonly 'text-disabled': "rgba(255, 255, 255, 0.38)";
|
|
212
|
-
readonly 'text-inverse': "#1C1916";
|
|
213
|
-
readonly 'text-link': "#828DF8";
|
|
214
|
-
readonly 'text-link-hover': "#3CA8FF";
|
|
215
|
-
readonly 'surface-base': "#252321";
|
|
216
|
-
readonly 'surface-elevated': "#2C2A28";
|
|
217
|
-
readonly 'surface-raised': "#31302F";
|
|
218
|
-
readonly 'surface-overlay': "#373635";
|
|
219
|
-
readonly 'surface-input': "#2C2A28";
|
|
220
|
-
readonly 'background-base': "#1C1916";
|
|
221
|
-
readonly 'background-default': "#252321";
|
|
222
|
-
readonly 'background-subtle': "#2C2A28";
|
|
223
|
-
readonly 'background-frame': "#100D0A";
|
|
224
|
-
readonly 'border-prominent': "#424140";
|
|
225
|
-
readonly 'border-focus': "#828DF8";
|
|
226
|
-
readonly 'border-input': "#5A5958";
|
|
227
|
-
readonly 'border-input-hover': "#72716F";
|
|
228
|
-
readonly 'border-input-focus': "#828DF8";
|
|
229
|
-
readonly 'border-input-error': "#E05254";
|
|
230
|
-
readonly 'hairline-subtle': "rgba(255, 255, 255, 0.10)";
|
|
231
|
-
readonly 'hairline-default': "rgba(255, 255, 255, 0.15)";
|
|
232
|
-
readonly 'hairline-strong': "rgba(255, 255, 255, 0.22)";
|
|
233
|
-
readonly 'interactive-hover': "rgba(255, 255, 255, 0.04)";
|
|
234
|
-
readonly 'interactive-focus': "rgba(255, 255, 255, 0.12)";
|
|
235
|
-
readonly 'interactive-active': "rgba(255, 255, 255, 0.16)";
|
|
236
|
-
readonly 'interactive-selected': "rgba(255, 255, 255, 0.08)";
|
|
237
|
-
readonly 'interactive-disabled': "rgba(255, 255, 255, 0.12)";
|
|
238
|
-
readonly 'interactive-disabled-text': "rgba(255, 255, 255, 0.26)";
|
|
239
|
-
readonly divider: "rgba(255, 255, 255, 0.09)";
|
|
240
|
-
readonly 'avatar-background': "#5A5958";
|
|
241
|
-
readonly 'avatar-text': "#FFFFFF";
|
|
242
|
-
};
|
|
243
|
-
declare const semanticTypography: {
|
|
244
|
-
readonly h1: {
|
|
245
|
-
readonly fontFamily: "heading";
|
|
246
|
-
readonly fontSize: "3.5rem";
|
|
247
|
-
readonly fontWeight: 700;
|
|
248
|
-
readonly lineHeight: 1.375;
|
|
249
|
-
};
|
|
250
|
-
readonly h2: {
|
|
251
|
-
readonly fontFamily: "heading";
|
|
252
|
-
readonly fontSize: "3rem";
|
|
253
|
-
readonly fontWeight: 700;
|
|
254
|
-
readonly lineHeight: 1.375;
|
|
255
|
-
};
|
|
256
|
-
readonly h3: {
|
|
257
|
-
readonly fontFamily: "heading";
|
|
258
|
-
readonly fontSize: "2.25rem";
|
|
259
|
-
readonly fontWeight: 700;
|
|
260
|
-
readonly lineHeight: 1.375;
|
|
261
|
-
};
|
|
262
|
-
readonly h4: {
|
|
263
|
-
readonly fontFamily: "heading";
|
|
264
|
-
readonly fontSize: "2rem";
|
|
265
|
-
readonly fontWeight: 700;
|
|
266
|
-
readonly lineHeight: 1.375;
|
|
267
|
-
};
|
|
268
|
-
readonly h5: {
|
|
269
|
-
readonly fontFamily: "heading";
|
|
270
|
-
readonly fontSize: "1.5rem";
|
|
271
|
-
readonly fontWeight: 600;
|
|
272
|
-
readonly lineHeight: 1.375;
|
|
273
|
-
};
|
|
274
|
-
readonly h6: {
|
|
275
|
-
readonly fontFamily: "heading";
|
|
276
|
-
readonly fontSize: "1.125rem";
|
|
277
|
-
readonly fontWeight: 600;
|
|
278
|
-
readonly lineHeight: 1.375;
|
|
279
|
-
};
|
|
280
|
-
readonly body1: {
|
|
281
|
-
readonly fontFamily: "body";
|
|
282
|
-
readonly fontSize: "1rem";
|
|
283
|
-
readonly fontWeight: 400;
|
|
284
|
-
readonly lineHeight: 1.5;
|
|
285
|
-
};
|
|
286
|
-
readonly body2: {
|
|
287
|
-
readonly fontFamily: "body";
|
|
288
|
-
readonly fontSize: "0.875rem";
|
|
289
|
-
readonly fontWeight: 400;
|
|
290
|
-
readonly lineHeight: 1.57;
|
|
291
|
-
};
|
|
292
|
-
readonly subtitle1: {
|
|
293
|
-
readonly fontFamily: "body";
|
|
294
|
-
readonly fontSize: "1rem";
|
|
295
|
-
readonly fontWeight: 500;
|
|
296
|
-
readonly lineHeight: 1.75;
|
|
297
|
-
};
|
|
298
|
-
readonly subtitle2: {
|
|
299
|
-
readonly fontFamily: "body";
|
|
300
|
-
readonly fontSize: "0.875rem";
|
|
301
|
-
readonly fontWeight: 500;
|
|
302
|
-
readonly lineHeight: 1.57;
|
|
303
|
-
};
|
|
304
|
-
readonly caption: {
|
|
305
|
-
readonly fontFamily: "body";
|
|
306
|
-
readonly fontSize: "0.75rem";
|
|
307
|
-
readonly fontWeight: 400;
|
|
308
|
-
readonly lineHeight: 1.66;
|
|
309
|
-
};
|
|
310
|
-
readonly overline: {
|
|
311
|
-
readonly fontFamily: "body";
|
|
312
|
-
readonly fontSize: "0.75rem";
|
|
313
|
-
readonly fontWeight: 600;
|
|
314
|
-
readonly lineHeight: 2.5;
|
|
315
|
-
readonly letterSpacing: "0.5px";
|
|
316
|
-
readonly textTransform: "uppercase";
|
|
317
|
-
};
|
|
318
|
-
readonly button: {
|
|
319
|
-
readonly fontFamily: "sans";
|
|
320
|
-
readonly fontSize: "0.875rem";
|
|
321
|
-
readonly fontWeight: 600;
|
|
322
|
-
readonly lineHeight: 1.75;
|
|
323
|
-
};
|
|
324
|
-
};
|
|
325
|
-
declare const buttonSizes: {
|
|
326
|
-
readonly sm: {
|
|
327
|
-
readonly paddingX: "16px";
|
|
328
|
-
readonly paddingY: "6px";
|
|
329
|
-
readonly fontSize: "0.875rem";
|
|
330
|
-
};
|
|
331
|
-
readonly md: {
|
|
332
|
-
readonly paddingX: "20px";
|
|
333
|
-
readonly paddingY: "8px";
|
|
334
|
-
readonly fontSize: "0.875rem";
|
|
335
|
-
};
|
|
336
|
-
readonly lg: {
|
|
337
|
-
readonly paddingX: "24px";
|
|
338
|
-
readonly paddingY: "11px";
|
|
339
|
-
readonly fontSize: "1rem";
|
|
340
|
-
};
|
|
341
|
-
};
|
|
342
|
-
type ThemeMode = 'light' | 'dark';
|
|
343
|
-
declare function getSemanticColors(mode: ThemeMode): {
|
|
344
|
-
readonly 'brand-primary': "#FF7900";
|
|
345
|
-
readonly 'brand-primary-light': "#FFA063";
|
|
346
|
-
readonly 'brand-primary-dark': "#DA5F00";
|
|
347
|
-
readonly 'brand-primary-subtle': "rgba(255, 121, 0, 0.08)";
|
|
348
|
-
readonly 'brand-primary-hover': "#DA5F00";
|
|
349
|
-
readonly 'brand-primary-active': "#B94A00";
|
|
350
|
-
readonly 'brand-secondary': "#307B9B";
|
|
351
|
-
readonly 'brand-secondary-light': "#2697B7";
|
|
352
|
-
readonly 'brand-secondary-dark': "#2A617F";
|
|
353
|
-
readonly 'brand-secondary-subtle': "rgba(48, 123, 155, 0.08)";
|
|
354
|
-
readonly 'brand-secondary-hover': "#2A617F";
|
|
355
|
-
readonly 'brand-secondary-active': "#22465F";
|
|
356
|
-
readonly 'on-brand-primary': "#FFFFFF";
|
|
357
|
-
readonly 'on-brand-secondary': "#FFFFFF";
|
|
358
|
-
readonly 'status-success': "#2ED573";
|
|
359
|
-
readonly 'status-success-light': "#58F69E";
|
|
360
|
-
readonly 'status-success-dark': "#298732";
|
|
361
|
-
readonly 'status-success-subtle': "#E3FFEE";
|
|
362
|
-
readonly 'status-live': "#2ED573";
|
|
363
|
-
readonly 'status-live-muted': "#22A444";
|
|
364
|
-
readonly 'status-error': "#D14343";
|
|
365
|
-
readonly 'status-error-light': "#E05254";
|
|
366
|
-
readonly 'status-error-dark': "#A4221C";
|
|
367
|
-
readonly 'status-error-subtle': "#FFF4F4";
|
|
368
|
-
readonly 'status-error-vivid': "#D14343";
|
|
369
|
-
readonly 'status-error-vivid-light': "#E05254";
|
|
370
|
-
readonly 'status-error-vivid-dark': "#A4221C";
|
|
371
|
-
readonly 'status-error-vivid-subtle': "rgba(255, 71, 87, 0.12)";
|
|
372
|
-
readonly 'status-warning': "#F9B415";
|
|
373
|
-
readonly 'status-warning-light': "#FFD352";
|
|
374
|
-
readonly 'status-warning-dark': "#C27400";
|
|
375
|
-
readonly 'status-warning-subtle': "#FFF7DD";
|
|
376
|
-
readonly 'status-info': "#2196F3";
|
|
377
|
-
readonly 'status-info-light': "#78C2FF";
|
|
378
|
-
readonly 'status-info-dark': "#1072CB";
|
|
379
|
-
readonly 'status-info-subtle': "#EFF8FF";
|
|
380
|
-
readonly 'on-status-success': "#FFFFFF";
|
|
381
|
-
readonly 'on-status-error': "#FFFFFF";
|
|
382
|
-
readonly 'on-status-warning': "#FFFFFF";
|
|
383
|
-
readonly 'on-status-info': "#FFFFFF";
|
|
384
|
-
readonly 'result-improve': "#4caf50";
|
|
385
|
-
readonly 'result-improve-light': "rgba(76, 175, 80, 0.12)";
|
|
386
|
-
readonly 'result-improve-dark': "#248a24";
|
|
387
|
-
readonly 'result-degrade': "#ef5350";
|
|
388
|
-
readonly 'result-degrade-light': "rgba(239, 83, 80, 0.12)";
|
|
389
|
-
readonly 'result-degrade-dark': "#b30000";
|
|
390
|
-
readonly 'result-inconclusive': "#9E9A97";
|
|
391
|
-
readonly 'result-inconclusive-light': "rgba(158, 154, 151, 0.12)";
|
|
392
|
-
readonly 'result-neutral': "#72716F";
|
|
393
|
-
readonly 'on-result-improve': "#FFFFFF";
|
|
394
|
-
readonly 'on-result-degrade': "#FFFFFF";
|
|
395
|
-
readonly 'on-result-inconclusive': "#FFFFFF";
|
|
396
|
-
readonly 'data-1': "#1965B0";
|
|
397
|
-
readonly 'data-2': "#4EB265";
|
|
398
|
-
readonly 'data-3': "#F7F056";
|
|
399
|
-
readonly 'data-4': "#DC050C";
|
|
400
|
-
readonly 'data-5': "#882E72";
|
|
401
|
-
readonly 'data-6': "#F4A736";
|
|
402
|
-
readonly 'data-7': "#7BAFDE";
|
|
403
|
-
readonly 'data-8': "#90C987";
|
|
404
|
-
readonly 'data-9': "#CAACCB";
|
|
405
|
-
readonly 'data-10': "#EE8026";
|
|
406
|
-
readonly 'text-primary': "#121828";
|
|
407
|
-
readonly 'text-secondary': "#65748B";
|
|
408
|
-
readonly 'text-tertiary': "#A29F9D";
|
|
409
|
-
readonly 'text-disabled': "rgba(55, 65, 81, 0.48)";
|
|
410
|
-
readonly 'text-inverse': "#FFFFFF";
|
|
411
|
-
readonly 'text-link': "#1072CB";
|
|
412
|
-
readonly 'text-link-hover': "#135AA8";
|
|
413
|
-
readonly 'surface-base': "#FFFFFF";
|
|
414
|
-
readonly 'surface-elevated': "#F9F6F3";
|
|
415
|
-
readonly 'surface-raised': "#EDEAE7";
|
|
416
|
-
readonly 'surface-overlay': "#FFFFFF";
|
|
417
|
-
readonly 'surface-input': "#F9F6F3";
|
|
418
|
-
readonly 'background-base': "#EBEBEB";
|
|
419
|
-
readonly 'background-default': "#FFFFFF";
|
|
420
|
-
readonly 'background-subtle': "#F9F6F3";
|
|
421
|
-
readonly 'background-frame': "#A29F9D";
|
|
422
|
-
readonly 'border-prominent': "#A29F9D";
|
|
423
|
-
readonly 'border-focus': "#1072CB";
|
|
424
|
-
readonly 'border-input': "#D4D1CE";
|
|
425
|
-
readonly 'border-input-hover': "#A29F9D";
|
|
426
|
-
readonly 'border-input-focus': "#1072CB";
|
|
427
|
-
readonly 'border-input-error': "#D14343";
|
|
428
|
-
readonly 'hairline-subtle': "rgba(0, 0, 0, 0.06)";
|
|
429
|
-
readonly 'hairline-default': "rgba(0, 0, 0, 0.09)";
|
|
430
|
-
readonly 'hairline-strong': "rgba(0, 0, 0, 0.14)";
|
|
431
|
-
readonly 'interactive-hover': "rgba(55, 65, 81, 0.04)";
|
|
432
|
-
readonly 'interactive-focus': "rgba(55, 65, 81, 0.12)";
|
|
433
|
-
readonly 'interactive-active': "rgba(55, 65, 81, 0.16)";
|
|
434
|
-
readonly 'interactive-selected': "rgba(55, 65, 81, 0.08)";
|
|
435
|
-
readonly 'interactive-disabled': "rgba(55, 65, 81, 0.12)";
|
|
436
|
-
readonly 'interactive-disabled-text': "rgba(55, 65, 81, 0.26)";
|
|
437
|
-
readonly divider: "#E8E9EB";
|
|
438
|
-
readonly 'avatar-background': "#72716F";
|
|
439
|
-
readonly 'avatar-text': "#FFFFFF";
|
|
440
|
-
} | {
|
|
441
|
-
readonly 'brand-primary': "#FF7900";
|
|
442
|
-
readonly 'brand-primary-light': "#FFA063";
|
|
443
|
-
readonly 'brand-primary-dark': "#DA5F00";
|
|
444
|
-
readonly 'brand-primary-subtle': "rgba(255, 121, 0, 0.12)";
|
|
445
|
-
readonly 'brand-primary-hover': "#FFA063";
|
|
446
|
-
readonly 'brand-primary-active': "#FFC7A2";
|
|
447
|
-
readonly 'brand-secondary': "#307B9B";
|
|
448
|
-
readonly 'brand-secondary-light': "#2697B7";
|
|
449
|
-
readonly 'brand-secondary-dark': "#2A617F";
|
|
450
|
-
readonly 'brand-secondary-subtle': "rgba(48, 123, 155, 0.12)";
|
|
451
|
-
readonly 'brand-secondary-hover': "#2697B7";
|
|
452
|
-
readonly 'brand-secondary-active': "#01B5D1";
|
|
453
|
-
readonly 'on-brand-primary': "#FFFFFF";
|
|
454
|
-
readonly 'on-brand-secondary': "#FFFFFF";
|
|
455
|
-
readonly 'status-success': "#2ED573";
|
|
456
|
-
readonly 'status-success-light': "#58F69E";
|
|
457
|
-
readonly 'status-success-dark': "#298732";
|
|
458
|
-
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
459
|
-
readonly 'status-live': "#2ED573";
|
|
460
|
-
readonly 'status-live-muted': "#22A444";
|
|
461
|
-
readonly 'status-error': "#D14343";
|
|
462
|
-
readonly 'status-error-light': "#E05254";
|
|
463
|
-
readonly 'status-error-dark': "#A4221C";
|
|
464
|
-
readonly 'status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
465
|
-
readonly 'status-error-vivid': "#D14343";
|
|
466
|
-
readonly 'status-error-vivid-light': "#E05254";
|
|
467
|
-
readonly 'status-error-vivid-dark': "#A4221C";
|
|
468
|
-
readonly 'status-error-vivid-subtle': "rgba(255, 71, 87, 0.12)";
|
|
469
|
-
readonly 'status-warning': "#F9B415";
|
|
470
|
-
readonly 'status-warning-light': "#FFD352";
|
|
471
|
-
readonly 'status-warning-dark': "#C27400";
|
|
472
|
-
readonly 'status-warning-subtle': "rgba(249, 180, 21, 0.12)";
|
|
473
|
-
readonly 'status-info': "#2196F3";
|
|
474
|
-
readonly 'status-info-light': "#78C2FF";
|
|
475
|
-
readonly 'status-info-dark': "#1072CB";
|
|
476
|
-
readonly 'status-info-subtle': "rgba(33, 150, 243, 0.12)";
|
|
477
|
-
readonly 'on-status-success': "#FFFFFF";
|
|
478
|
-
readonly 'on-status-error': "#FFFFFF";
|
|
479
|
-
readonly 'on-status-warning': "#FFFFFF";
|
|
480
|
-
readonly 'on-status-info': "#FFFFFF";
|
|
481
|
-
readonly 'result-improve': "#4caf50";
|
|
482
|
-
readonly 'result-improve-light': "rgba(76, 175, 80, 0.16)";
|
|
483
|
-
readonly 'result-improve-dark': "#248a24";
|
|
484
|
-
readonly 'result-degrade': "#ef5350";
|
|
485
|
-
readonly 'result-degrade-light': "rgba(239, 83, 80, 0.16)";
|
|
486
|
-
readonly 'result-degrade-dark': "#b30000";
|
|
487
|
-
readonly 'result-inconclusive': "#9E9A97";
|
|
488
|
-
readonly 'result-inconclusive-light': "rgba(158, 154, 151, 0.16)";
|
|
489
|
-
readonly 'result-neutral': "#A29F9D";
|
|
490
|
-
readonly 'on-result-improve': "#FFFFFF";
|
|
491
|
-
readonly 'on-result-degrade': "#FFFFFF";
|
|
492
|
-
readonly 'on-result-inconclusive': "#FFFFFF";
|
|
493
|
-
readonly 'data-1': "#1965B0";
|
|
494
|
-
readonly 'data-2': "#4EB265";
|
|
495
|
-
readonly 'data-3': "#F7F056";
|
|
496
|
-
readonly 'data-4': "#DC050C";
|
|
497
|
-
readonly 'data-5': "#882E72";
|
|
498
|
-
readonly 'data-6': "#F4A736";
|
|
499
|
-
readonly 'data-7': "#7BAFDE";
|
|
500
|
-
readonly 'data-8': "#90C987";
|
|
501
|
-
readonly 'data-9': "#CAACCB";
|
|
502
|
-
readonly 'data-10': "#EE8026";
|
|
503
|
-
readonly 'text-primary': "#F9F6F3";
|
|
504
|
-
readonly 'text-secondary': "#A29F9D";
|
|
505
|
-
readonly 'text-tertiary': "#888684";
|
|
506
|
-
readonly 'text-disabled': "rgba(255, 255, 255, 0.38)";
|
|
507
|
-
readonly 'text-inverse': "#1C1916";
|
|
508
|
-
readonly 'text-link': "#828DF8";
|
|
509
|
-
readonly 'text-link-hover': "#3CA8FF";
|
|
510
|
-
readonly 'surface-base': "#252321";
|
|
511
|
-
readonly 'surface-elevated': "#2C2A28";
|
|
512
|
-
readonly 'surface-raised': "#31302F";
|
|
513
|
-
readonly 'surface-overlay': "#373635";
|
|
514
|
-
readonly 'surface-input': "#2C2A28";
|
|
515
|
-
readonly 'background-base': "#1C1916";
|
|
516
|
-
readonly 'background-default': "#252321";
|
|
517
|
-
readonly 'background-subtle': "#2C2A28";
|
|
518
|
-
readonly 'background-frame': "#100D0A";
|
|
519
|
-
readonly 'border-prominent': "#424140";
|
|
520
|
-
readonly 'border-focus': "#828DF8";
|
|
521
|
-
readonly 'border-input': "#5A5958";
|
|
522
|
-
readonly 'border-input-hover': "#72716F";
|
|
523
|
-
readonly 'border-input-focus': "#828DF8";
|
|
524
|
-
readonly 'border-input-error': "#E05254";
|
|
525
|
-
readonly 'hairline-subtle': "rgba(255, 255, 255, 0.10)";
|
|
526
|
-
readonly 'hairline-default': "rgba(255, 255, 255, 0.15)";
|
|
527
|
-
readonly 'hairline-strong': "rgba(255, 255, 255, 0.22)";
|
|
528
|
-
readonly 'interactive-hover': "rgba(255, 255, 255, 0.04)";
|
|
529
|
-
readonly 'interactive-focus': "rgba(255, 255, 255, 0.12)";
|
|
530
|
-
readonly 'interactive-active': "rgba(255, 255, 255, 0.16)";
|
|
531
|
-
readonly 'interactive-selected': "rgba(255, 255, 255, 0.08)";
|
|
532
|
-
readonly 'interactive-disabled': "rgba(255, 255, 255, 0.12)";
|
|
533
|
-
readonly 'interactive-disabled-text': "rgba(255, 255, 255, 0.26)";
|
|
534
|
-
readonly divider: "rgba(255, 255, 255, 0.09)";
|
|
535
|
-
readonly 'avatar-background': "#5A5958";
|
|
536
|
-
readonly 'avatar-text': "#FFFFFF";
|
|
537
|
-
};
|
|
538
|
-
|
|
539
5
|
/**
|
|
540
6
|
* Elevation System
|
|
541
7
|
*
|
|
@@ -690,373 +156,6 @@ type GlowIntensity = 'subtle' | 'medium' | 'strong';
|
|
|
690
156
|
*/
|
|
691
157
|
declare function getGlowShadow(color: string, intensity?: GlowIntensity): ViewStyle;
|
|
692
158
|
|
|
693
|
-
/**
|
|
694
|
-
* Primitive Design Tokens
|
|
695
|
-
*
|
|
696
|
-
* Raw values with no semantic meaning. These are the foundation of the design system
|
|
697
|
-
* and should rarely be used directly in components. Use semantic tokens instead.
|
|
698
|
-
*/
|
|
699
|
-
/**
|
|
700
|
-
* Absolute colour keywords.
|
|
701
|
-
*
|
|
702
|
-
* This used to hold five scales — `blue`, `red`, `redVivid`, `neutral` and
|
|
703
|
-
* `charcoal`. All five are gone (TD-07.14): the greys folded into `greyRamp`
|
|
704
|
-
* below and the chromatics into the OKLCH `primitiveRamps`. What is left has no
|
|
705
|
-
* scale because these three are not colours you tune, they are keywords.
|
|
706
|
-
*/
|
|
707
|
-
declare const primitiveColors: {
|
|
708
|
-
readonly white: "#FFFFFF";
|
|
709
|
-
readonly black: "#000000";
|
|
710
|
-
readonly transparent: "transparent";
|
|
711
|
-
};
|
|
712
|
-
/**
|
|
713
|
-
* Unified warm-neutral grey ramp (TD-07.14)
|
|
714
|
-
*
|
|
715
|
-
* The ONE achromatic scale. Regenerate with `scripts/generate-grey-ramp.mjs` —
|
|
716
|
-
* preserve the generator, not just the hexes.
|
|
717
|
-
*
|
|
718
|
-
* The surface planes ARE steps here rather than a parallel object: `850` is
|
|
719
|
-
* overlay, `975` is the bezel. That is the whole point of the ramp. `grey`,
|
|
720
|
-
* `neutral`, `surfaceRampDark` and `backgroundFrameDark` all resolve into it,
|
|
721
|
-
* which is why every plane step below is byte-identical to the value that
|
|
722
|
-
* shipped in v0.10.0 — the surfaces do not move, only their names.
|
|
723
|
-
*
|
|
724
|
-
* TWO THINGS ABOUT THE NUMBERING, both deliberate and both previously re-derived
|
|
725
|
-
* from scratch more than once because they were never written down:
|
|
726
|
-
*
|
|
727
|
-
* 1. `975` sits BELOW the standard grid. `canonL` — the median L* of the seven
|
|
728
|
-
* chromatic `primitiveRamps` at each step — ends at L*10.3, which is step
|
|
729
|
-
* `950`. The bezel is L*3.8, darker than the grid's last rung, so there is
|
|
730
|
-
* simply no step number left for it and `975` extends past the end.
|
|
731
|
-
* 2. `850`/`875` are quarter-steps because overlay/raised/elevated are only
|
|
732
|
-
* ~2.7 L* apart and all three collide on `900` at normal resolution. `800`
|
|
733
|
-
* is a generated bridge between `700` (L*37.9) and overlay (L*22.7) so the
|
|
734
|
-
* spacing stays even across the join.
|
|
735
|
-
*
|
|
736
|
-
* There is no `inset`. It was retired, not renamed: at ΔE 1.10 from `975` it was
|
|
737
|
-
* an imperceptible duplicate of the frame, which is exactly why `<Surface pressed>`
|
|
738
|
-
* (surface − 1) kept collapsing into it. `975` is the floor.
|
|
739
|
-
*
|
|
740
|
-
* Spec, generator and the rejected v1/v2 cuts:
|
|
741
|
-
* coordination/design-explorations/foundations/warm-grey-ramp/
|
|
742
|
-
*/
|
|
743
|
-
declare const greyRamp: {
|
|
744
|
-
readonly 50: "#F9F6F3";
|
|
745
|
-
readonly 100: "#EDEAE7";
|
|
746
|
-
readonly 200: "#D4D1CE";
|
|
747
|
-
readonly 300: "#BDBAB7";
|
|
748
|
-
readonly 400: "#A29F9D";
|
|
749
|
-
readonly 500: "#888684";
|
|
750
|
-
readonly 600: "#72716F";
|
|
751
|
-
readonly 700: "#5A5958";
|
|
752
|
-
readonly 800: "#424140";
|
|
753
|
-
readonly 850: "#373635";
|
|
754
|
-
readonly 875: "#31302F";
|
|
755
|
-
readonly 900: "#2C2A28";
|
|
756
|
-
readonly 925: "#252321";
|
|
757
|
-
readonly 950: "#1C1916";
|
|
758
|
-
readonly 975: "#100D0A";
|
|
759
|
-
};
|
|
760
|
-
/**
|
|
761
|
-
* The surface planes, as ramp steps — the mapping `<Surface level>` resolves through.
|
|
762
|
-
*
|
|
763
|
-
* Ordered darkest -> lightest, which is the order `pressedLevel()` walks.
|
|
764
|
-
*/
|
|
765
|
-
declare const SURFACE_PLANE_STEPS: {
|
|
766
|
-
readonly frame: 975;
|
|
767
|
-
readonly background: 950;
|
|
768
|
-
readonly base: 925;
|
|
769
|
-
readonly elevated: 900;
|
|
770
|
-
readonly raised: 875;
|
|
771
|
-
readonly overlay: 850;
|
|
772
|
-
};
|
|
773
|
-
/**
|
|
774
|
-
* Derived tonal ramps (TD-05.09 color foundations)
|
|
775
|
-
*
|
|
776
|
-
* Seven OKLCH-generated hue ramps, 11 perceptual lightness steps each (50 -> 950).
|
|
777
|
-
* Built with hue-torsion + a chroma arc, anchored through existing brand/semantic
|
|
778
|
-
* hexes. `pin` marks the step each ramp flows through its anchor.
|
|
779
|
-
* This is the single source of truth for chromatic hexes — the categorical palette
|
|
780
|
-
* below references these steps rather than duplicating values.
|
|
781
|
-
* See coordination/design-explorations/foundations.
|
|
782
|
-
*/
|
|
783
|
-
declare const primitiveRamps: {
|
|
784
|
-
readonly red: {
|
|
785
|
-
readonly 50: "#FFF4F4";
|
|
786
|
-
readonly 100: "#FFE3E5";
|
|
787
|
-
readonly 200: "#FFC2C5";
|
|
788
|
-
readonly 300: "#FF9A9D";
|
|
789
|
-
readonly 400: "#F77175";
|
|
790
|
-
readonly 500: "#E05254";
|
|
791
|
-
readonly 600: "#D14343";
|
|
792
|
-
readonly 700: "#A4221C";
|
|
793
|
-
readonly 800: "#7E1002";
|
|
794
|
-
readonly 900: "#5A0900";
|
|
795
|
-
readonly 950: "#3D0400";
|
|
796
|
-
};
|
|
797
|
-
readonly orange: {
|
|
798
|
-
readonly 50: "#FFF5ED";
|
|
799
|
-
readonly 100: "#FFE6D4";
|
|
800
|
-
readonly 200: "#FFC7A2";
|
|
801
|
-
readonly 300: "#FFA063";
|
|
802
|
-
readonly 400: "#FF7900";
|
|
803
|
-
readonly 500: "#DA5F00";
|
|
804
|
-
readonly 600: "#B94A00";
|
|
805
|
-
readonly 700: "#983804";
|
|
806
|
-
readonly 800: "#6F290F";
|
|
807
|
-
readonly 900: "#4E1C0C";
|
|
808
|
-
readonly 950: "#331107";
|
|
809
|
-
};
|
|
810
|
-
readonly amber: {
|
|
811
|
-
readonly 50: "#FFF7DD";
|
|
812
|
-
readonly 100: "#FFEAA9";
|
|
813
|
-
readonly 200: "#FFD352";
|
|
814
|
-
readonly 300: "#F9B415";
|
|
815
|
-
readonly 400: "#E08C00";
|
|
816
|
-
readonly 500: "#C27400";
|
|
817
|
-
readonly 600: "#A45E00";
|
|
818
|
-
readonly 700: "#814D14";
|
|
819
|
-
readonly 800: "#5B3A1A";
|
|
820
|
-
readonly 900: "#442503";
|
|
821
|
-
readonly 950: "#301500";
|
|
822
|
-
};
|
|
823
|
-
readonly green: {
|
|
824
|
-
readonly 50: "#E3FFEE";
|
|
825
|
-
readonly 100: "#B5FFD2";
|
|
826
|
-
readonly 200: "#58F69E";
|
|
827
|
-
readonly 300: "#2ED573";
|
|
828
|
-
readonly 400: "#21C05D";
|
|
829
|
-
readonly 500: "#22A444";
|
|
830
|
-
readonly 600: "#298732";
|
|
831
|
-
readonly 700: "#2B6B25";
|
|
832
|
-
readonly 800: "#264D1C";
|
|
833
|
-
readonly 900: "#1B3515";
|
|
834
|
-
readonly 950: "#11220D";
|
|
835
|
-
};
|
|
836
|
-
readonly cyan: {
|
|
837
|
-
readonly 50: "#E6FBFF";
|
|
838
|
-
readonly 100: "#C2F6FF";
|
|
839
|
-
readonly 200: "#62EAFF";
|
|
840
|
-
readonly 300: "#22D3EE";
|
|
841
|
-
readonly 400: "#01B5D1";
|
|
842
|
-
readonly 500: "#2697B7";
|
|
843
|
-
readonly 600: "#307B9B";
|
|
844
|
-
readonly 700: "#2A617F";
|
|
845
|
-
readonly 800: "#22465F";
|
|
846
|
-
readonly 900: "#0B3149";
|
|
847
|
-
readonly 950: "#001F36";
|
|
848
|
-
};
|
|
849
|
-
readonly blue: {
|
|
850
|
-
readonly 50: "#EFF8FF";
|
|
851
|
-
readonly 100: "#D9EFFF";
|
|
852
|
-
readonly 200: "#ACDBFF";
|
|
853
|
-
readonly 300: "#78C2FF";
|
|
854
|
-
readonly 400: "#3CA8FF";
|
|
855
|
-
readonly 500: "#2196F3";
|
|
856
|
-
readonly 600: "#1072CB";
|
|
857
|
-
readonly 700: "#135AA8";
|
|
858
|
-
readonly 800: "#14407E";
|
|
859
|
-
readonly 900: "#112C5A";
|
|
860
|
-
readonly 950: "#091B3C";
|
|
861
|
-
};
|
|
862
|
-
readonly magenta: {
|
|
863
|
-
readonly 50: "#FFF3F9";
|
|
864
|
-
readonly 100: "#FFE2F1";
|
|
865
|
-
readonly 200: "#FFBDE2";
|
|
866
|
-
readonly 300: "#FF8FD5";
|
|
867
|
-
readonly 400: "#ED69C3";
|
|
868
|
-
readonly 500: "#D548AF";
|
|
869
|
-
readonly 600: "#BA2996";
|
|
870
|
-
readonly 700: "#9C0D7A";
|
|
871
|
-
readonly 800: "#77005A";
|
|
872
|
-
readonly 900: "#56003F";
|
|
873
|
-
readonly 950: "#3B0029";
|
|
874
|
-
};
|
|
875
|
-
};
|
|
876
|
-
/**
|
|
877
|
-
* Categorical (qualitative) palette — an ordered, CVD-safe series expressed as
|
|
878
|
-
* references into {@link primitiveRamps} (one source of truth; the palette moves
|
|
879
|
-
* with the ramps).
|
|
880
|
-
*
|
|
881
|
-
* Design: a single canonical hue order (blue, magenta, red, orange, green, cyan,
|
|
882
|
-
* amber), with steps chosen vivid-midtone-first and fanned lighter/darker as the
|
|
883
|
-
* series grows to preserve separation. The sequence is nested-stable — a chart
|
|
884
|
-
* with N series uses the first N colors, and the series index is stable as N
|
|
885
|
-
* changes. Colorblind-safe worst-case deuteranopia/protanopia floor 8 holds
|
|
886
|
-
* through {@link CATEGORICAL_CVD_SAFE_MAX} colors; the 7th is an extended color
|
|
887
|
-
* that should be paired with a legend or other secondary encoding.
|
|
888
|
-
*
|
|
889
|
-
* Two variants: `default` (vivid, sits on neutral/light surfaces, legible under
|
|
890
|
-
* black text) and `dark` (deeper shades legible under white text on a fill). A
|
|
891
|
-
* separate "light" variant was dropped — the vivid `default` picks already clear
|
|
892
|
-
* black-text contrast, so it doubles as the light-context palette.
|
|
893
|
-
*/
|
|
894
|
-
declare const categoricalPalette: {
|
|
895
|
-
readonly default: readonly ["#2196F3", "#D548AF", "#E05254", "#FF7900", "#2ED573", "#22D3EE", "#A45E00"];
|
|
896
|
-
readonly dark: readonly ["#1072CB", "#BA2996", "#E05254", "#B94A00", "#264D1C", "#22465F", "#C27400"];
|
|
897
|
-
};
|
|
898
|
-
/** Largest series count that holds the CVD floor without a legend. */
|
|
899
|
-
declare const CATEGORICAL_CVD_SAFE_MAX = 6;
|
|
900
|
-
/**
|
|
901
|
-
* Categorical palette variant.
|
|
902
|
-
* - `default` : vivid; neutral/light surfaces, legible under black text
|
|
903
|
-
* - `dark` : deeper shades, legible under white text on a filled swatch
|
|
904
|
-
*/
|
|
905
|
-
type CategoricalVariant = keyof typeof categoricalPalette;
|
|
906
|
-
/**
|
|
907
|
-
* Get a color from the ordered categorical palette by series index.
|
|
908
|
-
* The palette is nested-stable, so the color for a given index does not change
|
|
909
|
-
* with the total series count; `index` simply wraps past the end.
|
|
910
|
-
*
|
|
911
|
-
* @param index - 0-based series index (wraps past the end)
|
|
912
|
-
* @param variant - `default` (black-text / light surfaces) or `dark` (white text)
|
|
913
|
-
* @returns The hex color string
|
|
914
|
-
*/
|
|
915
|
-
declare function getCategoricalColor(index: number, variant?: CategoricalVariant): string;
|
|
916
|
-
/**
|
|
917
|
-
* Diverging status scale (BodyMap training-status: under → optimal → over) as
|
|
918
|
-
* references into {@link primitiveRamps}. A true diverging shape — `optimal` is
|
|
919
|
-
* the lightest center, the extremes go darker — so the signal reads in lightness
|
|
920
|
-
* (colorblind-robust; worst-case deut/protanopia min ΔE ~10.9) and the direction
|
|
921
|
-
* reads in the blue↔red axis (the CVD-safe hue pair).
|
|
922
|
-
*
|
|
923
|
-
* Tuned so every stop is dark enough for the fill yet light enough that BLACK
|
|
924
|
-
* text clears 4.5:1 on all five — no per-cell white/black flipping. The value
|
|
925
|
-
* valley is symmetric: the two mid-arms (maintenance / approaching) sit at equal
|
|
926
|
-
* lightness (both ~0.53 relative luminance), the ends darker.
|
|
927
|
-
*/
|
|
928
|
-
declare const divergingScale: readonly ["#2196F3", "#22D3EE", "#58F69E", "#F9B415", "#D14343"];
|
|
929
|
-
/**
|
|
930
|
-
* Sequential "effort" scale (low → high intensity: green → yellow → orange → red)
|
|
931
|
-
* as references into {@link primitiveRamps}. A 6-stop ordinal palette; the
|
|
932
|
-
* velocity/RPE strip sub-samples it. Every adjacent pair clears the CVD floor
|
|
933
|
-
* (min deut/protan ΔE ≥ 4.5), and within that the hue walk is kept smooth —
|
|
934
|
-
* the amber-200 → amber-300 → orange-400 run steps the yellow→orange transition
|
|
935
|
-
* gradually rather than lurching. Order encodes magnitude, so it tolerates the
|
|
936
|
-
* green↔red CVD pair. Stops 0–3 take black text; the dark reds take white.
|
|
937
|
-
*/
|
|
938
|
-
declare const sequentialEffort: readonly ["#2ED573", "#FFD352", "#F9B415", "#FF7900", "#D14343", "#A4221C"];
|
|
939
|
-
/**
|
|
940
|
-
* Best-contrast text color (black or white) for a solid fill — for labels sitting
|
|
941
|
-
* on categorical/diverging/effort swatches. Uses the WCAG relative-luminance ratio.
|
|
942
|
-
*/
|
|
943
|
-
declare function bestTextColor(hex: string): '#000000' | '#FFFFFF';
|
|
944
|
-
/**
|
|
945
|
-
* Discrete rainbow palette for data visualization
|
|
946
|
-
* Based on Paul Tol's color schemes: https://personal.sron.nl/~pault/#fig:scheme_rainbow_discrete
|
|
947
|
-
*/
|
|
948
|
-
declare const discreteRainbow: readonly ["#E8ECFB", "#D9CCE3", "#D1BBD7", "#CAACCB", "#BA8DB4", "#AE76A3", "#AA6F9E", "#994F88", "#882E72", "#1965B0", "#437DBF", "#5289C7", "#6195CF", "#7BAFDE", "#4EB265", "#90C987", "#CAE0AB", "#F7F056", "#F7CB45", "#F6C141", "#F4A736", "#F1932D", "#EE8026", "#E8601C", "#E65518", "#DC050C", "#A5170E", "#72190E", "#42150A"];
|
|
949
|
-
/**
|
|
950
|
-
* Get a color from the discrete rainbow palette for a given index and palette size.
|
|
951
|
-
* Colors are optimized for visual distinction at each palette size.
|
|
952
|
-
*
|
|
953
|
-
* @param index - The index of the color in the series (0-based)
|
|
954
|
-
* @param size - The total number of colors needed (1-23)
|
|
955
|
-
* @returns The hex color string
|
|
956
|
-
*/
|
|
957
|
-
declare function getDiscreteRainbowColor(index: number, size: number): string;
|
|
958
|
-
declare const primitiveTypography: {
|
|
959
|
-
readonly fontFamilies: {
|
|
960
|
-
readonly sans: readonly ["Inter", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", "sans-serif"];
|
|
961
|
-
readonly body: readonly ["Nunito Sans", "sans-serif"];
|
|
962
|
-
readonly heading: readonly ["Space Grotesk", "sans-serif"];
|
|
963
|
-
readonly mono: readonly ["SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", "monospace"];
|
|
964
|
-
};
|
|
965
|
-
readonly fontSizes: {
|
|
966
|
-
readonly xs: "0.75rem";
|
|
967
|
-
readonly sm: "0.875rem";
|
|
968
|
-
readonly base: "1rem";
|
|
969
|
-
readonly lg: "1.125rem";
|
|
970
|
-
readonly xl: "1.5rem";
|
|
971
|
-
readonly '2xl': "2rem";
|
|
972
|
-
readonly '3xl': "2.25rem";
|
|
973
|
-
readonly '4xl': "3rem";
|
|
974
|
-
readonly '5xl': "3.5rem";
|
|
975
|
-
};
|
|
976
|
-
readonly fontWeights: {
|
|
977
|
-
readonly normal: 400;
|
|
978
|
-
readonly medium: 500;
|
|
979
|
-
readonly semibold: 600;
|
|
980
|
-
readonly bold: 700;
|
|
981
|
-
};
|
|
982
|
-
readonly lineHeights: {
|
|
983
|
-
readonly none: 1;
|
|
984
|
-
readonly tight: 1.375;
|
|
985
|
-
readonly snug: 1.5;
|
|
986
|
-
readonly normal: 1.57;
|
|
987
|
-
readonly relaxed: 1.66;
|
|
988
|
-
readonly loose: 1.75;
|
|
989
|
-
};
|
|
990
|
-
readonly letterSpacing: {
|
|
991
|
-
readonly tighter: "-0.05em";
|
|
992
|
-
readonly tight: "-0.025em";
|
|
993
|
-
readonly normal: "0em";
|
|
994
|
-
readonly wide: "0.025em";
|
|
995
|
-
readonly wider: "0.05em";
|
|
996
|
-
readonly widest: "0.5px";
|
|
997
|
-
};
|
|
998
|
-
};
|
|
999
|
-
declare const primitiveSpacing: {
|
|
1000
|
-
readonly 0: "0";
|
|
1001
|
-
readonly px: "1px";
|
|
1002
|
-
readonly 0.5: "0.125rem";
|
|
1003
|
-
readonly 1: "0.25rem";
|
|
1004
|
-
readonly 1.5: "0.375rem";
|
|
1005
|
-
readonly 2: "0.5rem";
|
|
1006
|
-
readonly 2.5: "0.625rem";
|
|
1007
|
-
readonly 3: "0.75rem";
|
|
1008
|
-
readonly 3.5: "0.875rem";
|
|
1009
|
-
readonly 4: "1rem";
|
|
1010
|
-
readonly 5: "1.25rem";
|
|
1011
|
-
readonly 6: "1.5rem";
|
|
1012
|
-
readonly 7: "1.75rem";
|
|
1013
|
-
readonly 8: "2rem";
|
|
1014
|
-
readonly 9: "2.25rem";
|
|
1015
|
-
readonly 10: "2.5rem";
|
|
1016
|
-
readonly 11: "2.75rem";
|
|
1017
|
-
readonly 12: "3rem";
|
|
1018
|
-
readonly 14: "3.5rem";
|
|
1019
|
-
readonly 16: "4rem";
|
|
1020
|
-
readonly 20: "5rem";
|
|
1021
|
-
readonly 24: "6rem";
|
|
1022
|
-
readonly 28: "7rem";
|
|
1023
|
-
readonly 32: "8rem";
|
|
1024
|
-
};
|
|
1025
|
-
declare const primitiveBorderRadius: {
|
|
1026
|
-
readonly none: "0";
|
|
1027
|
-
readonly sm: "4px";
|
|
1028
|
-
readonly DEFAULT: "8px";
|
|
1029
|
-
readonly md: "8px";
|
|
1030
|
-
readonly lg: "12px";
|
|
1031
|
-
readonly xl: "16px";
|
|
1032
|
-
readonly '2xl': "24px";
|
|
1033
|
-
readonly full: "9999px";
|
|
1034
|
-
};
|
|
1035
|
-
declare const primitiveBreakpoints: {
|
|
1036
|
-
readonly xs: 0;
|
|
1037
|
-
readonly sm: 600;
|
|
1038
|
-
readonly md: 1000;
|
|
1039
|
-
readonly lg: 1200;
|
|
1040
|
-
readonly xl: 1920;
|
|
1041
|
-
};
|
|
1042
|
-
declare const primitiveZIndex: {
|
|
1043
|
-
readonly hide: -1;
|
|
1044
|
-
readonly auto: "auto";
|
|
1045
|
-
readonly base: 0;
|
|
1046
|
-
readonly docked: 10;
|
|
1047
|
-
readonly dropdown: 1000;
|
|
1048
|
-
readonly sticky: 1100;
|
|
1049
|
-
readonly drawer: 1100;
|
|
1050
|
-
readonly banner: 1200;
|
|
1051
|
-
readonly appBar: 1200;
|
|
1052
|
-
readonly overlay: 1300;
|
|
1053
|
-
readonly modal: 1400;
|
|
1054
|
-
readonly popover: 1500;
|
|
1055
|
-
readonly skipLink: 1600;
|
|
1056
|
-
readonly toast: 1700;
|
|
1057
|
-
readonly tooltip: 1800;
|
|
1058
|
-
};
|
|
1059
|
-
|
|
1060
159
|
/**
|
|
1061
160
|
* Theme Configuration
|
|
1062
161
|
*
|
|
@@ -1652,8 +751,8 @@ type ThemeConfig = typeof gluestackConfig;
|
|
|
1652
751
|
*
|
|
1653
752
|
* Kept: grain, rim-light, contact shadow.
|
|
1654
753
|
*
|
|
1655
|
-
* See
|
|
1656
|
-
*
|
|
754
|
+
* See sources/design/surface-system-north-star.md §4 and
|
|
755
|
+
* sources/runbooks/VW-99-depth-wall-calibration.md.
|
|
1657
756
|
*/
|
|
1658
757
|
|
|
1659
758
|
/**
|
|
@@ -2016,4 +1115,4 @@ declare const defaultPreset: ThemePreset;
|
|
|
2016
1115
|
*/
|
|
2017
1116
|
declare const audiobookPreset: ThemePreset;
|
|
2018
1117
|
|
|
2019
|
-
export {
|
|
1118
|
+
export { type ComponentType, type CssPropertyEntry, type CssPropertyManifest, type ElevationConfig, type ElevationLevel, FLOATING_ELEVATION_MIN, type GlowIntensity, type GradientStyle, type ManifestValidationResult, PRESSED_ELEVATION_LEVEL, type ShadowIntensity, type ThemeConfig, ThemeMode, type ThemePreset, type ThemePresetColors, type ThemePresetFonts, type ThemePresetRadii, type ThemePresetShadows, ThemeProvider, type ThemeProviderMode, type ThemeProviderProps, type VariantAxes, type VariantOverride, applyThemePreset, audiobookPreset, barPaper, componentElevationRanges, darkThemeCSSVars, darken, defaultPreset, elevationSystem, getBaseSurfaceColor, getElevationConfig, getElevationShadow, getElevationSurface, getGlowShadow, getHoverColors, getPressedRecessShadow, getSemanticColors, getThemeCSSVars, getValidatedElevation, gluestackConfig, grainForTone, grainOpacityForTone, hexToRgb, hsvToRgb, insetWell, isCssPropertyManifest, isDark, lightThemeCSSVars, lighten, linearGradient, paperSheet, resolveColor, rgbToHex, rgbToHsv, surfaceGradient, validateCssPropertyManifest };
|