@gtcx/tokens 0.1.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/dist/index.js ADDED
@@ -0,0 +1,633 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ borderRadiusPrimitives: () => borderRadiusPrimitives,
24
+ breakpointPrimitives: () => breakpointPrimitives,
25
+ colorPrimitives: () => colorPrimitives,
26
+ darkColors: () => darkColors,
27
+ darkSemanticColors: () => darkSemanticColors,
28
+ focusPrimitives: () => focusPrimitives,
29
+ fontFamilyPrimitives: () => fontFamilyPrimitives,
30
+ fontSizePrimitives: () => fontSizePrimitives,
31
+ fontWeightPrimitives: () => fontWeightPrimitives,
32
+ letterSpacingPrimitives: () => letterSpacingPrimitives,
33
+ lineHeightPrimitives: () => lineHeightPrimitives,
34
+ motionPrimitives: () => motionPrimitives,
35
+ opacityPrimitives: () => opacityPrimitives,
36
+ semanticColors: () => semanticColors,
37
+ semanticLayout: () => semanticLayout,
38
+ semanticRadii: () => semanticRadii,
39
+ semanticShadows: () => semanticShadows,
40
+ semanticSpacing: () => semanticSpacing,
41
+ semanticTokens: () => semanticTokens,
42
+ semanticTypography: () => semanticTypography,
43
+ shadowPrimitives: () => shadowPrimitives,
44
+ spacingPrimitives: () => spacingPrimitives,
45
+ transitionPrimitives: () => transitionPrimitives,
46
+ zIndexPrimitives: () => zIndexPrimitives
47
+ });
48
+ module.exports = __toCommonJS(index_exports);
49
+
50
+ // src/primitives.ts
51
+ var colorPrimitives = {
52
+ /** GTCX brand primary — sky blue */
53
+ primary: {
54
+ 50: "#f0f9ff",
55
+ 100: "#e0f2fe",
56
+ 200: "#bae6fd",
57
+ 300: "#7dd3fc",
58
+ 400: "#38bdf8",
59
+ 500: "#0ea5e9",
60
+ 600: "#0284c7",
61
+ 700: "#0369a1",
62
+ 800: "#075985",
63
+ 900: "#0c4a6e",
64
+ 950: "#082f49"
65
+ },
66
+ /** GTCX brand secondary — purple */
67
+ secondary: {
68
+ 50: "#faf5ff",
69
+ 100: "#f3e8ff",
70
+ 200: "#e9d5ff",
71
+ 300: "#d8b4fe",
72
+ 400: "#c084fc",
73
+ 500: "#a855f7",
74
+ 600: "#9333ea",
75
+ 700: "#7c3aed",
76
+ 800: "#6b21a8",
77
+ 900: "#581c87",
78
+ 950: "#3b0764"
79
+ },
80
+ /** Positive feedback, approvals, profit */
81
+ success: {
82
+ 50: "#f0fdf4",
83
+ 100: "#dcfce7",
84
+ 200: "#bbf7d0",
85
+ 300: "#86efac",
86
+ 400: "#4ade80",
87
+ 500: "#22c55e",
88
+ 600: "#16a34a",
89
+ 700: "#15803d",
90
+ 800: "#166534",
91
+ 900: "#14532d",
92
+ 950: "#052e16"
93
+ },
94
+ /** Caution states, pending actions */
95
+ warning: {
96
+ 50: "#fffbeb",
97
+ 100: "#fef3c7",
98
+ 200: "#fde68a",
99
+ 300: "#fcd34d",
100
+ 400: "#fbbf24",
101
+ 500: "#f59e0b",
102
+ 600: "#d97706",
103
+ 700: "#b45309",
104
+ 800: "#92400e",
105
+ 900: "#78350f",
106
+ 950: "#451a03"
107
+ },
108
+ /** Destructive actions, rejections, loss */
109
+ error: {
110
+ 50: "#fef2f2",
111
+ 100: "#fee2e2",
112
+ 200: "#fecaca",
113
+ 300: "#fca5a5",
114
+ 400: "#f87171",
115
+ 500: "#ef4444",
116
+ 600: "#dc2626",
117
+ 700: "#b91c1c",
118
+ 800: "#991b1b",
119
+ 900: "#7f1d1d",
120
+ 950: "#450a0a"
121
+ },
122
+ /** Informational, links */
123
+ info: {
124
+ 50: "#eff6ff",
125
+ 100: "#dbeafe",
126
+ 200: "#bfdbfe",
127
+ 300: "#93c5fd",
128
+ 400: "#60a5fa",
129
+ 500: "#3b82f6",
130
+ 600: "#2563eb",
131
+ 700: "#1d4ed8",
132
+ 800: "#1e40af",
133
+ 900: "#1e3a8a",
134
+ 950: "#172554"
135
+ },
136
+ /** Grays for text, backgrounds, borders */
137
+ neutral: {
138
+ 50: "#fafafa",
139
+ 100: "#f5f5f5",
140
+ 200: "#e5e5e5",
141
+ 300: "#d4d4d4",
142
+ 400: "#a3a3a3",
143
+ 500: "#737373",
144
+ 600: "#525252",
145
+ 700: "#404040",
146
+ 800: "#262626",
147
+ 900: "#171717",
148
+ 950: "#0a0a0a"
149
+ },
150
+ white: "#ffffff",
151
+ black: "#000000"
152
+ };
153
+ var spacingPrimitives = {
154
+ 0: 0,
155
+ 1: 4,
156
+ 2: 8,
157
+ 3: 12,
158
+ 4: 16,
159
+ 5: 20,
160
+ 6: 24,
161
+ 8: 32,
162
+ 10: 40,
163
+ 12: 48,
164
+ 16: 64,
165
+ 20: 80,
166
+ 24: 96,
167
+ 32: 128
168
+ };
169
+ var fontSizePrimitives = {
170
+ xs: 12,
171
+ sm: 14,
172
+ base: 16,
173
+ lg: 18,
174
+ xl: 20,
175
+ "2xl": 24,
176
+ "3xl": 30,
177
+ "4xl": 36,
178
+ "5xl": 48
179
+ };
180
+ var fontWeightPrimitives = {
181
+ normal: 400,
182
+ medium: 500,
183
+ semibold: 600,
184
+ bold: 700
185
+ };
186
+ var lineHeightPrimitives = {
187
+ tight: 1.2,
188
+ normal: 1.5,
189
+ relaxed: 1.7
190
+ };
191
+ var letterSpacingPrimitives = {
192
+ tight: "-0.025em",
193
+ normal: "0em",
194
+ wide: "0.025em"
195
+ };
196
+ var fontFamilyPrimitives = {
197
+ sans: "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
198
+ mono: "JetBrains Mono, Fira Code, Consolas, monospace",
199
+ serif: "Georgia, 'Times New Roman', serif"
200
+ };
201
+ var borderRadiusPrimitives = {
202
+ none: 0,
203
+ sm: 2,
204
+ md: 4,
205
+ lg: 8,
206
+ xl: 12,
207
+ full: 9999
208
+ };
209
+ var shadowPrimitives = {
210
+ none: "none",
211
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
212
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
213
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)"
214
+ };
215
+ var breakpointPrimitives = {
216
+ xs: 480,
217
+ sm: 576,
218
+ md: 768,
219
+ lg: 992,
220
+ xl: 1200,
221
+ xxl: 1600
222
+ };
223
+ var zIndexPrimitives = {
224
+ dropdown: 1e3,
225
+ sticky: 1020,
226
+ fixed: 1030,
227
+ modal: 1040,
228
+ popover: 1050,
229
+ tooltip: 1060
230
+ };
231
+ var transitionPrimitives = {
232
+ fast: "150ms ease",
233
+ normal: "250ms ease",
234
+ slow: "350ms ease"
235
+ };
236
+ var opacityPrimitives = {
237
+ /** Disabled controls */
238
+ disabled: 0.4,
239
+ /** Hover state overlays */
240
+ hover: 0.08,
241
+ /** Active/pressed state overlays */
242
+ pressed: 0.12,
243
+ /** Modal backdrop overlay */
244
+ overlay: 0.5,
245
+ /** Loading state content fade */
246
+ loading: 0.65
247
+ };
248
+ var focusPrimitives = {
249
+ /** Ring width in pixels */
250
+ ringWidth: 2,
251
+ /** Ring offset from element edge in pixels */
252
+ ringOffset: 2,
253
+ /** Ring color — uses primary brand color */
254
+ ringColor: colorPrimitives.primary[500],
255
+ /** Ring border-style */
256
+ ringStyle: "solid"
257
+ };
258
+ var motionPrimitives = {
259
+ /** Quick micro-interactions (hover, focus) */
260
+ durationFast: 150,
261
+ /** Standard transitions (expand, collapse) */
262
+ durationNormal: 250,
263
+ /** Deliberate animations (page transitions, modals) */
264
+ durationSlow: 350,
265
+ /** Default easing — deceleration curve */
266
+ easeDefault: "cubic-bezier(0.4, 0, 0.2, 1)",
267
+ /** Entrance easing — elements entering the viewport */
268
+ easeIn: "cubic-bezier(0.4, 0, 1, 1)",
269
+ /** Exit easing — elements leaving the viewport */
270
+ easeOut: "cubic-bezier(0, 0, 0.2, 1)",
271
+ /** Symmetric easing — elements that enter and exit */
272
+ easeInOut: "cubic-bezier(0.4, 0, 0.2, 1)"
273
+ };
274
+
275
+ // src/semantic.ts
276
+ var semanticColors = {
277
+ // Brand
278
+ /** Primary brand action color */
279
+ primary: colorPrimitives.primary[500],
280
+ /** Primary hover state */
281
+ primaryHover: colorPrimitives.primary[600],
282
+ /** Primary active/pressed state */
283
+ primaryActive: colorPrimitives.primary[700],
284
+ /** Primary tinted background (selected rows, badges) */
285
+ primaryBg: colorPrimitives.primary[50],
286
+ /** Secondary brand color */
287
+ secondary: colorPrimitives.secondary[500],
288
+ /** Secondary hover state */
289
+ secondaryHover: colorPrimitives.secondary[600],
290
+ // Feedback
291
+ /** Positive outcome (approvals, passing checks) */
292
+ success: colorPrimitives.success[500],
293
+ /** Caution state (pending review, warnings) */
294
+ warning: colorPrimitives.warning[500],
295
+ /** Destructive/failure state */
296
+ error: colorPrimitives.error[500],
297
+ /** Informational state */
298
+ info: colorPrimitives.info[500],
299
+ // Domain-specific — all traced to primitive scales
300
+ /** Financial gain */
301
+ profit: colorPrimitives.success[500],
302
+ /** Financial loss */
303
+ loss: colorPrimitives.error[500],
304
+ /** Compliance approved */
305
+ approved: colorPrimitives.success[600],
306
+ /** Compliance pending */
307
+ pending: colorPrimitives.warning[600],
308
+ /** Compliance rejected */
309
+ rejected: colorPrimitives.error[600],
310
+ /** Security verified */
311
+ secure: colorPrimitives.success[600],
312
+ /** Security compromised */
313
+ insecure: colorPrimitives.error[600],
314
+ // Text
315
+ /** Primary body text */
316
+ textPrimary: colorPrimitives.neutral[900],
317
+ /** Secondary/supporting text */
318
+ textSecondary: colorPrimitives.neutral[600],
319
+ /** Tertiary/label text */
320
+ textTertiary: colorPrimitives.neutral[500],
321
+ /** Muted/placeholder text */
322
+ textMuted: colorPrimitives.neutral[400],
323
+ /** Text on dark backgrounds */
324
+ textInverse: colorPrimitives.neutral[50],
325
+ // Backgrounds
326
+ /** Page-level background */
327
+ bgPage: colorPrimitives.neutral[50],
328
+ /** Card/surface background */
329
+ bgSurface: colorPrimitives.white,
330
+ /** Surface hover state */
331
+ bgSurfaceHover: colorPrimitives.neutral[100],
332
+ /** Tertiary surface (nested cards, wells) */
333
+ bgSurfaceTertiary: colorPrimitives.neutral[200],
334
+ /** Inverse background (dark sections) */
335
+ bgInverse: colorPrimitives.neutral[900],
336
+ /** Sidebar background */
337
+ bgSidebar: colorPrimitives.white,
338
+ /** Header background */
339
+ bgHeader: colorPrimitives.white,
340
+ // Borders
341
+ /** Default border */
342
+ border: colorPrimitives.neutral[200],
343
+ /** Light/subtle border */
344
+ borderLight: colorPrimitives.neutral[100],
345
+ /** Emphasized border */
346
+ borderSecondary: colorPrimitives.neutral[300],
347
+ /** Focus ring border */
348
+ borderFocus: colorPrimitives.primary[500],
349
+ // Links
350
+ /** Default link color */
351
+ link: colorPrimitives.primary[600],
352
+ /** Link hover state */
353
+ linkHover: colorPrimitives.primary[700]
354
+ };
355
+ var semanticSpacing = {
356
+ /** Horizontal page gutter */
357
+ pageGutter: spacingPrimitives[6],
358
+ /** Internal card padding */
359
+ cardPadding: spacingPrimitives[4],
360
+ /** Gap between page sections */
361
+ sectionGap: spacingPrimitives[6],
362
+ /** Gap between sibling components */
363
+ componentGap: spacingPrimitives[3],
364
+ /** Inline element gap (icon + label) */
365
+ inlineGap: spacingPrimitives[2],
366
+ /** Per-component spacing presets */
367
+ component: {
368
+ button: {
369
+ paddingX: spacingPrimitives[4],
370
+ paddingY: spacingPrimitives[2],
371
+ gap: spacingPrimitives[2]
372
+ },
373
+ input: {
374
+ paddingX: spacingPrimitives[3],
375
+ paddingY: spacingPrimitives[2]
376
+ },
377
+ card: {
378
+ padding: spacingPrimitives[6],
379
+ gap: spacingPrimitives[4]
380
+ },
381
+ form: {
382
+ fieldGap: spacingPrimitives[4],
383
+ sectionGap: spacingPrimitives[8],
384
+ labelGap: spacingPrimitives[2]
385
+ },
386
+ modal: {
387
+ padding: spacingPrimitives[6],
388
+ gap: spacingPrimitives[4]
389
+ },
390
+ table: {
391
+ cellPadding: spacingPrimitives[4],
392
+ headerPadding: spacingPrimitives[4]
393
+ }
394
+ },
395
+ /** Layout-level spacing presets */
396
+ layout: {
397
+ container: {
398
+ paddingX: spacingPrimitives[4],
399
+ paddingY: spacingPrimitives[6]
400
+ },
401
+ section: {
402
+ marginY: spacingPrimitives[12],
403
+ gap: spacingPrimitives[8]
404
+ },
405
+ page: {
406
+ marginY: spacingPrimitives[16],
407
+ paddingX: spacingPrimitives[6]
408
+ }
409
+ }
410
+ };
411
+ var semanticTypography = {
412
+ /** Default sans-serif font stack */
413
+ fontFamily: fontFamilyPrimitives.sans,
414
+ /** Monospace font stack for code */
415
+ fontFamilyCode: fontFamilyPrimitives.mono,
416
+ /** Serif font stack for editorial content */
417
+ fontFamilySerif: fontFamilyPrimitives.serif,
418
+ /** Display type scale — hero sections, feature numbers */
419
+ display: {
420
+ lg: {
421
+ fontSize: fontSizePrimitives["5xl"],
422
+ fontWeight: fontWeightPrimitives.bold,
423
+ lineHeight: lineHeightPrimitives.tight,
424
+ letterSpacing: letterSpacingPrimitives.tight
425
+ },
426
+ md: {
427
+ fontSize: fontSizePrimitives["4xl"],
428
+ fontWeight: fontWeightPrimitives.bold,
429
+ lineHeight: lineHeightPrimitives.tight,
430
+ letterSpacing: letterSpacingPrimitives.normal
431
+ },
432
+ sm: {
433
+ fontSize: fontSizePrimitives["3xl"],
434
+ fontWeight: fontWeightPrimitives.semibold,
435
+ lineHeight: lineHeightPrimitives.tight,
436
+ letterSpacing: letterSpacingPrimitives.normal
437
+ }
438
+ },
439
+ /** Heading type scale — page/section/card headings */
440
+ heading: {
441
+ h1: {
442
+ fontSize: fontSizePrimitives["3xl"],
443
+ fontWeight: fontWeightPrimitives.bold,
444
+ lineHeight: lineHeightPrimitives.tight
445
+ },
446
+ h2: {
447
+ fontSize: fontSizePrimitives["2xl"],
448
+ fontWeight: fontWeightPrimitives.semibold,
449
+ lineHeight: lineHeightPrimitives.tight
450
+ },
451
+ h3: {
452
+ fontSize: fontSizePrimitives.xl,
453
+ fontWeight: fontWeightPrimitives.semibold,
454
+ lineHeight: lineHeightPrimitives.normal
455
+ },
456
+ h4: {
457
+ fontSize: fontSizePrimitives.lg,
458
+ fontWeight: fontWeightPrimitives.medium,
459
+ lineHeight: lineHeightPrimitives.normal
460
+ }
461
+ },
462
+ /** Body type scale — paragraphs, descriptions */
463
+ body: {
464
+ lg: {
465
+ fontSize: fontSizePrimitives.lg,
466
+ fontWeight: fontWeightPrimitives.normal,
467
+ lineHeight: lineHeightPrimitives.relaxed
468
+ },
469
+ md: {
470
+ fontSize: fontSizePrimitives.base,
471
+ fontWeight: fontWeightPrimitives.normal,
472
+ lineHeight: lineHeightPrimitives.normal
473
+ },
474
+ sm: {
475
+ fontSize: fontSizePrimitives.sm,
476
+ fontWeight: fontWeightPrimitives.normal,
477
+ lineHeight: lineHeightPrimitives.normal
478
+ }
479
+ },
480
+ /** Caption — footnotes, timestamps, fine print */
481
+ caption: {
482
+ fontSize: fontSizePrimitives.xs,
483
+ fontWeight: fontWeightPrimitives.normal,
484
+ lineHeight: lineHeightPrimitives.normal
485
+ },
486
+ /** Button label type scale */
487
+ button: {
488
+ lg: {
489
+ fontSize: fontSizePrimitives.lg,
490
+ fontWeight: fontWeightPrimitives.medium,
491
+ lineHeight: lineHeightPrimitives.normal
492
+ },
493
+ md: {
494
+ fontSize: fontSizePrimitives.base,
495
+ fontWeight: fontWeightPrimitives.medium,
496
+ lineHeight: lineHeightPrimitives.normal
497
+ },
498
+ sm: {
499
+ fontSize: fontSizePrimitives.sm,
500
+ fontWeight: fontWeightPrimitives.medium,
501
+ lineHeight: lineHeightPrimitives.normal
502
+ }
503
+ }
504
+ };
505
+ var semanticRadii = {
506
+ /** Default component radius */
507
+ component: borderRadiusPrimitives.md,
508
+ /** Card/panel radius */
509
+ card: borderRadiusPrimitives.lg,
510
+ /** Button radius */
511
+ button: borderRadiusPrimitives.md,
512
+ /** Input/select radius */
513
+ input: borderRadiusPrimitives.md,
514
+ /** Tag/badge radius */
515
+ tag: borderRadiusPrimitives.sm,
516
+ /** Avatar — fully round */
517
+ avatar: borderRadiusPrimitives.full
518
+ };
519
+ var semanticShadows = {
520
+ /** Card/panel elevation */
521
+ card: shadowPrimitives.sm,
522
+ /** Dropdown/popover elevation */
523
+ dropdown: shadowPrimitives.md,
524
+ /** Modal/dialog elevation */
525
+ modal: shadowPrimitives.lg
526
+ };
527
+ var semanticLayout = {
528
+ /** Sidebar expanded width */
529
+ sidebarWidth: 240,
530
+ /** Sidebar collapsed width */
531
+ sidebarCollapsedWidth: 72,
532
+ /** Top header height */
533
+ headerHeight: 56,
534
+ /** Maximum content area width */
535
+ contentMaxWidth: 1440
536
+ };
537
+ var semanticTokens = {
538
+ colors: semanticColors,
539
+ spacing: semanticSpacing,
540
+ typography: semanticTypography,
541
+ radii: semanticRadii,
542
+ shadows: semanticShadows,
543
+ layout: semanticLayout
544
+ };
545
+
546
+ // src/dark.ts
547
+ var darkSemanticColors = {
548
+ // Brand — shifted lighter for contrast on dark backgrounds
549
+ primary: colorPrimitives.primary[400],
550
+ primaryHover: colorPrimitives.primary[300],
551
+ primaryActive: colorPrimitives.primary[500],
552
+ primaryBg: colorPrimitives.primary[950],
553
+ secondary: colorPrimitives.secondary[400],
554
+ secondaryHover: colorPrimitives.secondary[300],
555
+ // Feedback — shifted to 400 for readability
556
+ success: colorPrimitives.success[400],
557
+ warning: colorPrimitives.warning[400],
558
+ error: colorPrimitives.error[400],
559
+ info: colorPrimitives.info[400],
560
+ // Domain-specific
561
+ profit: colorPrimitives.success[400],
562
+ loss: colorPrimitives.error[400],
563
+ approved: colorPrimitives.success[400],
564
+ pending: colorPrimitives.warning[400],
565
+ rejected: colorPrimitives.error[400],
566
+ secure: colorPrimitives.success[400],
567
+ insecure: colorPrimitives.error[400],
568
+ // Text — light on dark
569
+ textPrimary: colorPrimitives.neutral[50],
570
+ textSecondary: colorPrimitives.neutral[300],
571
+ textTertiary: colorPrimitives.neutral[400],
572
+ textMuted: colorPrimitives.neutral[500],
573
+ textInverse: colorPrimitives.neutral[900],
574
+ // Backgrounds — dark
575
+ bgPage: colorPrimitives.neutral[950],
576
+ bgSurface: colorPrimitives.neutral[900],
577
+ bgSurfaceHover: colorPrimitives.neutral[800],
578
+ bgSurfaceTertiary: colorPrimitives.neutral[700],
579
+ bgInverse: colorPrimitives.neutral[50],
580
+ bgSidebar: colorPrimitives.neutral[900],
581
+ bgHeader: colorPrimitives.neutral[900],
582
+ // Borders — subtle on dark
583
+ border: colorPrimitives.neutral[700],
584
+ borderLight: colorPrimitives.neutral[800],
585
+ borderSecondary: colorPrimitives.neutral[600],
586
+ borderFocus: colorPrimitives.primary[400],
587
+ // Links
588
+ link: colorPrimitives.primary[400],
589
+ linkHover: colorPrimitives.primary[300]
590
+ };
591
+ var darkColors = {
592
+ text: {
593
+ primary: darkSemanticColors.textPrimary,
594
+ secondary: darkSemanticColors.textSecondary,
595
+ tertiary: darkSemanticColors.textTertiary
596
+ },
597
+ background: {
598
+ primary: darkSemanticColors.bgPage,
599
+ secondary: darkSemanticColors.bgSurface,
600
+ tertiary: darkSemanticColors.bgSurfaceTertiary
601
+ },
602
+ border: {
603
+ primary: darkSemanticColors.border,
604
+ secondary: darkSemanticColors.borderSecondary
605
+ }
606
+ };
607
+ // Annotate the CommonJS export names for ESM import in node:
608
+ 0 && (module.exports = {
609
+ borderRadiusPrimitives,
610
+ breakpointPrimitives,
611
+ colorPrimitives,
612
+ darkColors,
613
+ darkSemanticColors,
614
+ focusPrimitives,
615
+ fontFamilyPrimitives,
616
+ fontSizePrimitives,
617
+ fontWeightPrimitives,
618
+ letterSpacingPrimitives,
619
+ lineHeightPrimitives,
620
+ motionPrimitives,
621
+ opacityPrimitives,
622
+ semanticColors,
623
+ semanticLayout,
624
+ semanticRadii,
625
+ semanticShadows,
626
+ semanticSpacing,
627
+ semanticTokens,
628
+ semanticTypography,
629
+ shadowPrimitives,
630
+ spacingPrimitives,
631
+ transitionPrimitives,
632
+ zIndexPrimitives
633
+ });