@primer/primitives 11.4.0 → 11.4.1-rc.24c79953
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/DESIGN_TOKENS_GUIDE.md +185 -0
- package/DESIGN_TOKENS_SPEC.md +565 -0
- package/dist/build/formats/jsonFigma.js +8 -1
- package/dist/build/formats/markdownLlmGuidelines.d.ts +7 -6
- package/dist/build/formats/markdownLlmGuidelines.js +1034 -60
- package/dist/build/schemas/borderToken.d.ts +17 -3
- package/dist/build/schemas/colorToken.d.ts +1 -1
- package/dist/build/schemas/cubicBezierToken.d.ts +1 -1
- package/dist/build/schemas/dimensionToken.d.ts +9 -2
- package/dist/build/schemas/dimensionValue.d.ts +12 -1
- package/dist/build/schemas/dimensionValue.js +10 -13
- package/dist/build/schemas/durationToken.d.ts +8 -2
- package/dist/build/schemas/durationValue.d.ts +11 -1
- package/dist/build/schemas/durationValue.js +13 -3
- package/dist/build/schemas/fontFamilyToken.d.ts +1 -1
- package/dist/build/schemas/fontWeightToken.d.ts +1 -1
- package/dist/build/schemas/gradientToken.d.ts +1 -1
- package/dist/build/schemas/numberToken.d.ts +1 -1
- package/dist/build/schemas/shadowToken.d.ts +673 -85
- package/dist/build/schemas/stringToken.d.ts +1 -1
- package/dist/build/schemas/stringToken.js +1 -1
- package/dist/build/schemas/tokenType.d.ts +1 -1
- package/dist/build/schemas/transitionToken.d.ts +15 -3
- package/dist/build/schemas/typographyToken.d.ts +19 -5
- package/dist/build/schemas/typographyToken.js +1 -1
- package/dist/build/schemas/validTokenType.d.ts +1 -1
- package/dist/build/schemas/validTokenType.js +1 -1
- package/dist/build/schemas/viewportRangeToken.d.ts +1 -1
- package/dist/build/transformers/borderToCss.js +17 -1
- package/dist/build/transformers/dimensionToPixelUnitless.d.ts +3 -2
- package/dist/build/transformers/dimensionToPixelUnitless.js +22 -26
- package/dist/build/transformers/dimensionToRem.d.ts +2 -1
- package/dist/build/transformers/dimensionToRem.js +21 -22
- package/dist/build/transformers/dimensionToRemPxArray.d.ts +2 -1
- package/dist/build/transformers/dimensionToRemPxArray.js +21 -22
- package/dist/build/transformers/durationToCss.d.ts +2 -1
- package/dist/build/transformers/durationToCss.js +18 -11
- package/dist/build/transformers/shadowToCss.js +12 -1
- package/dist/build/transformers/utilities/parseDimension.d.ts +12 -0
- package/dist/build/transformers/utilities/parseDimension.js +31 -0
- package/dist/build/types/borderTokenValue.d.ts +3 -1
- package/dist/build/types/dimensionTokenValue.d.ts +9 -0
- package/dist/build/types/shadowTokenValue.d.ts +6 -4
- package/dist/css/functional/themes/dark-colorblind-high-contrast.css +32 -28
- package/dist/css/functional/themes/dark-colorblind.css +32 -28
- package/dist/css/functional/themes/dark-dimmed-high-contrast.css +32 -28
- package/dist/css/functional/themes/dark-dimmed.css +32 -28
- package/dist/css/functional/themes/dark-high-contrast.css +32 -28
- package/dist/css/functional/themes/dark-tritanopia-high-contrast.css +32 -28
- package/dist/css/functional/themes/dark-tritanopia.css +32 -28
- package/dist/css/functional/themes/dark.css +32 -28
- package/dist/css/functional/themes/light-colorblind-high-contrast.css +32 -28
- package/dist/css/functional/themes/light-colorblind.css +32 -28
- package/dist/css/functional/themes/light-high-contrast.css +32 -28
- package/dist/css/functional/themes/light-tritanopia-high-contrast.css +32 -28
- package/dist/css/functional/themes/light-tritanopia.css +32 -28
- package/dist/css/functional/themes/light.css +32 -28
- package/dist/css/primitives.css +4 -0
- package/dist/docs/base/motion/motion.json +96 -24
- package/dist/docs/base/size/size.json +76 -19
- package/dist/docs/base/typography/typography.json +24 -6
- package/dist/docs/functional/size/border.json +26 -11
- package/dist/docs/functional/size/breakpoints.json +24 -6
- package/dist/docs/functional/size/radius.json +16 -4
- package/dist/docs/functional/size/size.json +60 -15
- package/dist/docs/functional/themes/dark-colorblind-high-contrast.json +1423 -346
- package/dist/docs/functional/themes/dark-colorblind.json +1423 -346
- package/dist/docs/functional/themes/dark-dimmed-high-contrast.json +1423 -346
- package/dist/docs/functional/themes/dark-dimmed.json +1423 -346
- package/dist/docs/functional/themes/dark-high-contrast.json +1423 -346
- package/dist/docs/functional/themes/dark-tritanopia-high-contrast.json +1423 -346
- package/dist/docs/functional/themes/dark-tritanopia.json +1423 -346
- package/dist/docs/functional/themes/dark.json +1423 -346
- package/dist/docs/functional/themes/light-colorblind-high-contrast.json +1426 -349
- package/dist/docs/functional/themes/light-colorblind.json +1426 -349
- package/dist/docs/functional/themes/light-high-contrast.json +1426 -349
- package/dist/docs/functional/themes/light-tritanopia-high-contrast.json +1426 -349
- package/dist/docs/functional/themes/light-tritanopia.json +1426 -349
- package/dist/docs/functional/themes/light.json +1426 -349
- package/dist/docs/functional/typography/typography.json +8 -2
- package/dist/fallbacks/base/motion/motion.json +48 -12
- package/dist/figma/themes/light-colorblind.json +4 -4
- package/dist/figma/themes/light-high-contrast.json +4 -4
- package/dist/figma/themes/light-tritanopia.json +4 -4
- package/dist/figma/themes/light.json +4 -4
- package/dist/internalCss/dark-colorblind-high-contrast.css +28 -28
- package/dist/internalCss/dark-colorblind.css +28 -28
- package/dist/internalCss/dark-dimmed-high-contrast.css +28 -28
- package/dist/internalCss/dark-dimmed.css +28 -28
- package/dist/internalCss/dark-high-contrast.css +28 -28
- package/dist/internalCss/dark-tritanopia-high-contrast.css +28 -28
- package/dist/internalCss/dark-tritanopia.css +28 -28
- package/dist/internalCss/dark.css +28 -28
- package/dist/internalCss/light-colorblind-high-contrast.css +28 -28
- package/dist/internalCss/light-colorblind.css +28 -28
- package/dist/internalCss/light-high-contrast.css +28 -28
- package/dist/internalCss/light-tritanopia-high-contrast.css +28 -28
- package/dist/internalCss/light-tritanopia.css +28 -28
- package/dist/internalCss/light.css +28 -28
- package/dist/styleLint/base/motion/motion.json +96 -24
- package/dist/styleLint/base/size/size.json +76 -19
- package/dist/styleLint/base/typography/typography.json +30 -12
- package/dist/styleLint/functional/size/border.json +27 -12
- package/dist/styleLint/functional/size/breakpoints.json +24 -6
- package/dist/styleLint/functional/size/radius.json +17 -5
- package/dist/styleLint/functional/size/size-coarse.json +3 -3
- package/dist/styleLint/functional/size/size-fine.json +3 -3
- package/dist/styleLint/functional/size/size.json +111 -66
- package/dist/styleLint/functional/themes/dark-colorblind-high-contrast.json +1551 -366
- package/dist/styleLint/functional/themes/dark-colorblind.json +1551 -366
- package/dist/styleLint/functional/themes/dark-dimmed-high-contrast.json +1551 -366
- package/dist/styleLint/functional/themes/dark-dimmed.json +1551 -366
- package/dist/styleLint/functional/themes/dark-high-contrast.json +1551 -366
- package/dist/styleLint/functional/themes/dark-tritanopia-high-contrast.json +1551 -366
- package/dist/styleLint/functional/themes/dark-tritanopia.json +1551 -366
- package/dist/styleLint/functional/themes/dark.json +1551 -366
- package/dist/styleLint/functional/themes/light-colorblind-high-contrast.json +1554 -369
- package/dist/styleLint/functional/themes/light-colorblind.json +1554 -369
- package/dist/styleLint/functional/themes/light-high-contrast.json +1554 -369
- package/dist/styleLint/functional/themes/light-tritanopia-high-contrast.json +1554 -369
- package/dist/styleLint/functional/themes/light-tritanopia.json +1554 -369
- package/dist/styleLint/functional/themes/light.json +1554 -369
- package/dist/styleLint/functional/typography/typography.json +28 -22
- package/package.json +6 -5
- package/src/tokens/base/motion/timing.json5 +12 -12
- package/src/tokens/base/size/size.json5 +19 -19
- package/src/tokens/base/typography/typography.json5 +6 -6
- package/src/tokens/component/avatar.json5 +72 -44
- package/src/tokens/component/button.json5 +1545 -1193
- package/src/tokens/functional/border/border.json5 +4 -1
- package/src/tokens/functional/color/bgColor.json5 +8 -0
- package/src/tokens/functional/color/display.json5 +7 -0
- package/src/tokens/functional/color/fgColor.json5 +8 -0
- package/src/tokens/functional/color/syntax.json5 +14 -0
- package/src/tokens/functional/shadow/shadow.json5 +678 -163
- package/src/tokens/functional/size/border.json5 +8 -8
- package/src/tokens/functional/size/breakpoints.json5 +6 -6
- package/src/tokens/functional/size/radius.json5 +4 -4
- package/src/tokens/functional/size/size.json5 +15 -15
- package/src/tokens/functional/typography/typography.json5 +8 -4
- package/dist/build/parsers/index.d.ts +0 -1
- package/dist/build/parsers/index.js +0 -1
- package/dist/build/parsers/w3cJsonParser.d.ts +0 -6
- package/dist/build/parsers/w3cJsonParser.js +0 -25
- package/dist/removed/testing.json5 +0 -4
- package/guidelines/color.llm.md +0 -16
- package/guidelines/guidelines.llm.md +0 -34
- package/guidelines/motion.llm.md +0 -41
- package/guidelines/spacing.llm.md +0 -20
- package/guidelines/typography.llm.md +0 -14
- package/src/tokens/removed/testing.json5 +0 -4
- package/token-guidelines.llm.md +0 -695
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
},
|
|
168
168
|
"avatar-shadow": {
|
|
169
169
|
"key": "{avatar.shadow}",
|
|
170
|
-
"$value": "
|
|
170
|
+
"$value": "0 0 0 2px #0d1117",
|
|
171
171
|
"$type": "shadow",
|
|
172
172
|
"$extensions": {
|
|
173
173
|
"org.primer.figma": {
|
|
@@ -180,10 +180,22 @@
|
|
|
180
180
|
{
|
|
181
181
|
"color": "#0d1117",
|
|
182
182
|
"alpha": 1,
|
|
183
|
-
"offsetX":
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
183
|
+
"offsetX": {
|
|
184
|
+
"value": 0,
|
|
185
|
+
"unit": "px"
|
|
186
|
+
},
|
|
187
|
+
"offsetY": {
|
|
188
|
+
"value": 0,
|
|
189
|
+
"unit": "px"
|
|
190
|
+
},
|
|
191
|
+
"blur": {
|
|
192
|
+
"value": 0,
|
|
193
|
+
"unit": "px"
|
|
194
|
+
},
|
|
195
|
+
"spread": {
|
|
196
|
+
"value": 2,
|
|
197
|
+
"unit": "px"
|
|
198
|
+
}
|
|
187
199
|
}
|
|
188
200
|
],
|
|
189
201
|
"filePath": "src/tokens/component/avatar.json5",
|
|
@@ -199,10 +211,22 @@
|
|
|
199
211
|
{
|
|
200
212
|
"color": "{base.color.neutral.1}",
|
|
201
213
|
"alpha": 1,
|
|
202
|
-
"offsetX":
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
214
|
+
"offsetX": {
|
|
215
|
+
"value": 0,
|
|
216
|
+
"unit": "px"
|
|
217
|
+
},
|
|
218
|
+
"offsetY": {
|
|
219
|
+
"value": 0,
|
|
220
|
+
"unit": "px"
|
|
221
|
+
},
|
|
222
|
+
"blur": {
|
|
223
|
+
"value": 0,
|
|
224
|
+
"unit": "px"
|
|
225
|
+
},
|
|
226
|
+
"spread": {
|
|
227
|
+
"value": 2,
|
|
228
|
+
"unit": "px"
|
|
229
|
+
}
|
|
206
230
|
}
|
|
207
231
|
],
|
|
208
232
|
"$type": "shadow",
|
|
@@ -217,10 +241,22 @@
|
|
|
217
241
|
{
|
|
218
242
|
"color": "{base.color.neutral.1}",
|
|
219
243
|
"alpha": 1,
|
|
220
|
-
"offsetX":
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
244
|
+
"offsetX": {
|
|
245
|
+
"value": 0,
|
|
246
|
+
"unit": "px"
|
|
247
|
+
},
|
|
248
|
+
"offsetY": {
|
|
249
|
+
"value": 0,
|
|
250
|
+
"unit": "px"
|
|
251
|
+
},
|
|
252
|
+
"blur": {
|
|
253
|
+
"value": 0,
|
|
254
|
+
"unit": "px"
|
|
255
|
+
},
|
|
256
|
+
"spread": {
|
|
257
|
+
"value": 2,
|
|
258
|
+
"unit": "px"
|
|
259
|
+
}
|
|
224
260
|
}
|
|
225
261
|
],
|
|
226
262
|
"filePath": "src/tokens/component/avatar.json5",
|
|
@@ -552,6 +588,10 @@
|
|
|
552
588
|
},
|
|
553
589
|
"org.primer.overrides": {
|
|
554
590
|
"dark": "#010409"
|
|
591
|
+
},
|
|
592
|
+
"org.primer.llm": {
|
|
593
|
+
"doNotUse": true,
|
|
594
|
+
"rules": "Avoid using raw black. Use semantic alternatives: bgColor.emphasis for dark backgrounds, bgColor.inverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
555
595
|
}
|
|
556
596
|
},
|
|
557
597
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -568,6 +608,10 @@
|
|
|
568
608
|
},
|
|
569
609
|
"org.primer.overrides": {
|
|
570
610
|
"dark": "{base.color.neutral.0}"
|
|
611
|
+
},
|
|
612
|
+
"org.primer.llm": {
|
|
613
|
+
"doNotUse": true,
|
|
614
|
+
"rules": "Avoid using raw black. Use semantic alternatives: bgColor.emphasis for dark backgrounds, bgColor.inverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
571
615
|
}
|
|
572
616
|
},
|
|
573
617
|
"key": "{bgColor.black}"
|
|
@@ -2460,6 +2504,10 @@
|
|
|
2460
2504
|
},
|
|
2461
2505
|
"org.primer.overrides": {
|
|
2462
2506
|
"dark": "#ffffff"
|
|
2507
|
+
},
|
|
2508
|
+
"org.primer.llm": {
|
|
2509
|
+
"doNotUse": true,
|
|
2510
|
+
"rules": "Avoid using raw white. Use semantic alternatives: bgColor.default for standard backgrounds, bgColor.inset for recessed areas, or bgColor.inverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
2463
2511
|
}
|
|
2464
2512
|
},
|
|
2465
2513
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -2476,6 +2524,10 @@
|
|
|
2476
2524
|
},
|
|
2477
2525
|
"org.primer.overrides": {
|
|
2478
2526
|
"dark": "{base.color.neutral.13}"
|
|
2527
|
+
},
|
|
2528
|
+
"org.primer.llm": {
|
|
2529
|
+
"doNotUse": true,
|
|
2530
|
+
"rules": "Avoid using raw white. Use semantic alternatives: bgColor.default for standard backgrounds, bgColor.inset for recessed areas, or bgColor.inverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
2479
2531
|
}
|
|
2480
2532
|
},
|
|
2481
2533
|
"key": "{bgColor.white}"
|
|
@@ -2486,7 +2538,11 @@
|
|
|
2486
2538
|
},
|
|
2487
2539
|
"border-accent-emphasis": {
|
|
2488
2540
|
"key": "{border.accent.emphasis}",
|
|
2489
|
-
"$value":
|
|
2541
|
+
"$value": {
|
|
2542
|
+
"color": "#1f6feb",
|
|
2543
|
+
"style": "solid",
|
|
2544
|
+
"width": ["0.0625rem", "1px"]
|
|
2545
|
+
},
|
|
2490
2546
|
"$type": "border",
|
|
2491
2547
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2492
2548
|
"isSource": true,
|
|
@@ -2505,7 +2561,11 @@
|
|
|
2505
2561
|
},
|
|
2506
2562
|
"border-accent-muted": {
|
|
2507
2563
|
"key": "{border.accent.muted}",
|
|
2508
|
-
"$value":
|
|
2564
|
+
"$value": {
|
|
2565
|
+
"color": "#388bfd66",
|
|
2566
|
+
"style": "solid",
|
|
2567
|
+
"width": ["0.0625rem", "1px"]
|
|
2568
|
+
},
|
|
2509
2569
|
"$type": "border",
|
|
2510
2570
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2511
2571
|
"isSource": true,
|
|
@@ -2524,7 +2584,11 @@
|
|
|
2524
2584
|
},
|
|
2525
2585
|
"border-attention-emphasis": {
|
|
2526
2586
|
"key": "{border.attention.emphasis}",
|
|
2527
|
-
"$value":
|
|
2587
|
+
"$value": {
|
|
2588
|
+
"color": "#9e6a03",
|
|
2589
|
+
"style": "solid",
|
|
2590
|
+
"width": ["0.0625rem", "1px"]
|
|
2591
|
+
},
|
|
2528
2592
|
"$type": "border",
|
|
2529
2593
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2530
2594
|
"isSource": true,
|
|
@@ -2543,7 +2607,11 @@
|
|
|
2543
2607
|
},
|
|
2544
2608
|
"border-attention-muted": {
|
|
2545
2609
|
"key": "{border.attention.muted}",
|
|
2546
|
-
"$value":
|
|
2610
|
+
"$value": {
|
|
2611
|
+
"color": "#bb800966",
|
|
2612
|
+
"style": "solid",
|
|
2613
|
+
"width": ["0.0625rem", "1px"]
|
|
2614
|
+
},
|
|
2547
2615
|
"$type": "border",
|
|
2548
2616
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2549
2617
|
"isSource": true,
|
|
@@ -2562,7 +2630,11 @@
|
|
|
2562
2630
|
},
|
|
2563
2631
|
"border-closed-emphasis": {
|
|
2564
2632
|
"key": "{border.closed.emphasis}",
|
|
2565
|
-
"$value":
|
|
2633
|
+
"$value": {
|
|
2634
|
+
"color": "#bd561d",
|
|
2635
|
+
"style": "solid",
|
|
2636
|
+
"width": ["0.0625rem", "1px"]
|
|
2637
|
+
},
|
|
2566
2638
|
"$type": "border",
|
|
2567
2639
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2568
2640
|
"isSource": true,
|
|
@@ -2577,7 +2649,11 @@
|
|
|
2577
2649
|
},
|
|
2578
2650
|
"border-closed-muted": {
|
|
2579
2651
|
"key": "{border.closed.muted}",
|
|
2580
|
-
"$value":
|
|
2652
|
+
"$value": {
|
|
2653
|
+
"color": "#db6d2866",
|
|
2654
|
+
"style": "solid",
|
|
2655
|
+
"width": ["0.0625rem", "1px"]
|
|
2656
|
+
},
|
|
2581
2657
|
"$type": "border",
|
|
2582
2658
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2583
2659
|
"isSource": true,
|
|
@@ -2592,7 +2668,11 @@
|
|
|
2592
2668
|
},
|
|
2593
2669
|
"border-danger-emphasis": {
|
|
2594
2670
|
"key": "{border.danger.emphasis}",
|
|
2595
|
-
"$value":
|
|
2671
|
+
"$value": {
|
|
2672
|
+
"color": "#bd561d",
|
|
2673
|
+
"style": "solid",
|
|
2674
|
+
"width": ["0.0625rem", "1px"]
|
|
2675
|
+
},
|
|
2596
2676
|
"$type": "border",
|
|
2597
2677
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2598
2678
|
"isSource": true,
|
|
@@ -2611,7 +2691,11 @@
|
|
|
2611
2691
|
},
|
|
2612
2692
|
"border-danger-muted": {
|
|
2613
2693
|
"key": "{border.danger.muted}",
|
|
2614
|
-
"$value":
|
|
2694
|
+
"$value": {
|
|
2695
|
+
"color": "#db6d2866",
|
|
2696
|
+
"style": "solid",
|
|
2697
|
+
"width": ["0.0625rem", "1px"]
|
|
2698
|
+
},
|
|
2615
2699
|
"$type": "border",
|
|
2616
2700
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2617
2701
|
"isSource": true,
|
|
@@ -2630,7 +2714,11 @@
|
|
|
2630
2714
|
},
|
|
2631
2715
|
"border-default": {
|
|
2632
2716
|
"key": "{border.default}",
|
|
2633
|
-
"$value":
|
|
2717
|
+
"$value": {
|
|
2718
|
+
"color": "#3d444d",
|
|
2719
|
+
"style": "solid",
|
|
2720
|
+
"width": ["0.0625rem", "1px"]
|
|
2721
|
+
},
|
|
2634
2722
|
"$type": "border",
|
|
2635
2723
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2636
2724
|
"isSource": true,
|
|
@@ -2649,7 +2737,11 @@
|
|
|
2649
2737
|
},
|
|
2650
2738
|
"border-disabled": {
|
|
2651
2739
|
"key": "{border.disabled}",
|
|
2652
|
-
"$value":
|
|
2740
|
+
"$value": {
|
|
2741
|
+
"color": "#656c761a",
|
|
2742
|
+
"style": "solid",
|
|
2743
|
+
"width": ["0.0625rem", "1px"]
|
|
2744
|
+
},
|
|
2653
2745
|
"$type": "border",
|
|
2654
2746
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2655
2747
|
"isSource": true,
|
|
@@ -2668,7 +2760,11 @@
|
|
|
2668
2760
|
},
|
|
2669
2761
|
"border-done-emphasis": {
|
|
2670
2762
|
"key": "{border.done.emphasis}",
|
|
2671
|
-
"$value":
|
|
2763
|
+
"$value": {
|
|
2764
|
+
"color": "#8957e5",
|
|
2765
|
+
"style": "solid",
|
|
2766
|
+
"width": ["0.0625rem", "1px"]
|
|
2767
|
+
},
|
|
2672
2768
|
"$type": "border",
|
|
2673
2769
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2674
2770
|
"isSource": true,
|
|
@@ -2687,7 +2783,11 @@
|
|
|
2687
2783
|
},
|
|
2688
2784
|
"border-done-muted": {
|
|
2689
2785
|
"key": "{border.done.muted}",
|
|
2690
|
-
"$value":
|
|
2786
|
+
"$value": {
|
|
2787
|
+
"color": "#ab7df866",
|
|
2788
|
+
"style": "solid",
|
|
2789
|
+
"width": ["0.0625rem", "1px"]
|
|
2790
|
+
},
|
|
2691
2791
|
"$type": "border",
|
|
2692
2792
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2693
2793
|
"isSource": true,
|
|
@@ -2706,7 +2806,11 @@
|
|
|
2706
2806
|
},
|
|
2707
2807
|
"border-emphasis": {
|
|
2708
2808
|
"key": "{border.emphasis}",
|
|
2709
|
-
"$value":
|
|
2809
|
+
"$value": {
|
|
2810
|
+
"color": "#656c76",
|
|
2811
|
+
"style": "solid",
|
|
2812
|
+
"width": ["0.0625rem", "1px"]
|
|
2813
|
+
},
|
|
2710
2814
|
"$type": "border",
|
|
2711
2815
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2712
2816
|
"isSource": true,
|
|
@@ -2725,7 +2829,11 @@
|
|
|
2725
2829
|
},
|
|
2726
2830
|
"border-muted": {
|
|
2727
2831
|
"key": "{border.muted}",
|
|
2728
|
-
"$value":
|
|
2832
|
+
"$value": {
|
|
2833
|
+
"color": "#3d444db3",
|
|
2834
|
+
"style": "solid",
|
|
2835
|
+
"width": ["0.0625rem", "1px"]
|
|
2836
|
+
},
|
|
2729
2837
|
"$type": "border",
|
|
2730
2838
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2731
2839
|
"isSource": true,
|
|
@@ -2744,7 +2852,11 @@
|
|
|
2744
2852
|
},
|
|
2745
2853
|
"border-neutral-emphasis": {
|
|
2746
2854
|
"key": "{border.neutral.emphasis}",
|
|
2747
|
-
"$value":
|
|
2855
|
+
"$value": {
|
|
2856
|
+
"color": "#656c76",
|
|
2857
|
+
"style": "solid",
|
|
2858
|
+
"width": ["0.0625rem", "1px"]
|
|
2859
|
+
},
|
|
2748
2860
|
"$type": "border",
|
|
2749
2861
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2750
2862
|
"isSource": true,
|
|
@@ -2763,7 +2875,11 @@
|
|
|
2763
2875
|
},
|
|
2764
2876
|
"border-neutral-muted": {
|
|
2765
2877
|
"key": "{border.neutral.muted}",
|
|
2766
|
-
"$value":
|
|
2878
|
+
"$value": {
|
|
2879
|
+
"color": "#3d444db3",
|
|
2880
|
+
"style": "solid",
|
|
2881
|
+
"width": ["0.0625rem", "1px"]
|
|
2882
|
+
},
|
|
2767
2883
|
"$type": "border",
|
|
2768
2884
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2769
2885
|
"isSource": true,
|
|
@@ -2782,7 +2898,11 @@
|
|
|
2782
2898
|
},
|
|
2783
2899
|
"border-open-emphasis": {
|
|
2784
2900
|
"key": "{border.open.emphasis}",
|
|
2785
|
-
"$value":
|
|
2901
|
+
"$value": {
|
|
2902
|
+
"color": "#1f6feb",
|
|
2903
|
+
"style": "solid",
|
|
2904
|
+
"width": ["0.0625rem", "1px"]
|
|
2905
|
+
},
|
|
2786
2906
|
"$type": "border",
|
|
2787
2907
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2788
2908
|
"isSource": true,
|
|
@@ -2797,7 +2917,11 @@
|
|
|
2797
2917
|
},
|
|
2798
2918
|
"border-open-muted": {
|
|
2799
2919
|
"key": "{border.open.muted}",
|
|
2800
|
-
"$value":
|
|
2920
|
+
"$value": {
|
|
2921
|
+
"color": "#388bfd66",
|
|
2922
|
+
"style": "solid",
|
|
2923
|
+
"width": ["0.0625rem", "1px"]
|
|
2924
|
+
},
|
|
2801
2925
|
"$type": "border",
|
|
2802
2926
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2803
2927
|
"isSource": true,
|
|
@@ -2812,7 +2936,11 @@
|
|
|
2812
2936
|
},
|
|
2813
2937
|
"border-severe-emphasis": {
|
|
2814
2938
|
"key": "{border.severe.emphasis}",
|
|
2815
|
-
"$value":
|
|
2939
|
+
"$value": {
|
|
2940
|
+
"color": "#bd561d",
|
|
2941
|
+
"style": "solid",
|
|
2942
|
+
"width": ["0.0625rem", "1px"]
|
|
2943
|
+
},
|
|
2816
2944
|
"$type": "border",
|
|
2817
2945
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2818
2946
|
"isSource": true,
|
|
@@ -2831,7 +2959,11 @@
|
|
|
2831
2959
|
},
|
|
2832
2960
|
"border-severe-muted": {
|
|
2833
2961
|
"key": "{border.severe.muted}",
|
|
2834
|
-
"$value":
|
|
2962
|
+
"$value": {
|
|
2963
|
+
"color": "#db6d2866",
|
|
2964
|
+
"style": "solid",
|
|
2965
|
+
"width": ["0.0625rem", "1px"]
|
|
2966
|
+
},
|
|
2835
2967
|
"$type": "border",
|
|
2836
2968
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2837
2969
|
"isSource": true,
|
|
@@ -2850,7 +2982,11 @@
|
|
|
2850
2982
|
},
|
|
2851
2983
|
"border-sponsors-emphasis": {
|
|
2852
2984
|
"key": "{border.sponsors.emphasis}",
|
|
2853
|
-
"$value":
|
|
2985
|
+
"$value": {
|
|
2986
|
+
"color": "#bf4b8a",
|
|
2987
|
+
"style": "solid",
|
|
2988
|
+
"width": ["0.0625rem", "1px"]
|
|
2989
|
+
},
|
|
2854
2990
|
"$type": "border",
|
|
2855
2991
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2856
2992
|
"isSource": true,
|
|
@@ -2869,7 +3005,11 @@
|
|
|
2869
3005
|
},
|
|
2870
3006
|
"border-sponsors-muted": {
|
|
2871
3007
|
"key": "{border.sponsors.muted}",
|
|
2872
|
-
"$value":
|
|
3008
|
+
"$value": {
|
|
3009
|
+
"color": "#db61a266",
|
|
3010
|
+
"style": "solid",
|
|
3011
|
+
"width": ["0.0625rem", "1px"]
|
|
3012
|
+
},
|
|
2873
3013
|
"$type": "border",
|
|
2874
3014
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2875
3015
|
"isSource": true,
|
|
@@ -2888,7 +3028,11 @@
|
|
|
2888
3028
|
},
|
|
2889
3029
|
"border-success-emphasis": {
|
|
2890
3030
|
"key": "{border.success.emphasis}",
|
|
2891
|
-
"$value":
|
|
3031
|
+
"$value": {
|
|
3032
|
+
"color": "#1f6feb",
|
|
3033
|
+
"style": "solid",
|
|
3034
|
+
"width": ["0.0625rem", "1px"]
|
|
3035
|
+
},
|
|
2892
3036
|
"$type": "border",
|
|
2893
3037
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2894
3038
|
"isSource": true,
|
|
@@ -2907,7 +3051,11 @@
|
|
|
2907
3051
|
},
|
|
2908
3052
|
"border-success-muted": {
|
|
2909
3053
|
"key": "{border.success.muted}",
|
|
2910
|
-
"$value":
|
|
3054
|
+
"$value": {
|
|
3055
|
+
"color": "#388bfd66",
|
|
3056
|
+
"style": "solid",
|
|
3057
|
+
"width": ["0.0625rem", "1px"]
|
|
3058
|
+
},
|
|
2911
3059
|
"$type": "border",
|
|
2912
3060
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2913
3061
|
"isSource": true,
|
|
@@ -2926,7 +3074,11 @@
|
|
|
2926
3074
|
},
|
|
2927
3075
|
"border-transparent": {
|
|
2928
3076
|
"key": "{border.transparent}",
|
|
2929
|
-
"$value":
|
|
3077
|
+
"$value": {
|
|
3078
|
+
"color": "#00000000",
|
|
3079
|
+
"style": "solid",
|
|
3080
|
+
"width": ["0.0625rem", "1px"]
|
|
3081
|
+
},
|
|
2930
3082
|
"$type": "border",
|
|
2931
3083
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2932
3084
|
"isSource": true,
|
|
@@ -2945,7 +3097,11 @@
|
|
|
2945
3097
|
},
|
|
2946
3098
|
"border-upsell-emphasis": {
|
|
2947
3099
|
"key": "{border.upsell.emphasis}",
|
|
2948
|
-
"$value":
|
|
3100
|
+
"$value": {
|
|
3101
|
+
"color": "#8957e5",
|
|
3102
|
+
"style": "solid",
|
|
3103
|
+
"width": ["0.0625rem", "1px"]
|
|
3104
|
+
},
|
|
2949
3105
|
"$type": "border",
|
|
2950
3106
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2951
3107
|
"isSource": true,
|
|
@@ -2964,7 +3120,11 @@
|
|
|
2964
3120
|
},
|
|
2965
3121
|
"border-upsell-muted": {
|
|
2966
3122
|
"key": "{border.upsell.muted}",
|
|
2967
|
-
"$value":
|
|
3123
|
+
"$value": {
|
|
3124
|
+
"color": "#ab7df866",
|
|
3125
|
+
"style": "solid",
|
|
3126
|
+
"width": ["0.0625rem", "1px"]
|
|
3127
|
+
},
|
|
2968
3128
|
"$type": "border",
|
|
2969
3129
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2970
3130
|
"isSource": true,
|
|
@@ -6956,7 +7116,7 @@
|
|
|
6956
7116
|
},
|
|
6957
7117
|
"button-danger-shadow-selected": {
|
|
6958
7118
|
"key": "{button.danger.shadow.selected}",
|
|
6959
|
-
"$value": "
|
|
7119
|
+
"$value": "0 0 0 0 #000000",
|
|
6960
7120
|
"$type": "shadow",
|
|
6961
7121
|
"$extensions": {
|
|
6962
7122
|
"org.primer.figma": {
|
|
@@ -6969,10 +7129,22 @@
|
|
|
6969
7129
|
{
|
|
6970
7130
|
"color": "#3d1300",
|
|
6971
7131
|
"alpha": 0.2,
|
|
6972
|
-
"offsetX":
|
|
6973
|
-
|
|
6974
|
-
|
|
6975
|
-
|
|
7132
|
+
"offsetX": {
|
|
7133
|
+
"value": 0,
|
|
7134
|
+
"unit": "px"
|
|
7135
|
+
},
|
|
7136
|
+
"offsetY": {
|
|
7137
|
+
"value": 1,
|
|
7138
|
+
"unit": "px"
|
|
7139
|
+
},
|
|
7140
|
+
"blur": {
|
|
7141
|
+
"value": 0,
|
|
7142
|
+
"unit": "px"
|
|
7143
|
+
},
|
|
7144
|
+
"spread": {
|
|
7145
|
+
"value": 0,
|
|
7146
|
+
"unit": "px"
|
|
7147
|
+
},
|
|
6976
7148
|
"inset": true
|
|
6977
7149
|
}
|
|
6978
7150
|
],
|
|
@@ -6985,10 +7157,22 @@
|
|
|
6985
7157
|
{
|
|
6986
7158
|
"color": "#00000000",
|
|
6987
7159
|
"alpha": 0,
|
|
6988
|
-
"offsetX":
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
7160
|
+
"offsetX": {
|
|
7161
|
+
"value": 0,
|
|
7162
|
+
"unit": "px"
|
|
7163
|
+
},
|
|
7164
|
+
"offsetY": {
|
|
7165
|
+
"value": 0,
|
|
7166
|
+
"unit": "px"
|
|
7167
|
+
},
|
|
7168
|
+
"blur": {
|
|
7169
|
+
"value": 0,
|
|
7170
|
+
"unit": "px"
|
|
7171
|
+
},
|
|
7172
|
+
"spread": {
|
|
7173
|
+
"value": 0,
|
|
7174
|
+
"unit": "px"
|
|
7175
|
+
},
|
|
6992
7176
|
"inset": false
|
|
6993
7177
|
}
|
|
6994
7178
|
],
|
|
@@ -7005,10 +7189,22 @@
|
|
|
7005
7189
|
{
|
|
7006
7190
|
"color": "{base.color.transparent}",
|
|
7007
7191
|
"alpha": 0,
|
|
7008
|
-
"offsetX":
|
|
7009
|
-
|
|
7010
|
-
|
|
7011
|
-
|
|
7192
|
+
"offsetX": {
|
|
7193
|
+
"value": 0,
|
|
7194
|
+
"unit": "px"
|
|
7195
|
+
},
|
|
7196
|
+
"offsetY": {
|
|
7197
|
+
"value": 0,
|
|
7198
|
+
"unit": "px"
|
|
7199
|
+
},
|
|
7200
|
+
"blur": {
|
|
7201
|
+
"value": 0,
|
|
7202
|
+
"unit": "px"
|
|
7203
|
+
},
|
|
7204
|
+
"spread": {
|
|
7205
|
+
"value": 0,
|
|
7206
|
+
"unit": "px"
|
|
7207
|
+
},
|
|
7012
7208
|
"inset": false
|
|
7013
7209
|
}
|
|
7014
7210
|
],
|
|
@@ -7024,10 +7220,22 @@
|
|
|
7024
7220
|
{
|
|
7025
7221
|
"color": "{base.color.orange.9}",
|
|
7026
7222
|
"alpha": 0.2,
|
|
7027
|
-
"offsetX":
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
|
|
7223
|
+
"offsetX": {
|
|
7224
|
+
"value": 0,
|
|
7225
|
+
"unit": "px"
|
|
7226
|
+
},
|
|
7227
|
+
"offsetY": {
|
|
7228
|
+
"value": 1,
|
|
7229
|
+
"unit": "px"
|
|
7230
|
+
},
|
|
7231
|
+
"blur": {
|
|
7232
|
+
"value": 0,
|
|
7233
|
+
"unit": "px"
|
|
7234
|
+
},
|
|
7235
|
+
"spread": {
|
|
7236
|
+
"value": 0,
|
|
7237
|
+
"unit": "px"
|
|
7238
|
+
},
|
|
7031
7239
|
"inset": true
|
|
7032
7240
|
}
|
|
7033
7241
|
],
|
|
@@ -7040,10 +7248,22 @@
|
|
|
7040
7248
|
{
|
|
7041
7249
|
"color": "{base.color.transparent}",
|
|
7042
7250
|
"alpha": 0,
|
|
7043
|
-
"offsetX":
|
|
7044
|
-
|
|
7045
|
-
|
|
7046
|
-
|
|
7251
|
+
"offsetX": {
|
|
7252
|
+
"value": 0,
|
|
7253
|
+
"unit": "px"
|
|
7254
|
+
},
|
|
7255
|
+
"offsetY": {
|
|
7256
|
+
"value": 0,
|
|
7257
|
+
"unit": "px"
|
|
7258
|
+
},
|
|
7259
|
+
"blur": {
|
|
7260
|
+
"value": 0,
|
|
7261
|
+
"unit": "px"
|
|
7262
|
+
},
|
|
7263
|
+
"spread": {
|
|
7264
|
+
"value": 0,
|
|
7265
|
+
"unit": "px"
|
|
7266
|
+
},
|
|
7047
7267
|
"inset": false
|
|
7048
7268
|
}
|
|
7049
7269
|
],
|
|
@@ -7419,7 +7639,7 @@
|
|
|
7419
7639
|
},
|
|
7420
7640
|
"button-default-shadow-resting": {
|
|
7421
7641
|
"key": "{button.default.shadow.resting}",
|
|
7422
|
-
"$value": "
|
|
7642
|
+
"$value": "0 0 0 0 #000000",
|
|
7423
7643
|
"$type": "shadow",
|
|
7424
7644
|
"$extensions": {
|
|
7425
7645
|
"org.primer.figma": {
|
|
@@ -7432,10 +7652,22 @@
|
|
|
7432
7652
|
{
|
|
7433
7653
|
"color": "#00000000",
|
|
7434
7654
|
"alpha": 0,
|
|
7435
|
-
"offsetX":
|
|
7436
|
-
|
|
7437
|
-
|
|
7438
|
-
|
|
7655
|
+
"offsetX": {
|
|
7656
|
+
"value": 0,
|
|
7657
|
+
"unit": "px"
|
|
7658
|
+
},
|
|
7659
|
+
"offsetY": {
|
|
7660
|
+
"value": 0,
|
|
7661
|
+
"unit": "px"
|
|
7662
|
+
},
|
|
7663
|
+
"blur": {
|
|
7664
|
+
"value": 0,
|
|
7665
|
+
"unit": "px"
|
|
7666
|
+
},
|
|
7667
|
+
"spread": {
|
|
7668
|
+
"value": 0,
|
|
7669
|
+
"unit": "px"
|
|
7670
|
+
},
|
|
7439
7671
|
"inset": false
|
|
7440
7672
|
}
|
|
7441
7673
|
],
|
|
@@ -7452,10 +7684,22 @@
|
|
|
7452
7684
|
{
|
|
7453
7685
|
"color": "{base.color.transparent}",
|
|
7454
7686
|
"alpha": 0,
|
|
7455
|
-
"offsetX":
|
|
7456
|
-
|
|
7457
|
-
|
|
7458
|
-
|
|
7687
|
+
"offsetX": {
|
|
7688
|
+
"value": 0,
|
|
7689
|
+
"unit": "px"
|
|
7690
|
+
},
|
|
7691
|
+
"offsetY": {
|
|
7692
|
+
"value": 0,
|
|
7693
|
+
"unit": "px"
|
|
7694
|
+
},
|
|
7695
|
+
"blur": {
|
|
7696
|
+
"value": 0,
|
|
7697
|
+
"unit": "px"
|
|
7698
|
+
},
|
|
7699
|
+
"spread": {
|
|
7700
|
+
"value": 0,
|
|
7701
|
+
"unit": "px"
|
|
7702
|
+
},
|
|
7459
7703
|
"inset": false
|
|
7460
7704
|
}
|
|
7461
7705
|
],
|
|
@@ -7471,10 +7715,22 @@
|
|
|
7471
7715
|
{
|
|
7472
7716
|
"color": "{base.color.transparent}",
|
|
7473
7717
|
"alpha": 0,
|
|
7474
|
-
"offsetX":
|
|
7475
|
-
|
|
7476
|
-
|
|
7477
|
-
|
|
7718
|
+
"offsetX": {
|
|
7719
|
+
"value": 0,
|
|
7720
|
+
"unit": "px"
|
|
7721
|
+
},
|
|
7722
|
+
"offsetY": {
|
|
7723
|
+
"value": 0,
|
|
7724
|
+
"unit": "px"
|
|
7725
|
+
},
|
|
7726
|
+
"blur": {
|
|
7727
|
+
"value": 0,
|
|
7728
|
+
"unit": "px"
|
|
7729
|
+
},
|
|
7730
|
+
"spread": {
|
|
7731
|
+
"value": 0,
|
|
7732
|
+
"unit": "px"
|
|
7733
|
+
},
|
|
7478
7734
|
"inset": false
|
|
7479
7735
|
}
|
|
7480
7736
|
],
|
|
@@ -9178,7 +9434,7 @@
|
|
|
9178
9434
|
},
|
|
9179
9435
|
"button-outline-shadow-selected": {
|
|
9180
9436
|
"key": "{button.outline.shadow.selected}",
|
|
9181
|
-
"$value": "
|
|
9437
|
+
"$value": "0 0 0 0 #000000",
|
|
9182
9438
|
"$type": "shadow",
|
|
9183
9439
|
"$extensions": {
|
|
9184
9440
|
"org.primer.figma": {
|
|
@@ -9191,10 +9447,22 @@
|
|
|
9191
9447
|
{
|
|
9192
9448
|
"color": "#00000000",
|
|
9193
9449
|
"alpha": 0,
|
|
9194
|
-
"offsetX":
|
|
9195
|
-
|
|
9196
|
-
|
|
9197
|
-
|
|
9450
|
+
"offsetX": {
|
|
9451
|
+
"value": 0,
|
|
9452
|
+
"unit": "px"
|
|
9453
|
+
},
|
|
9454
|
+
"offsetY": {
|
|
9455
|
+
"value": 0,
|
|
9456
|
+
"unit": "px"
|
|
9457
|
+
},
|
|
9458
|
+
"blur": {
|
|
9459
|
+
"value": 0,
|
|
9460
|
+
"unit": "px"
|
|
9461
|
+
},
|
|
9462
|
+
"spread": {
|
|
9463
|
+
"value": 0,
|
|
9464
|
+
"unit": "px"
|
|
9465
|
+
},
|
|
9198
9466
|
"inset": false
|
|
9199
9467
|
}
|
|
9200
9468
|
],
|
|
@@ -9211,10 +9479,22 @@
|
|
|
9211
9479
|
{
|
|
9212
9480
|
"color": "{base.color.transparent}",
|
|
9213
9481
|
"alpha": 0,
|
|
9214
|
-
"offsetX":
|
|
9215
|
-
|
|
9216
|
-
|
|
9217
|
-
|
|
9482
|
+
"offsetX": {
|
|
9483
|
+
"value": 0,
|
|
9484
|
+
"unit": "px"
|
|
9485
|
+
},
|
|
9486
|
+
"offsetY": {
|
|
9487
|
+
"value": 0,
|
|
9488
|
+
"unit": "px"
|
|
9489
|
+
},
|
|
9490
|
+
"blur": {
|
|
9491
|
+
"value": 0,
|
|
9492
|
+
"unit": "px"
|
|
9493
|
+
},
|
|
9494
|
+
"spread": {
|
|
9495
|
+
"value": 0,
|
|
9496
|
+
"unit": "px"
|
|
9497
|
+
},
|
|
9218
9498
|
"inset": false
|
|
9219
9499
|
}
|
|
9220
9500
|
],
|
|
@@ -9230,10 +9510,22 @@
|
|
|
9230
9510
|
{
|
|
9231
9511
|
"color": "{base.color.transparent}",
|
|
9232
9512
|
"alpha": 0,
|
|
9233
|
-
"offsetX":
|
|
9234
|
-
|
|
9235
|
-
|
|
9236
|
-
|
|
9513
|
+
"offsetX": {
|
|
9514
|
+
"value": 0,
|
|
9515
|
+
"unit": "px"
|
|
9516
|
+
},
|
|
9517
|
+
"offsetY": {
|
|
9518
|
+
"value": 0,
|
|
9519
|
+
"unit": "px"
|
|
9520
|
+
},
|
|
9521
|
+
"blur": {
|
|
9522
|
+
"value": 0,
|
|
9523
|
+
"unit": "px"
|
|
9524
|
+
},
|
|
9525
|
+
"spread": {
|
|
9526
|
+
"value": 0,
|
|
9527
|
+
"unit": "px"
|
|
9528
|
+
},
|
|
9237
9529
|
"inset": false
|
|
9238
9530
|
}
|
|
9239
9531
|
],
|
|
@@ -10384,7 +10676,7 @@
|
|
|
10384
10676
|
},
|
|
10385
10677
|
"button-primary-shadow-selected": {
|
|
10386
10678
|
"key": "{button.primary.shadow.selected}",
|
|
10387
|
-
"$value": "
|
|
10679
|
+
"$value": "0 0 0 0 #000000",
|
|
10388
10680
|
"$type": "shadow",
|
|
10389
10681
|
"$extensions": {
|
|
10390
10682
|
"org.primer.figma": {
|
|
@@ -10397,10 +10689,22 @@
|
|
|
10397
10689
|
{
|
|
10398
10690
|
"color": "#051d4d",
|
|
10399
10691
|
"alpha": 0.3,
|
|
10400
|
-
"offsetX":
|
|
10401
|
-
|
|
10402
|
-
|
|
10403
|
-
|
|
10692
|
+
"offsetX": {
|
|
10693
|
+
"value": 0,
|
|
10694
|
+
"unit": "px"
|
|
10695
|
+
},
|
|
10696
|
+
"offsetY": {
|
|
10697
|
+
"value": 1,
|
|
10698
|
+
"unit": "px"
|
|
10699
|
+
},
|
|
10700
|
+
"blur": {
|
|
10701
|
+
"value": 0,
|
|
10702
|
+
"unit": "px"
|
|
10703
|
+
},
|
|
10704
|
+
"spread": {
|
|
10705
|
+
"value": 0,
|
|
10706
|
+
"unit": "px"
|
|
10707
|
+
},
|
|
10404
10708
|
"inset": true
|
|
10405
10709
|
}
|
|
10406
10710
|
],
|
|
@@ -10413,10 +10717,22 @@
|
|
|
10413
10717
|
{
|
|
10414
10718
|
"color": "#051d4d",
|
|
10415
10719
|
"alpha": 0.3,
|
|
10416
|
-
"offsetX":
|
|
10417
|
-
|
|
10418
|
-
|
|
10419
|
-
|
|
10720
|
+
"offsetX": {
|
|
10721
|
+
"value": 0,
|
|
10722
|
+
"unit": "px"
|
|
10723
|
+
},
|
|
10724
|
+
"offsetY": {
|
|
10725
|
+
"value": 1,
|
|
10726
|
+
"unit": "px"
|
|
10727
|
+
},
|
|
10728
|
+
"blur": {
|
|
10729
|
+
"value": 0,
|
|
10730
|
+
"unit": "px"
|
|
10731
|
+
},
|
|
10732
|
+
"spread": {
|
|
10733
|
+
"value": 0,
|
|
10734
|
+
"unit": "px"
|
|
10735
|
+
},
|
|
10420
10736
|
"inset": true
|
|
10421
10737
|
}
|
|
10422
10738
|
],
|
|
@@ -10429,10 +10745,22 @@
|
|
|
10429
10745
|
{
|
|
10430
10746
|
"color": "#00000000",
|
|
10431
10747
|
"alpha": 0,
|
|
10432
|
-
"offsetX":
|
|
10433
|
-
|
|
10434
|
-
|
|
10435
|
-
|
|
10748
|
+
"offsetX": {
|
|
10749
|
+
"value": 0,
|
|
10750
|
+
"unit": "px"
|
|
10751
|
+
},
|
|
10752
|
+
"offsetY": {
|
|
10753
|
+
"value": 0,
|
|
10754
|
+
"unit": "px"
|
|
10755
|
+
},
|
|
10756
|
+
"blur": {
|
|
10757
|
+
"value": 0,
|
|
10758
|
+
"unit": "px"
|
|
10759
|
+
},
|
|
10760
|
+
"spread": {
|
|
10761
|
+
"value": 0,
|
|
10762
|
+
"unit": "px"
|
|
10763
|
+
},
|
|
10436
10764
|
"inset": false
|
|
10437
10765
|
}
|
|
10438
10766
|
],
|
|
@@ -10449,10 +10777,22 @@
|
|
|
10449
10777
|
{
|
|
10450
10778
|
"color": "{base.color.transparent}",
|
|
10451
10779
|
"alpha": 0,
|
|
10452
|
-
"offsetX":
|
|
10453
|
-
|
|
10454
|
-
|
|
10455
|
-
|
|
10780
|
+
"offsetX": {
|
|
10781
|
+
"value": 0,
|
|
10782
|
+
"unit": "px"
|
|
10783
|
+
},
|
|
10784
|
+
"offsetY": {
|
|
10785
|
+
"value": 0,
|
|
10786
|
+
"unit": "px"
|
|
10787
|
+
},
|
|
10788
|
+
"blur": {
|
|
10789
|
+
"value": 0,
|
|
10790
|
+
"unit": "px"
|
|
10791
|
+
},
|
|
10792
|
+
"spread": {
|
|
10793
|
+
"value": 0,
|
|
10794
|
+
"unit": "px"
|
|
10795
|
+
},
|
|
10456
10796
|
"inset": false
|
|
10457
10797
|
}
|
|
10458
10798
|
],
|
|
@@ -10468,10 +10808,22 @@
|
|
|
10468
10808
|
{
|
|
10469
10809
|
"color": "{base.color.blue.9}",
|
|
10470
10810
|
"alpha": 0.3,
|
|
10471
|
-
"offsetX":
|
|
10472
|
-
|
|
10473
|
-
|
|
10474
|
-
|
|
10811
|
+
"offsetX": {
|
|
10812
|
+
"value": 0,
|
|
10813
|
+
"unit": "px"
|
|
10814
|
+
},
|
|
10815
|
+
"offsetY": {
|
|
10816
|
+
"value": 1,
|
|
10817
|
+
"unit": "px"
|
|
10818
|
+
},
|
|
10819
|
+
"blur": {
|
|
10820
|
+
"value": 0,
|
|
10821
|
+
"unit": "px"
|
|
10822
|
+
},
|
|
10823
|
+
"spread": {
|
|
10824
|
+
"value": 0,
|
|
10825
|
+
"unit": "px"
|
|
10826
|
+
},
|
|
10475
10827
|
"inset": true
|
|
10476
10828
|
}
|
|
10477
10829
|
],
|
|
@@ -10484,10 +10836,22 @@
|
|
|
10484
10836
|
{
|
|
10485
10837
|
"color": "{base.color.blue.9}",
|
|
10486
10838
|
"alpha": 0.3,
|
|
10487
|
-
"offsetX":
|
|
10488
|
-
|
|
10489
|
-
|
|
10490
|
-
|
|
10839
|
+
"offsetX": {
|
|
10840
|
+
"value": 0,
|
|
10841
|
+
"unit": "px"
|
|
10842
|
+
},
|
|
10843
|
+
"offsetY": {
|
|
10844
|
+
"value": 1,
|
|
10845
|
+
"unit": "px"
|
|
10846
|
+
},
|
|
10847
|
+
"blur": {
|
|
10848
|
+
"value": 0,
|
|
10849
|
+
"unit": "px"
|
|
10850
|
+
},
|
|
10851
|
+
"spread": {
|
|
10852
|
+
"value": 0,
|
|
10853
|
+
"unit": "px"
|
|
10854
|
+
},
|
|
10491
10855
|
"inset": true
|
|
10492
10856
|
}
|
|
10493
10857
|
],
|
|
@@ -10500,10 +10864,22 @@
|
|
|
10500
10864
|
{
|
|
10501
10865
|
"color": "{base.color.transparent}",
|
|
10502
10866
|
"alpha": 0,
|
|
10503
|
-
"offsetX":
|
|
10504
|
-
|
|
10505
|
-
|
|
10506
|
-
|
|
10867
|
+
"offsetX": {
|
|
10868
|
+
"value": 0,
|
|
10869
|
+
"unit": "px"
|
|
10870
|
+
},
|
|
10871
|
+
"offsetY": {
|
|
10872
|
+
"value": 0,
|
|
10873
|
+
"unit": "px"
|
|
10874
|
+
},
|
|
10875
|
+
"blur": {
|
|
10876
|
+
"value": 0,
|
|
10877
|
+
"unit": "px"
|
|
10878
|
+
},
|
|
10879
|
+
"spread": {
|
|
10880
|
+
"value": 0,
|
|
10881
|
+
"unit": "px"
|
|
10882
|
+
},
|
|
10507
10883
|
"inset": false
|
|
10508
10884
|
}
|
|
10509
10885
|
],
|
|
@@ -37256,6 +37632,10 @@
|
|
|
37256
37632
|
},
|
|
37257
37633
|
"org.primer.overrides": {
|
|
37258
37634
|
"dark": "#010409"
|
|
37635
|
+
},
|
|
37636
|
+
"org.primer.llm": {
|
|
37637
|
+
"doNotUse": true,
|
|
37638
|
+
"rules": "Avoid using raw black. Use semantic alternatives: fgColor.default for standard text, fgColor.muted for secondary text. Raw black/white ignore theme preferences and accessibility settings."
|
|
37259
37639
|
}
|
|
37260
37640
|
},
|
|
37261
37641
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -37272,6 +37652,10 @@
|
|
|
37272
37652
|
},
|
|
37273
37653
|
"org.primer.overrides": {
|
|
37274
37654
|
"dark": "{base.color.neutral.0}"
|
|
37655
|
+
},
|
|
37656
|
+
"org.primer.llm": {
|
|
37657
|
+
"doNotUse": true,
|
|
37658
|
+
"rules": "Avoid using raw black. Use semantic alternatives: fgColor.default for standard text, fgColor.muted for secondary text. Raw black/white ignore theme preferences and accessibility settings."
|
|
37275
37659
|
}
|
|
37276
37660
|
},
|
|
37277
37661
|
"key": "{fgColor.black}"
|
|
@@ -38245,6 +38629,10 @@
|
|
|
38245
38629
|
},
|
|
38246
38630
|
"org.primer.overrides": {
|
|
38247
38631
|
"dark": "#ffffff"
|
|
38632
|
+
},
|
|
38633
|
+
"org.primer.llm": {
|
|
38634
|
+
"doNotUse": true,
|
|
38635
|
+
"rules": "Avoid using raw white. Use semantic alternatives: fgColor.onEmphasis for text on dark backgrounds, fgColor.onInverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
38248
38636
|
}
|
|
38249
38637
|
},
|
|
38250
38638
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -38261,6 +38649,10 @@
|
|
|
38261
38649
|
},
|
|
38262
38650
|
"org.primer.overrides": {
|
|
38263
38651
|
"dark": "{base.color.neutral.13}"
|
|
38652
|
+
},
|
|
38653
|
+
"org.primer.llm": {
|
|
38654
|
+
"doNotUse": true,
|
|
38655
|
+
"rules": "Avoid using raw white. Use semantic alternatives: fgColor.onEmphasis for text on dark backgrounds, fgColor.onInverse for inverted contexts. Raw black/white ignore theme preferences and accessibility settings."
|
|
38264
38656
|
}
|
|
38265
38657
|
},
|
|
38266
38658
|
"key": "{fgColor.white}"
|
|
@@ -38286,7 +38678,10 @@
|
|
|
38286
38678
|
"$value": {
|
|
38287
38679
|
"color": "{focus.outlineColor}",
|
|
38288
38680
|
"style": "solid",
|
|
38289
|
-
"width":
|
|
38681
|
+
"width": {
|
|
38682
|
+
"value": 2,
|
|
38683
|
+
"unit": "px"
|
|
38684
|
+
}
|
|
38290
38685
|
},
|
|
38291
38686
|
"$type": "border",
|
|
38292
38687
|
"$description": "Focus ring outline for keyboard navigation and accessibility.",
|
|
@@ -47445,7 +47840,7 @@
|
|
|
47445
47840
|
},
|
|
47446
47841
|
"shadow-floating-large": {
|
|
47447
47842
|
"key": "{shadow.floating.large}",
|
|
47448
|
-
"$value": "
|
|
47843
|
+
"$value": "0 0 0 1px #3d444d, 0 24px 48px 0 #010409",
|
|
47449
47844
|
"$type": "shadow",
|
|
47450
47845
|
"$description": "Large floating shadow for modals and dialogs",
|
|
47451
47846
|
"$extensions": {
|
|
@@ -47459,18 +47854,42 @@
|
|
|
47459
47854
|
{
|
|
47460
47855
|
"color": "#3d444db3",
|
|
47461
47856
|
"alpha": 1,
|
|
47462
|
-
"offsetX":
|
|
47463
|
-
|
|
47464
|
-
|
|
47465
|
-
|
|
47857
|
+
"offsetX": {
|
|
47858
|
+
"value": 0,
|
|
47859
|
+
"unit": "px"
|
|
47860
|
+
},
|
|
47861
|
+
"offsetY": {
|
|
47862
|
+
"value": 0,
|
|
47863
|
+
"unit": "px"
|
|
47864
|
+
},
|
|
47865
|
+
"blur": {
|
|
47866
|
+
"value": 0,
|
|
47867
|
+
"unit": "px"
|
|
47868
|
+
},
|
|
47869
|
+
"spread": {
|
|
47870
|
+
"value": 1,
|
|
47871
|
+
"unit": "px"
|
|
47872
|
+
}
|
|
47466
47873
|
},
|
|
47467
47874
|
{
|
|
47468
47875
|
"color": "#010409",
|
|
47469
47876
|
"alpha": 1,
|
|
47470
|
-
"offsetX":
|
|
47471
|
-
|
|
47472
|
-
|
|
47473
|
-
|
|
47877
|
+
"offsetX": {
|
|
47878
|
+
"value": 0,
|
|
47879
|
+
"unit": "px"
|
|
47880
|
+
},
|
|
47881
|
+
"offsetY": {
|
|
47882
|
+
"value": 24,
|
|
47883
|
+
"unit": "px"
|
|
47884
|
+
},
|
|
47885
|
+
"blur": {
|
|
47886
|
+
"value": 48,
|
|
47887
|
+
"unit": "px"
|
|
47888
|
+
},
|
|
47889
|
+
"spread": {
|
|
47890
|
+
"value": 0,
|
|
47891
|
+
"unit": "px"
|
|
47892
|
+
}
|
|
47474
47893
|
}
|
|
47475
47894
|
],
|
|
47476
47895
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47490,18 +47909,42 @@
|
|
|
47490
47909
|
{
|
|
47491
47910
|
"color": "{overlay.borderColor}",
|
|
47492
47911
|
"alpha": 1,
|
|
47493
|
-
"offsetX":
|
|
47494
|
-
|
|
47495
|
-
|
|
47496
|
-
|
|
47912
|
+
"offsetX": {
|
|
47913
|
+
"value": 0,
|
|
47914
|
+
"unit": "px"
|
|
47915
|
+
},
|
|
47916
|
+
"offsetY": {
|
|
47917
|
+
"value": 0,
|
|
47918
|
+
"unit": "px"
|
|
47919
|
+
},
|
|
47920
|
+
"blur": {
|
|
47921
|
+
"value": 0,
|
|
47922
|
+
"unit": "px"
|
|
47923
|
+
},
|
|
47924
|
+
"spread": {
|
|
47925
|
+
"value": 1,
|
|
47926
|
+
"unit": "px"
|
|
47927
|
+
}
|
|
47497
47928
|
},
|
|
47498
47929
|
{
|
|
47499
47930
|
"color": "{base.color.neutral.0}",
|
|
47500
47931
|
"alpha": 1,
|
|
47501
|
-
"offsetX":
|
|
47502
|
-
|
|
47503
|
-
|
|
47504
|
-
|
|
47932
|
+
"offsetX": {
|
|
47933
|
+
"value": 0,
|
|
47934
|
+
"unit": "px"
|
|
47935
|
+
},
|
|
47936
|
+
"offsetY": {
|
|
47937
|
+
"value": 24,
|
|
47938
|
+
"unit": "px"
|
|
47939
|
+
},
|
|
47940
|
+
"blur": {
|
|
47941
|
+
"value": 48,
|
|
47942
|
+
"unit": "px"
|
|
47943
|
+
},
|
|
47944
|
+
"spread": {
|
|
47945
|
+
"value": 0,
|
|
47946
|
+
"unit": "px"
|
|
47947
|
+
}
|
|
47505
47948
|
}
|
|
47506
47949
|
],
|
|
47507
47950
|
"$type": "shadow",
|
|
@@ -47517,18 +47960,42 @@
|
|
|
47517
47960
|
{
|
|
47518
47961
|
"color": "{overlay.borderColor}",
|
|
47519
47962
|
"alpha": 1,
|
|
47520
|
-
"offsetX":
|
|
47521
|
-
|
|
47522
|
-
|
|
47523
|
-
|
|
47963
|
+
"offsetX": {
|
|
47964
|
+
"value": 0,
|
|
47965
|
+
"unit": "px"
|
|
47966
|
+
},
|
|
47967
|
+
"offsetY": {
|
|
47968
|
+
"value": 0,
|
|
47969
|
+
"unit": "px"
|
|
47970
|
+
},
|
|
47971
|
+
"blur": {
|
|
47972
|
+
"value": 0,
|
|
47973
|
+
"unit": "px"
|
|
47974
|
+
},
|
|
47975
|
+
"spread": {
|
|
47976
|
+
"value": 1,
|
|
47977
|
+
"unit": "px"
|
|
47978
|
+
}
|
|
47524
47979
|
},
|
|
47525
47980
|
{
|
|
47526
47981
|
"color": "{base.color.neutral.0}",
|
|
47527
47982
|
"alpha": 1,
|
|
47528
|
-
"offsetX":
|
|
47529
|
-
|
|
47530
|
-
|
|
47531
|
-
|
|
47983
|
+
"offsetX": {
|
|
47984
|
+
"value": 0,
|
|
47985
|
+
"unit": "px"
|
|
47986
|
+
},
|
|
47987
|
+
"offsetY": {
|
|
47988
|
+
"value": 24,
|
|
47989
|
+
"unit": "px"
|
|
47990
|
+
},
|
|
47991
|
+
"blur": {
|
|
47992
|
+
"value": 48,
|
|
47993
|
+
"unit": "px"
|
|
47994
|
+
},
|
|
47995
|
+
"spread": {
|
|
47996
|
+
"value": 0,
|
|
47997
|
+
"unit": "px"
|
|
47998
|
+
}
|
|
47532
47999
|
}
|
|
47533
48000
|
],
|
|
47534
48001
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47549,8 +48016,9 @@
|
|
|
47549
48016
|
},
|
|
47550
48017
|
"shadow-floating-legacy": {
|
|
47551
48018
|
"key": "{shadow.floating.legacy}",
|
|
47552
|
-
"$value": "
|
|
48019
|
+
"$value": "0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966",
|
|
47553
48020
|
"$type": "shadow",
|
|
48021
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47554
48022
|
"$extensions": {
|
|
47555
48023
|
"org.primer.figma": {},
|
|
47556
48024
|
"org.primer.overrides": {
|
|
@@ -47559,24 +48027,52 @@
|
|
|
47559
48027
|
{
|
|
47560
48028
|
"color": "#010409",
|
|
47561
48029
|
"alpha": 0.4,
|
|
47562
|
-
"offsetX":
|
|
47563
|
-
|
|
47564
|
-
|
|
47565
|
-
|
|
48030
|
+
"offsetX": {
|
|
48031
|
+
"value": 0,
|
|
48032
|
+
"unit": "px"
|
|
48033
|
+
},
|
|
48034
|
+
"offsetY": {
|
|
48035
|
+
"value": 6,
|
|
48036
|
+
"unit": "px"
|
|
48037
|
+
},
|
|
48038
|
+
"blur": {
|
|
48039
|
+
"value": 12,
|
|
48040
|
+
"unit": "px"
|
|
48041
|
+
},
|
|
48042
|
+
"spread": {
|
|
48043
|
+
"value": -3,
|
|
48044
|
+
"unit": "px"
|
|
48045
|
+
}
|
|
47566
48046
|
},
|
|
47567
48047
|
{
|
|
47568
48048
|
"color": "#010409",
|
|
47569
48049
|
"alpha": 0.4,
|
|
47570
|
-
"offsetX":
|
|
47571
|
-
|
|
47572
|
-
|
|
47573
|
-
|
|
48050
|
+
"offsetX": {
|
|
48051
|
+
"value": 0,
|
|
48052
|
+
"unit": "px"
|
|
48053
|
+
},
|
|
48054
|
+
"offsetY": {
|
|
48055
|
+
"value": 6,
|
|
48056
|
+
"unit": "px"
|
|
48057
|
+
},
|
|
48058
|
+
"blur": {
|
|
48059
|
+
"value": 18,
|
|
48060
|
+
"unit": "px"
|
|
48061
|
+
},
|
|
48062
|
+
"spread": {
|
|
48063
|
+
"value": 0,
|
|
48064
|
+
"unit": "px"
|
|
48065
|
+
}
|
|
47574
48066
|
}
|
|
47575
48067
|
],
|
|
47576
48068
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47577
48069
|
"isSource": true,
|
|
47578
48070
|
"$type": "shadow"
|
|
47579
48071
|
}
|
|
48072
|
+
},
|
|
48073
|
+
"org.primer.llm": {
|
|
48074
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48075
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47580
48076
|
}
|
|
47581
48077
|
},
|
|
47582
48078
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47586,21 +48082,46 @@
|
|
|
47586
48082
|
{
|
|
47587
48083
|
"color": "{base.color.neutral.0}",
|
|
47588
48084
|
"alpha": 0.4,
|
|
47589
|
-
"offsetX":
|
|
47590
|
-
|
|
47591
|
-
|
|
47592
|
-
|
|
48085
|
+
"offsetX": {
|
|
48086
|
+
"value": 0,
|
|
48087
|
+
"unit": "px"
|
|
48088
|
+
},
|
|
48089
|
+
"offsetY": {
|
|
48090
|
+
"value": 6,
|
|
48091
|
+
"unit": "px"
|
|
48092
|
+
},
|
|
48093
|
+
"blur": {
|
|
48094
|
+
"value": 12,
|
|
48095
|
+
"unit": "px"
|
|
48096
|
+
},
|
|
48097
|
+
"spread": {
|
|
48098
|
+
"value": -3,
|
|
48099
|
+
"unit": "px"
|
|
48100
|
+
}
|
|
47593
48101
|
},
|
|
47594
48102
|
{
|
|
47595
48103
|
"color": "{base.color.neutral.0}",
|
|
47596
48104
|
"alpha": 0.4,
|
|
47597
|
-
"offsetX":
|
|
47598
|
-
|
|
47599
|
-
|
|
47600
|
-
|
|
48105
|
+
"offsetX": {
|
|
48106
|
+
"value": 0,
|
|
48107
|
+
"unit": "px"
|
|
48108
|
+
},
|
|
48109
|
+
"offsetY": {
|
|
48110
|
+
"value": 6,
|
|
48111
|
+
"unit": "px"
|
|
48112
|
+
},
|
|
48113
|
+
"blur": {
|
|
48114
|
+
"value": 18,
|
|
48115
|
+
"unit": "px"
|
|
48116
|
+
},
|
|
48117
|
+
"spread": {
|
|
48118
|
+
"value": 0,
|
|
48119
|
+
"unit": "px"
|
|
48120
|
+
}
|
|
47601
48121
|
}
|
|
47602
48122
|
],
|
|
47603
48123
|
"$type": "shadow",
|
|
48124
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47604
48125
|
"$extensions": {
|
|
47605
48126
|
"org.primer.figma": {},
|
|
47606
48127
|
"org.primer.overrides": {
|
|
@@ -47609,24 +48130,52 @@
|
|
|
47609
48130
|
{
|
|
47610
48131
|
"color": "{base.color.neutral.0}",
|
|
47611
48132
|
"alpha": 0.4,
|
|
47612
|
-
"offsetX":
|
|
47613
|
-
|
|
47614
|
-
|
|
47615
|
-
|
|
48133
|
+
"offsetX": {
|
|
48134
|
+
"value": 0,
|
|
48135
|
+
"unit": "px"
|
|
48136
|
+
},
|
|
48137
|
+
"offsetY": {
|
|
48138
|
+
"value": 6,
|
|
48139
|
+
"unit": "px"
|
|
48140
|
+
},
|
|
48141
|
+
"blur": {
|
|
48142
|
+
"value": 12,
|
|
48143
|
+
"unit": "px"
|
|
48144
|
+
},
|
|
48145
|
+
"spread": {
|
|
48146
|
+
"value": -3,
|
|
48147
|
+
"unit": "px"
|
|
48148
|
+
}
|
|
47616
48149
|
},
|
|
47617
48150
|
{
|
|
47618
48151
|
"color": "{base.color.neutral.0}",
|
|
47619
48152
|
"alpha": 0.4,
|
|
47620
|
-
"offsetX":
|
|
47621
|
-
|
|
47622
|
-
|
|
47623
|
-
|
|
48153
|
+
"offsetX": {
|
|
48154
|
+
"value": 0,
|
|
48155
|
+
"unit": "px"
|
|
48156
|
+
},
|
|
48157
|
+
"offsetY": {
|
|
48158
|
+
"value": 6,
|
|
48159
|
+
"unit": "px"
|
|
48160
|
+
},
|
|
48161
|
+
"blur": {
|
|
48162
|
+
"value": 18,
|
|
48163
|
+
"unit": "px"
|
|
48164
|
+
},
|
|
48165
|
+
"spread": {
|
|
48166
|
+
"value": 0,
|
|
48167
|
+
"unit": "px"
|
|
48168
|
+
}
|
|
47624
48169
|
}
|
|
47625
48170
|
],
|
|
47626
48171
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47627
48172
|
"isSource": true,
|
|
47628
48173
|
"$type": "shadow"
|
|
47629
48174
|
}
|
|
48175
|
+
},
|
|
48176
|
+
"org.primer.llm": {
|
|
48177
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48178
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47630
48179
|
}
|
|
47631
48180
|
},
|
|
47632
48181
|
"key": "{shadow.floating.legacy}"
|
|
@@ -47637,8 +48186,9 @@
|
|
|
47637
48186
|
},
|
|
47638
48187
|
"shadow-floating-medium": {
|
|
47639
48188
|
"key": "{shadow.floating.medium}",
|
|
47640
|
-
"$value": "
|
|
48189
|
+
"$value": "0 0 0 1px #3d444d, 0 8px 16px -4px #01040966, 0 4px 32px -4px #01040966, 0 24px 48px -12px #01040966, 0 48px 96px -24px #01040966",
|
|
47641
48190
|
"$type": "shadow",
|
|
48191
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47642
48192
|
"$extensions": {
|
|
47643
48193
|
"org.primer.figma": {
|
|
47644
48194
|
"collection": "mode",
|
|
@@ -47650,48 +48200,112 @@
|
|
|
47650
48200
|
{
|
|
47651
48201
|
"color": "#3d444db3",
|
|
47652
48202
|
"alpha": 1,
|
|
47653
|
-
"offsetX":
|
|
47654
|
-
|
|
47655
|
-
|
|
47656
|
-
|
|
48203
|
+
"offsetX": {
|
|
48204
|
+
"value": 0,
|
|
48205
|
+
"unit": "px"
|
|
48206
|
+
},
|
|
48207
|
+
"offsetY": {
|
|
48208
|
+
"value": 0,
|
|
48209
|
+
"unit": "px"
|
|
48210
|
+
},
|
|
48211
|
+
"blur": {
|
|
48212
|
+
"value": 0,
|
|
48213
|
+
"unit": "px"
|
|
48214
|
+
},
|
|
48215
|
+
"spread": {
|
|
48216
|
+
"value": 1,
|
|
48217
|
+
"unit": "px"
|
|
48218
|
+
}
|
|
47657
48219
|
},
|
|
47658
48220
|
{
|
|
47659
48221
|
"color": "#010409",
|
|
47660
48222
|
"alpha": 0.4,
|
|
47661
|
-
"offsetX":
|
|
47662
|
-
|
|
47663
|
-
|
|
47664
|
-
|
|
48223
|
+
"offsetX": {
|
|
48224
|
+
"value": 0,
|
|
48225
|
+
"unit": "px"
|
|
48226
|
+
},
|
|
48227
|
+
"offsetY": {
|
|
48228
|
+
"value": 8,
|
|
48229
|
+
"unit": "px"
|
|
48230
|
+
},
|
|
48231
|
+
"blur": {
|
|
48232
|
+
"value": 16,
|
|
48233
|
+
"unit": "px"
|
|
48234
|
+
},
|
|
48235
|
+
"spread": {
|
|
48236
|
+
"value": -4,
|
|
48237
|
+
"unit": "px"
|
|
48238
|
+
}
|
|
47665
48239
|
},
|
|
47666
48240
|
{
|
|
47667
48241
|
"color": "#010409",
|
|
47668
48242
|
"alpha": 0.4,
|
|
47669
|
-
"offsetX":
|
|
47670
|
-
|
|
47671
|
-
|
|
47672
|
-
|
|
48243
|
+
"offsetX": {
|
|
48244
|
+
"value": 0,
|
|
48245
|
+
"unit": "px"
|
|
48246
|
+
},
|
|
48247
|
+
"offsetY": {
|
|
48248
|
+
"value": 4,
|
|
48249
|
+
"unit": "px"
|
|
48250
|
+
},
|
|
48251
|
+
"blur": {
|
|
48252
|
+
"value": 32,
|
|
48253
|
+
"unit": "px"
|
|
48254
|
+
},
|
|
48255
|
+
"spread": {
|
|
48256
|
+
"value": -4,
|
|
48257
|
+
"unit": "px"
|
|
48258
|
+
}
|
|
47673
48259
|
},
|
|
47674
48260
|
{
|
|
47675
48261
|
"color": "#010409",
|
|
47676
48262
|
"alpha": 0.4,
|
|
47677
|
-
"offsetX":
|
|
47678
|
-
|
|
47679
|
-
|
|
47680
|
-
|
|
48263
|
+
"offsetX": {
|
|
48264
|
+
"value": 0,
|
|
48265
|
+
"unit": "px"
|
|
48266
|
+
},
|
|
48267
|
+
"offsetY": {
|
|
48268
|
+
"value": 24,
|
|
48269
|
+
"unit": "px"
|
|
48270
|
+
},
|
|
48271
|
+
"blur": {
|
|
48272
|
+
"value": 48,
|
|
48273
|
+
"unit": "px"
|
|
48274
|
+
},
|
|
48275
|
+
"spread": {
|
|
48276
|
+
"value": -12,
|
|
48277
|
+
"unit": "px"
|
|
48278
|
+
}
|
|
47681
48279
|
},
|
|
47682
48280
|
{
|
|
47683
48281
|
"color": "#010409",
|
|
47684
48282
|
"alpha": 0.4,
|
|
47685
|
-
"offsetX":
|
|
47686
|
-
|
|
47687
|
-
|
|
47688
|
-
|
|
48283
|
+
"offsetX": {
|
|
48284
|
+
"value": 0,
|
|
48285
|
+
"unit": "px"
|
|
48286
|
+
},
|
|
48287
|
+
"offsetY": {
|
|
48288
|
+
"value": 48,
|
|
48289
|
+
"unit": "px"
|
|
48290
|
+
},
|
|
48291
|
+
"blur": {
|
|
48292
|
+
"value": 96,
|
|
48293
|
+
"unit": "px"
|
|
48294
|
+
},
|
|
48295
|
+
"spread": {
|
|
48296
|
+
"value": -24,
|
|
48297
|
+
"unit": "px"
|
|
48298
|
+
}
|
|
47689
48299
|
}
|
|
47690
48300
|
],
|
|
47691
48301
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47692
48302
|
"isSource": true,
|
|
47693
48303
|
"$type": "shadow"
|
|
47694
48304
|
}
|
|
48305
|
+
},
|
|
48306
|
+
"org.primer.llm": {
|
|
48307
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48308
|
+
"rules": "Use for medium-sized floating elements like popovers and action menus. More prominent than small but less than dialogs. Do NOT use for full modals."
|
|
47695
48309
|
}
|
|
47696
48310
|
},
|
|
47697
48311
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47701,45 +48315,106 @@
|
|
|
47701
48315
|
{
|
|
47702
48316
|
"color": "{overlay.borderColor}",
|
|
47703
48317
|
"alpha": 1,
|
|
47704
|
-
"offsetX":
|
|
47705
|
-
|
|
47706
|
-
|
|
47707
|
-
|
|
48318
|
+
"offsetX": {
|
|
48319
|
+
"value": 0,
|
|
48320
|
+
"unit": "px"
|
|
48321
|
+
},
|
|
48322
|
+
"offsetY": {
|
|
48323
|
+
"value": 0,
|
|
48324
|
+
"unit": "px"
|
|
48325
|
+
},
|
|
48326
|
+
"blur": {
|
|
48327
|
+
"value": 0,
|
|
48328
|
+
"unit": "px"
|
|
48329
|
+
},
|
|
48330
|
+
"spread": {
|
|
48331
|
+
"value": 1,
|
|
48332
|
+
"unit": "px"
|
|
48333
|
+
}
|
|
47708
48334
|
},
|
|
47709
48335
|
{
|
|
47710
48336
|
"color": "{base.color.neutral.0}",
|
|
47711
48337
|
"alpha": 0.4,
|
|
47712
|
-
"offsetX":
|
|
47713
|
-
|
|
47714
|
-
|
|
47715
|
-
|
|
48338
|
+
"offsetX": {
|
|
48339
|
+
"value": 0,
|
|
48340
|
+
"unit": "px"
|
|
48341
|
+
},
|
|
48342
|
+
"offsetY": {
|
|
48343
|
+
"value": 8,
|
|
48344
|
+
"unit": "px"
|
|
48345
|
+
},
|
|
48346
|
+
"blur": {
|
|
48347
|
+
"value": 16,
|
|
48348
|
+
"unit": "px"
|
|
48349
|
+
},
|
|
48350
|
+
"spread": {
|
|
48351
|
+
"value": -4,
|
|
48352
|
+
"unit": "px"
|
|
48353
|
+
}
|
|
47716
48354
|
},
|
|
47717
48355
|
{
|
|
47718
48356
|
"color": "{base.color.neutral.0}",
|
|
47719
48357
|
"alpha": 0.4,
|
|
47720
|
-
"offsetX":
|
|
47721
|
-
|
|
47722
|
-
|
|
47723
|
-
|
|
48358
|
+
"offsetX": {
|
|
48359
|
+
"value": 0,
|
|
48360
|
+
"unit": "px"
|
|
48361
|
+
},
|
|
48362
|
+
"offsetY": {
|
|
48363
|
+
"value": 4,
|
|
48364
|
+
"unit": "px"
|
|
48365
|
+
},
|
|
48366
|
+
"blur": {
|
|
48367
|
+
"value": 32,
|
|
48368
|
+
"unit": "px"
|
|
48369
|
+
},
|
|
48370
|
+
"spread": {
|
|
48371
|
+
"value": -4,
|
|
48372
|
+
"unit": "px"
|
|
48373
|
+
}
|
|
47724
48374
|
},
|
|
47725
48375
|
{
|
|
47726
48376
|
"color": "{base.color.neutral.0}",
|
|
47727
48377
|
"alpha": 0.4,
|
|
47728
|
-
"offsetX":
|
|
47729
|
-
|
|
47730
|
-
|
|
47731
|
-
|
|
48378
|
+
"offsetX": {
|
|
48379
|
+
"value": 0,
|
|
48380
|
+
"unit": "px"
|
|
48381
|
+
},
|
|
48382
|
+
"offsetY": {
|
|
48383
|
+
"value": 24,
|
|
48384
|
+
"unit": "px"
|
|
48385
|
+
},
|
|
48386
|
+
"blur": {
|
|
48387
|
+
"value": 48,
|
|
48388
|
+
"unit": "px"
|
|
48389
|
+
},
|
|
48390
|
+
"spread": {
|
|
48391
|
+
"value": -12,
|
|
48392
|
+
"unit": "px"
|
|
48393
|
+
}
|
|
47732
48394
|
},
|
|
47733
48395
|
{
|
|
47734
48396
|
"color": "{base.color.neutral.0}",
|
|
47735
48397
|
"alpha": 0.4,
|
|
47736
|
-
"offsetX":
|
|
47737
|
-
|
|
47738
|
-
|
|
47739
|
-
|
|
48398
|
+
"offsetX": {
|
|
48399
|
+
"value": 0,
|
|
48400
|
+
"unit": "px"
|
|
48401
|
+
},
|
|
48402
|
+
"offsetY": {
|
|
48403
|
+
"value": 48,
|
|
48404
|
+
"unit": "px"
|
|
48405
|
+
},
|
|
48406
|
+
"blur": {
|
|
48407
|
+
"value": 96,
|
|
48408
|
+
"unit": "px"
|
|
48409
|
+
},
|
|
48410
|
+
"spread": {
|
|
48411
|
+
"value": -24,
|
|
48412
|
+
"unit": "px"
|
|
48413
|
+
}
|
|
47740
48414
|
}
|
|
47741
48415
|
],
|
|
47742
48416
|
"$type": "shadow",
|
|
48417
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47743
48418
|
"$extensions": {
|
|
47744
48419
|
"org.primer.figma": {
|
|
47745
48420
|
"collection": "mode",
|
|
@@ -47751,48 +48426,112 @@
|
|
|
47751
48426
|
{
|
|
47752
48427
|
"color": "{overlay.borderColor}",
|
|
47753
48428
|
"alpha": 1,
|
|
47754
|
-
"offsetX":
|
|
47755
|
-
|
|
47756
|
-
|
|
47757
|
-
|
|
48429
|
+
"offsetX": {
|
|
48430
|
+
"value": 0,
|
|
48431
|
+
"unit": "px"
|
|
48432
|
+
},
|
|
48433
|
+
"offsetY": {
|
|
48434
|
+
"value": 0,
|
|
48435
|
+
"unit": "px"
|
|
48436
|
+
},
|
|
48437
|
+
"blur": {
|
|
48438
|
+
"value": 0,
|
|
48439
|
+
"unit": "px"
|
|
48440
|
+
},
|
|
48441
|
+
"spread": {
|
|
48442
|
+
"value": 1,
|
|
48443
|
+
"unit": "px"
|
|
48444
|
+
}
|
|
47758
48445
|
},
|
|
47759
48446
|
{
|
|
47760
48447
|
"color": "{base.color.neutral.0}",
|
|
47761
48448
|
"alpha": 0.4,
|
|
47762
|
-
"offsetX":
|
|
47763
|
-
|
|
47764
|
-
|
|
47765
|
-
|
|
48449
|
+
"offsetX": {
|
|
48450
|
+
"value": 0,
|
|
48451
|
+
"unit": "px"
|
|
48452
|
+
},
|
|
48453
|
+
"offsetY": {
|
|
48454
|
+
"value": 8,
|
|
48455
|
+
"unit": "px"
|
|
48456
|
+
},
|
|
48457
|
+
"blur": {
|
|
48458
|
+
"value": 16,
|
|
48459
|
+
"unit": "px"
|
|
48460
|
+
},
|
|
48461
|
+
"spread": {
|
|
48462
|
+
"value": -4,
|
|
48463
|
+
"unit": "px"
|
|
48464
|
+
}
|
|
47766
48465
|
},
|
|
47767
48466
|
{
|
|
47768
48467
|
"color": "{base.color.neutral.0}",
|
|
47769
48468
|
"alpha": 0.4,
|
|
47770
|
-
"offsetX":
|
|
47771
|
-
|
|
47772
|
-
|
|
47773
|
-
|
|
48469
|
+
"offsetX": {
|
|
48470
|
+
"value": 0,
|
|
48471
|
+
"unit": "px"
|
|
48472
|
+
},
|
|
48473
|
+
"offsetY": {
|
|
48474
|
+
"value": 4,
|
|
48475
|
+
"unit": "px"
|
|
48476
|
+
},
|
|
48477
|
+
"blur": {
|
|
48478
|
+
"value": 32,
|
|
48479
|
+
"unit": "px"
|
|
48480
|
+
},
|
|
48481
|
+
"spread": {
|
|
48482
|
+
"value": -4,
|
|
48483
|
+
"unit": "px"
|
|
48484
|
+
}
|
|
47774
48485
|
},
|
|
47775
48486
|
{
|
|
47776
48487
|
"color": "{base.color.neutral.0}",
|
|
47777
48488
|
"alpha": 0.4,
|
|
47778
|
-
"offsetX":
|
|
47779
|
-
|
|
47780
|
-
|
|
47781
|
-
|
|
48489
|
+
"offsetX": {
|
|
48490
|
+
"value": 0,
|
|
48491
|
+
"unit": "px"
|
|
48492
|
+
},
|
|
48493
|
+
"offsetY": {
|
|
48494
|
+
"value": 24,
|
|
48495
|
+
"unit": "px"
|
|
48496
|
+
},
|
|
48497
|
+
"blur": {
|
|
48498
|
+
"value": 48,
|
|
48499
|
+
"unit": "px"
|
|
48500
|
+
},
|
|
48501
|
+
"spread": {
|
|
48502
|
+
"value": -12,
|
|
48503
|
+
"unit": "px"
|
|
48504
|
+
}
|
|
47782
48505
|
},
|
|
47783
48506
|
{
|
|
47784
48507
|
"color": "{base.color.neutral.0}",
|
|
47785
48508
|
"alpha": 0.4,
|
|
47786
|
-
"offsetX":
|
|
47787
|
-
|
|
47788
|
-
|
|
47789
|
-
|
|
48509
|
+
"offsetX": {
|
|
48510
|
+
"value": 0,
|
|
48511
|
+
"unit": "px"
|
|
48512
|
+
},
|
|
48513
|
+
"offsetY": {
|
|
48514
|
+
"value": 48,
|
|
48515
|
+
"unit": "px"
|
|
48516
|
+
},
|
|
48517
|
+
"blur": {
|
|
48518
|
+
"value": 96,
|
|
48519
|
+
"unit": "px"
|
|
48520
|
+
},
|
|
48521
|
+
"spread": {
|
|
48522
|
+
"value": -24,
|
|
48523
|
+
"unit": "px"
|
|
48524
|
+
}
|
|
47790
48525
|
}
|
|
47791
48526
|
],
|
|
47792
48527
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47793
48528
|
"isSource": true,
|
|
47794
48529
|
"$type": "shadow"
|
|
47795
48530
|
}
|
|
48531
|
+
},
|
|
48532
|
+
"org.primer.llm": {
|
|
48533
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48534
|
+
"rules": "Use for medium-sized floating elements like popovers and action menus. More prominent than small but less than dialogs. Do NOT use for full modals."
|
|
47796
48535
|
}
|
|
47797
48536
|
},
|
|
47798
48537
|
"key": "{shadow.floating.medium}"
|
|
@@ -47803,7 +48542,7 @@
|
|
|
47803
48542
|
},
|
|
47804
48543
|
"shadow-floating-small": {
|
|
47805
48544
|
"key": "{shadow.floating.small}",
|
|
47806
|
-
"$value": "
|
|
48545
|
+
"$value": "0 0 0 1px #3d444d, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966",
|
|
47807
48546
|
"$type": "shadow",
|
|
47808
48547
|
"$description": "Small floating shadow for dropdowns, tooltips, and small overlays",
|
|
47809
48548
|
"$extensions": {
|
|
@@ -47817,26 +48556,62 @@
|
|
|
47817
48556
|
{
|
|
47818
48557
|
"color": "#3d444db3",
|
|
47819
48558
|
"alpha": 1,
|
|
47820
|
-
"offsetX":
|
|
47821
|
-
|
|
47822
|
-
|
|
47823
|
-
|
|
48559
|
+
"offsetX": {
|
|
48560
|
+
"value": 0,
|
|
48561
|
+
"unit": "px"
|
|
48562
|
+
},
|
|
48563
|
+
"offsetY": {
|
|
48564
|
+
"value": 0,
|
|
48565
|
+
"unit": "px"
|
|
48566
|
+
},
|
|
48567
|
+
"blur": {
|
|
48568
|
+
"value": 0,
|
|
48569
|
+
"unit": "px"
|
|
48570
|
+
},
|
|
48571
|
+
"spread": {
|
|
48572
|
+
"value": 1,
|
|
48573
|
+
"unit": "px"
|
|
48574
|
+
}
|
|
47824
48575
|
},
|
|
47825
48576
|
{
|
|
47826
48577
|
"color": "#010409",
|
|
47827
48578
|
"alpha": 0.4,
|
|
47828
|
-
"offsetX":
|
|
47829
|
-
|
|
47830
|
-
|
|
47831
|
-
|
|
48579
|
+
"offsetX": {
|
|
48580
|
+
"value": 0,
|
|
48581
|
+
"unit": "px"
|
|
48582
|
+
},
|
|
48583
|
+
"offsetY": {
|
|
48584
|
+
"value": 6,
|
|
48585
|
+
"unit": "px"
|
|
48586
|
+
},
|
|
48587
|
+
"blur": {
|
|
48588
|
+
"value": 12,
|
|
48589
|
+
"unit": "px"
|
|
48590
|
+
},
|
|
48591
|
+
"spread": {
|
|
48592
|
+
"value": -3,
|
|
48593
|
+
"unit": "px"
|
|
48594
|
+
}
|
|
47832
48595
|
},
|
|
47833
48596
|
{
|
|
47834
48597
|
"color": "#010409",
|
|
47835
48598
|
"alpha": 0.4,
|
|
47836
|
-
"offsetX":
|
|
47837
|
-
|
|
47838
|
-
|
|
47839
|
-
|
|
48599
|
+
"offsetX": {
|
|
48600
|
+
"value": 0,
|
|
48601
|
+
"unit": "px"
|
|
48602
|
+
},
|
|
48603
|
+
"offsetY": {
|
|
48604
|
+
"value": 6,
|
|
48605
|
+
"unit": "px"
|
|
48606
|
+
},
|
|
48607
|
+
"blur": {
|
|
48608
|
+
"value": 18,
|
|
48609
|
+
"unit": "px"
|
|
48610
|
+
},
|
|
48611
|
+
"spread": {
|
|
48612
|
+
"value": 0,
|
|
48613
|
+
"unit": "px"
|
|
48614
|
+
}
|
|
47840
48615
|
}
|
|
47841
48616
|
],
|
|
47842
48617
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47856,26 +48631,62 @@
|
|
|
47856
48631
|
{
|
|
47857
48632
|
"color": "{overlay.borderColor}",
|
|
47858
48633
|
"alpha": 1,
|
|
47859
|
-
"offsetX":
|
|
47860
|
-
|
|
47861
|
-
|
|
47862
|
-
|
|
48634
|
+
"offsetX": {
|
|
48635
|
+
"value": 0,
|
|
48636
|
+
"unit": "px"
|
|
48637
|
+
},
|
|
48638
|
+
"offsetY": {
|
|
48639
|
+
"value": 0,
|
|
48640
|
+
"unit": "px"
|
|
48641
|
+
},
|
|
48642
|
+
"blur": {
|
|
48643
|
+
"value": 0,
|
|
48644
|
+
"unit": "px"
|
|
48645
|
+
},
|
|
48646
|
+
"spread": {
|
|
48647
|
+
"value": 1,
|
|
48648
|
+
"unit": "px"
|
|
48649
|
+
}
|
|
47863
48650
|
},
|
|
47864
48651
|
{
|
|
47865
48652
|
"color": "{base.color.neutral.0}",
|
|
47866
48653
|
"alpha": 0.4,
|
|
47867
|
-
"offsetX":
|
|
47868
|
-
|
|
47869
|
-
|
|
47870
|
-
|
|
48654
|
+
"offsetX": {
|
|
48655
|
+
"value": 0,
|
|
48656
|
+
"unit": "px"
|
|
48657
|
+
},
|
|
48658
|
+
"offsetY": {
|
|
48659
|
+
"value": 6,
|
|
48660
|
+
"unit": "px"
|
|
48661
|
+
},
|
|
48662
|
+
"blur": {
|
|
48663
|
+
"value": 12,
|
|
48664
|
+
"unit": "px"
|
|
48665
|
+
},
|
|
48666
|
+
"spread": {
|
|
48667
|
+
"value": -3,
|
|
48668
|
+
"unit": "px"
|
|
48669
|
+
}
|
|
47871
48670
|
},
|
|
47872
48671
|
{
|
|
47873
48672
|
"color": "{base.color.neutral.0}",
|
|
47874
48673
|
"alpha": 0.4,
|
|
47875
|
-
"offsetX":
|
|
47876
|
-
|
|
47877
|
-
|
|
47878
|
-
|
|
48674
|
+
"offsetX": {
|
|
48675
|
+
"value": 0,
|
|
48676
|
+
"unit": "px"
|
|
48677
|
+
},
|
|
48678
|
+
"offsetY": {
|
|
48679
|
+
"value": 6,
|
|
48680
|
+
"unit": "px"
|
|
48681
|
+
},
|
|
48682
|
+
"blur": {
|
|
48683
|
+
"value": 18,
|
|
48684
|
+
"unit": "px"
|
|
48685
|
+
},
|
|
48686
|
+
"spread": {
|
|
48687
|
+
"value": 0,
|
|
48688
|
+
"unit": "px"
|
|
48689
|
+
}
|
|
47879
48690
|
}
|
|
47880
48691
|
],
|
|
47881
48692
|
"$type": "shadow",
|
|
@@ -47891,26 +48702,62 @@
|
|
|
47891
48702
|
{
|
|
47892
48703
|
"color": "{overlay.borderColor}",
|
|
47893
48704
|
"alpha": 1,
|
|
47894
|
-
"offsetX":
|
|
47895
|
-
|
|
47896
|
-
|
|
47897
|
-
|
|
48705
|
+
"offsetX": {
|
|
48706
|
+
"value": 0,
|
|
48707
|
+
"unit": "px"
|
|
48708
|
+
},
|
|
48709
|
+
"offsetY": {
|
|
48710
|
+
"value": 0,
|
|
48711
|
+
"unit": "px"
|
|
48712
|
+
},
|
|
48713
|
+
"blur": {
|
|
48714
|
+
"value": 0,
|
|
48715
|
+
"unit": "px"
|
|
48716
|
+
},
|
|
48717
|
+
"spread": {
|
|
48718
|
+
"value": 1,
|
|
48719
|
+
"unit": "px"
|
|
48720
|
+
}
|
|
47898
48721
|
},
|
|
47899
48722
|
{
|
|
47900
48723
|
"color": "{base.color.neutral.0}",
|
|
47901
48724
|
"alpha": 0.4,
|
|
47902
|
-
"offsetX":
|
|
47903
|
-
|
|
47904
|
-
|
|
47905
|
-
|
|
48725
|
+
"offsetX": {
|
|
48726
|
+
"value": 0,
|
|
48727
|
+
"unit": "px"
|
|
48728
|
+
},
|
|
48729
|
+
"offsetY": {
|
|
48730
|
+
"value": 6,
|
|
48731
|
+
"unit": "px"
|
|
48732
|
+
},
|
|
48733
|
+
"blur": {
|
|
48734
|
+
"value": 12,
|
|
48735
|
+
"unit": "px"
|
|
48736
|
+
},
|
|
48737
|
+
"spread": {
|
|
48738
|
+
"value": -3,
|
|
48739
|
+
"unit": "px"
|
|
48740
|
+
}
|
|
47906
48741
|
},
|
|
47907
48742
|
{
|
|
47908
48743
|
"color": "{base.color.neutral.0}",
|
|
47909
48744
|
"alpha": 0.4,
|
|
47910
|
-
"offsetX":
|
|
47911
|
-
|
|
47912
|
-
|
|
47913
|
-
|
|
48745
|
+
"offsetX": {
|
|
48746
|
+
"value": 0,
|
|
48747
|
+
"unit": "px"
|
|
48748
|
+
},
|
|
48749
|
+
"offsetY": {
|
|
48750
|
+
"value": 6,
|
|
48751
|
+
"unit": "px"
|
|
48752
|
+
},
|
|
48753
|
+
"blur": {
|
|
48754
|
+
"value": 18,
|
|
48755
|
+
"unit": "px"
|
|
48756
|
+
},
|
|
48757
|
+
"spread": {
|
|
48758
|
+
"value": 0,
|
|
48759
|
+
"unit": "px"
|
|
48760
|
+
}
|
|
47914
48761
|
}
|
|
47915
48762
|
],
|
|
47916
48763
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47931,8 +48778,9 @@
|
|
|
47931
48778
|
},
|
|
47932
48779
|
"shadow-floating-xlarge": {
|
|
47933
48780
|
"key": "{shadow.floating.xlarge}",
|
|
47934
|
-
"$value": "
|
|
48781
|
+
"$value": "0 0 0 1px #3d444d, 0 32px 64px 0 #010409",
|
|
47935
48782
|
"$type": "shadow",
|
|
48783
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47936
48784
|
"$extensions": {
|
|
47937
48785
|
"org.primer.figma": {
|
|
47938
48786
|
"collection": "mode",
|
|
@@ -47944,24 +48792,52 @@
|
|
|
47944
48792
|
{
|
|
47945
48793
|
"color": "#3d444db3",
|
|
47946
48794
|
"alpha": 1,
|
|
47947
|
-
"offsetX":
|
|
47948
|
-
|
|
47949
|
-
|
|
47950
|
-
|
|
48795
|
+
"offsetX": {
|
|
48796
|
+
"value": 0,
|
|
48797
|
+
"unit": "px"
|
|
48798
|
+
},
|
|
48799
|
+
"offsetY": {
|
|
48800
|
+
"value": 0,
|
|
48801
|
+
"unit": "px"
|
|
48802
|
+
},
|
|
48803
|
+
"blur": {
|
|
48804
|
+
"value": 0,
|
|
48805
|
+
"unit": "px"
|
|
48806
|
+
},
|
|
48807
|
+
"spread": {
|
|
48808
|
+
"value": 1,
|
|
48809
|
+
"unit": "px"
|
|
48810
|
+
}
|
|
47951
48811
|
},
|
|
47952
48812
|
{
|
|
47953
48813
|
"color": "#010409",
|
|
47954
48814
|
"alpha": 1,
|
|
47955
|
-
"offsetX":
|
|
47956
|
-
|
|
47957
|
-
|
|
47958
|
-
|
|
48815
|
+
"offsetX": {
|
|
48816
|
+
"value": 0,
|
|
48817
|
+
"unit": "px"
|
|
48818
|
+
},
|
|
48819
|
+
"offsetY": {
|
|
48820
|
+
"value": 32,
|
|
48821
|
+
"unit": "px"
|
|
48822
|
+
},
|
|
48823
|
+
"blur": {
|
|
48824
|
+
"value": 64,
|
|
48825
|
+
"unit": "px"
|
|
48826
|
+
},
|
|
48827
|
+
"spread": {
|
|
48828
|
+
"value": 0,
|
|
48829
|
+
"unit": "px"
|
|
48830
|
+
}
|
|
47959
48831
|
}
|
|
47960
48832
|
],
|
|
47961
48833
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47962
48834
|
"isSource": true,
|
|
47963
48835
|
"$type": "shadow"
|
|
47964
48836
|
}
|
|
48837
|
+
},
|
|
48838
|
+
"org.primer.llm": {
|
|
48839
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48840
|
+
"rules": "Use for full-screen or near-full-screen overlays like side sheets and drawers. Maximum elevation in the system. Do NOT use for small floating elements."
|
|
47965
48841
|
}
|
|
47966
48842
|
},
|
|
47967
48843
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47971,21 +48847,46 @@
|
|
|
47971
48847
|
{
|
|
47972
48848
|
"color": "{overlay.borderColor}",
|
|
47973
48849
|
"alpha": 1,
|
|
47974
|
-
"offsetX":
|
|
47975
|
-
|
|
47976
|
-
|
|
47977
|
-
|
|
48850
|
+
"offsetX": {
|
|
48851
|
+
"value": 0,
|
|
48852
|
+
"unit": "px"
|
|
48853
|
+
},
|
|
48854
|
+
"offsetY": {
|
|
48855
|
+
"value": 0,
|
|
48856
|
+
"unit": "px"
|
|
48857
|
+
},
|
|
48858
|
+
"blur": {
|
|
48859
|
+
"value": 0,
|
|
48860
|
+
"unit": "px"
|
|
48861
|
+
},
|
|
48862
|
+
"spread": {
|
|
48863
|
+
"value": 1,
|
|
48864
|
+
"unit": "px"
|
|
48865
|
+
}
|
|
47978
48866
|
},
|
|
47979
48867
|
{
|
|
47980
48868
|
"color": "{base.color.neutral.0}",
|
|
47981
48869
|
"alpha": 1,
|
|
47982
|
-
"offsetX":
|
|
47983
|
-
|
|
47984
|
-
|
|
47985
|
-
|
|
48870
|
+
"offsetX": {
|
|
48871
|
+
"value": 0,
|
|
48872
|
+
"unit": "px"
|
|
48873
|
+
},
|
|
48874
|
+
"offsetY": {
|
|
48875
|
+
"value": 32,
|
|
48876
|
+
"unit": "px"
|
|
48877
|
+
},
|
|
48878
|
+
"blur": {
|
|
48879
|
+
"value": 64,
|
|
48880
|
+
"unit": "px"
|
|
48881
|
+
},
|
|
48882
|
+
"spread": {
|
|
48883
|
+
"value": 0,
|
|
48884
|
+
"unit": "px"
|
|
48885
|
+
}
|
|
47986
48886
|
}
|
|
47987
48887
|
],
|
|
47988
48888
|
"$type": "shadow",
|
|
48889
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47989
48890
|
"$extensions": {
|
|
47990
48891
|
"org.primer.figma": {
|
|
47991
48892
|
"collection": "mode",
|
|
@@ -47997,24 +48898,52 @@
|
|
|
47997
48898
|
{
|
|
47998
48899
|
"color": "{overlay.borderColor}",
|
|
47999
48900
|
"alpha": 1,
|
|
48000
|
-
"offsetX":
|
|
48001
|
-
|
|
48002
|
-
|
|
48003
|
-
|
|
48901
|
+
"offsetX": {
|
|
48902
|
+
"value": 0,
|
|
48903
|
+
"unit": "px"
|
|
48904
|
+
},
|
|
48905
|
+
"offsetY": {
|
|
48906
|
+
"value": 0,
|
|
48907
|
+
"unit": "px"
|
|
48908
|
+
},
|
|
48909
|
+
"blur": {
|
|
48910
|
+
"value": 0,
|
|
48911
|
+
"unit": "px"
|
|
48912
|
+
},
|
|
48913
|
+
"spread": {
|
|
48914
|
+
"value": 1,
|
|
48915
|
+
"unit": "px"
|
|
48916
|
+
}
|
|
48004
48917
|
},
|
|
48005
48918
|
{
|
|
48006
48919
|
"color": "{base.color.neutral.0}",
|
|
48007
48920
|
"alpha": 1,
|
|
48008
|
-
"offsetX":
|
|
48009
|
-
|
|
48010
|
-
|
|
48011
|
-
|
|
48921
|
+
"offsetX": {
|
|
48922
|
+
"value": 0,
|
|
48923
|
+
"unit": "px"
|
|
48924
|
+
},
|
|
48925
|
+
"offsetY": {
|
|
48926
|
+
"value": 32,
|
|
48927
|
+
"unit": "px"
|
|
48928
|
+
},
|
|
48929
|
+
"blur": {
|
|
48930
|
+
"value": 64,
|
|
48931
|
+
"unit": "px"
|
|
48932
|
+
},
|
|
48933
|
+
"spread": {
|
|
48934
|
+
"value": 0,
|
|
48935
|
+
"unit": "px"
|
|
48936
|
+
}
|
|
48012
48937
|
}
|
|
48013
48938
|
],
|
|
48014
48939
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48015
48940
|
"isSource": true,
|
|
48016
48941
|
"$type": "shadow"
|
|
48017
48942
|
}
|
|
48943
|
+
},
|
|
48944
|
+
"org.primer.llm": {
|
|
48945
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48946
|
+
"rules": "Use for full-screen or near-full-screen overlays like side sheets and drawers. Maximum elevation in the system. Do NOT use for small floating elements."
|
|
48018
48947
|
}
|
|
48019
48948
|
},
|
|
48020
48949
|
"key": "{shadow.floating.xlarge}"
|
|
@@ -48025,8 +48954,9 @@
|
|
|
48025
48954
|
},
|
|
48026
48955
|
"shadow-inset": {
|
|
48027
48956
|
"key": "{shadow.inset}",
|
|
48028
|
-
"$value": "inset
|
|
48957
|
+
"$value": "inset 0 1px 0 0 #0104093d",
|
|
48029
48958
|
"$type": "shadow",
|
|
48959
|
+
"$description": "Inset shadow for recessed elements",
|
|
48030
48960
|
"$extensions": {
|
|
48031
48961
|
"org.primer.figma": {
|
|
48032
48962
|
"collection": "mode",
|
|
@@ -48037,16 +48967,32 @@
|
|
|
48037
48967
|
"$value": {
|
|
48038
48968
|
"color": "#010409",
|
|
48039
48969
|
"alpha": 0.24,
|
|
48040
|
-
"offsetX":
|
|
48041
|
-
|
|
48042
|
-
|
|
48043
|
-
|
|
48970
|
+
"offsetX": {
|
|
48971
|
+
"value": 0,
|
|
48972
|
+
"unit": "px"
|
|
48973
|
+
},
|
|
48974
|
+
"offsetY": {
|
|
48975
|
+
"value": 1,
|
|
48976
|
+
"unit": "px"
|
|
48977
|
+
},
|
|
48978
|
+
"blur": {
|
|
48979
|
+
"value": 0,
|
|
48980
|
+
"unit": "px"
|
|
48981
|
+
},
|
|
48982
|
+
"spread": {
|
|
48983
|
+
"value": 0,
|
|
48984
|
+
"unit": "px"
|
|
48985
|
+
},
|
|
48044
48986
|
"inset": true
|
|
48045
48987
|
},
|
|
48046
48988
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48047
48989
|
"isSource": true,
|
|
48048
48990
|
"$type": "shadow"
|
|
48049
48991
|
}
|
|
48992
|
+
},
|
|
48993
|
+
"org.primer.llm": {
|
|
48994
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
48995
|
+
"rules": "Use for elements that appear pressed or inset into the surface. Commonly used for input fields and wells. Do NOT use for floating elements."
|
|
48050
48996
|
}
|
|
48051
48997
|
},
|
|
48052
48998
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48055,13 +49001,26 @@
|
|
|
48055
49001
|
"$value": {
|
|
48056
49002
|
"color": "{base.color.neutral.0}",
|
|
48057
49003
|
"alpha": 0.24,
|
|
48058
|
-
"offsetX":
|
|
48059
|
-
|
|
48060
|
-
|
|
48061
|
-
|
|
49004
|
+
"offsetX": {
|
|
49005
|
+
"value": 0,
|
|
49006
|
+
"unit": "px"
|
|
49007
|
+
},
|
|
49008
|
+
"offsetY": {
|
|
49009
|
+
"value": 1,
|
|
49010
|
+
"unit": "px"
|
|
49011
|
+
},
|
|
49012
|
+
"blur": {
|
|
49013
|
+
"value": 0,
|
|
49014
|
+
"unit": "px"
|
|
49015
|
+
},
|
|
49016
|
+
"spread": {
|
|
49017
|
+
"value": 0,
|
|
49018
|
+
"unit": "px"
|
|
49019
|
+
},
|
|
48062
49020
|
"inset": true
|
|
48063
49021
|
},
|
|
48064
49022
|
"$type": "shadow",
|
|
49023
|
+
"$description": "Inset shadow for recessed elements",
|
|
48065
49024
|
"$extensions": {
|
|
48066
49025
|
"org.primer.figma": {
|
|
48067
49026
|
"collection": "mode",
|
|
@@ -48072,16 +49031,32 @@
|
|
|
48072
49031
|
"$value": {
|
|
48073
49032
|
"color": "{base.color.neutral.0}",
|
|
48074
49033
|
"alpha": 0.24,
|
|
48075
|
-
"offsetX":
|
|
48076
|
-
|
|
48077
|
-
|
|
48078
|
-
|
|
49034
|
+
"offsetX": {
|
|
49035
|
+
"value": 0,
|
|
49036
|
+
"unit": "px"
|
|
49037
|
+
},
|
|
49038
|
+
"offsetY": {
|
|
49039
|
+
"value": 1,
|
|
49040
|
+
"unit": "px"
|
|
49041
|
+
},
|
|
49042
|
+
"blur": {
|
|
49043
|
+
"value": 0,
|
|
49044
|
+
"unit": "px"
|
|
49045
|
+
},
|
|
49046
|
+
"spread": {
|
|
49047
|
+
"value": 0,
|
|
49048
|
+
"unit": "px"
|
|
49049
|
+
},
|
|
48079
49050
|
"inset": true
|
|
48080
49051
|
},
|
|
48081
49052
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48082
49053
|
"isSource": true,
|
|
48083
49054
|
"$type": "shadow"
|
|
48084
49055
|
}
|
|
49056
|
+
},
|
|
49057
|
+
"org.primer.llm": {
|
|
49058
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
49059
|
+
"rules": "Use for elements that appear pressed or inset into the surface. Commonly used for input fields and wells. Do NOT use for floating elements."
|
|
48085
49060
|
}
|
|
48086
49061
|
},
|
|
48087
49062
|
"key": "{shadow.inset}"
|
|
@@ -48092,8 +49067,9 @@
|
|
|
48092
49067
|
},
|
|
48093
49068
|
"shadow-resting-medium": {
|
|
48094
49069
|
"key": "{shadow.resting.medium}",
|
|
48095
|
-
"$value": "
|
|
49070
|
+
"$value": "0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc",
|
|
48096
49071
|
"$type": "shadow",
|
|
49072
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48097
49073
|
"$extensions": {
|
|
48098
49074
|
"org.primer.figma": {
|
|
48099
49075
|
"collection": "mode",
|
|
@@ -48105,24 +49081,52 @@
|
|
|
48105
49081
|
{
|
|
48106
49082
|
"color": "#010409",
|
|
48107
49083
|
"alpha": 0.4,
|
|
48108
|
-
"offsetX":
|
|
48109
|
-
|
|
48110
|
-
|
|
48111
|
-
|
|
49084
|
+
"offsetX": {
|
|
49085
|
+
"value": 0,
|
|
49086
|
+
"unit": "px"
|
|
49087
|
+
},
|
|
49088
|
+
"offsetY": {
|
|
49089
|
+
"value": 1,
|
|
49090
|
+
"unit": "px"
|
|
49091
|
+
},
|
|
49092
|
+
"blur": {
|
|
49093
|
+
"value": 1,
|
|
49094
|
+
"unit": "px"
|
|
49095
|
+
},
|
|
49096
|
+
"spread": {
|
|
49097
|
+
"value": 0,
|
|
49098
|
+
"unit": "px"
|
|
49099
|
+
}
|
|
48112
49100
|
},
|
|
48113
49101
|
{
|
|
48114
49102
|
"color": "#010409",
|
|
48115
49103
|
"alpha": 0.8,
|
|
48116
|
-
"offsetX":
|
|
48117
|
-
|
|
48118
|
-
|
|
48119
|
-
|
|
49104
|
+
"offsetX": {
|
|
49105
|
+
"value": 0,
|
|
49106
|
+
"unit": "px"
|
|
49107
|
+
},
|
|
49108
|
+
"offsetY": {
|
|
49109
|
+
"value": 3,
|
|
49110
|
+
"unit": "px"
|
|
49111
|
+
},
|
|
49112
|
+
"blur": {
|
|
49113
|
+
"value": 6,
|
|
49114
|
+
"unit": "px"
|
|
49115
|
+
},
|
|
49116
|
+
"spread": {
|
|
49117
|
+
"value": 0,
|
|
49118
|
+
"unit": "px"
|
|
49119
|
+
}
|
|
48120
49120
|
}
|
|
48121
49121
|
],
|
|
48122
49122
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48123
49123
|
"isSource": true,
|
|
48124
49124
|
"$type": "shadow"
|
|
48125
49125
|
}
|
|
49126
|
+
},
|
|
49127
|
+
"org.primer.llm": {
|
|
49128
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49129
|
+
"rules": "Use for cards and content panels that sit above the page surface. Provides moderate elevation without appearing to float. Do NOT use for overlays or modals."
|
|
48126
49130
|
}
|
|
48127
49131
|
},
|
|
48128
49132
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48132,21 +49136,46 @@
|
|
|
48132
49136
|
{
|
|
48133
49137
|
"color": "{base.color.neutral.0}",
|
|
48134
49138
|
"alpha": 0.4,
|
|
48135
|
-
"offsetX":
|
|
48136
|
-
|
|
48137
|
-
|
|
48138
|
-
|
|
49139
|
+
"offsetX": {
|
|
49140
|
+
"value": 0,
|
|
49141
|
+
"unit": "px"
|
|
49142
|
+
},
|
|
49143
|
+
"offsetY": {
|
|
49144
|
+
"value": 1,
|
|
49145
|
+
"unit": "px"
|
|
49146
|
+
},
|
|
49147
|
+
"blur": {
|
|
49148
|
+
"value": 1,
|
|
49149
|
+
"unit": "px"
|
|
49150
|
+
},
|
|
49151
|
+
"spread": {
|
|
49152
|
+
"value": 0,
|
|
49153
|
+
"unit": "px"
|
|
49154
|
+
}
|
|
48139
49155
|
},
|
|
48140
49156
|
{
|
|
48141
49157
|
"color": "{base.color.neutral.0}",
|
|
48142
49158
|
"alpha": 0.8,
|
|
48143
|
-
"offsetX":
|
|
48144
|
-
|
|
48145
|
-
|
|
48146
|
-
|
|
49159
|
+
"offsetX": {
|
|
49160
|
+
"value": 0,
|
|
49161
|
+
"unit": "px"
|
|
49162
|
+
},
|
|
49163
|
+
"offsetY": {
|
|
49164
|
+
"value": 3,
|
|
49165
|
+
"unit": "px"
|
|
49166
|
+
},
|
|
49167
|
+
"blur": {
|
|
49168
|
+
"value": 6,
|
|
49169
|
+
"unit": "px"
|
|
49170
|
+
},
|
|
49171
|
+
"spread": {
|
|
49172
|
+
"value": 0,
|
|
49173
|
+
"unit": "px"
|
|
49174
|
+
}
|
|
48147
49175
|
}
|
|
48148
49176
|
],
|
|
48149
49177
|
"$type": "shadow",
|
|
49178
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48150
49179
|
"$extensions": {
|
|
48151
49180
|
"org.primer.figma": {
|
|
48152
49181
|
"collection": "mode",
|
|
@@ -48158,24 +49187,52 @@
|
|
|
48158
49187
|
{
|
|
48159
49188
|
"color": "{base.color.neutral.0}",
|
|
48160
49189
|
"alpha": 0.4,
|
|
48161
|
-
"offsetX":
|
|
48162
|
-
|
|
48163
|
-
|
|
48164
|
-
|
|
49190
|
+
"offsetX": {
|
|
49191
|
+
"value": 0,
|
|
49192
|
+
"unit": "px"
|
|
49193
|
+
},
|
|
49194
|
+
"offsetY": {
|
|
49195
|
+
"value": 1,
|
|
49196
|
+
"unit": "px"
|
|
49197
|
+
},
|
|
49198
|
+
"blur": {
|
|
49199
|
+
"value": 1,
|
|
49200
|
+
"unit": "px"
|
|
49201
|
+
},
|
|
49202
|
+
"spread": {
|
|
49203
|
+
"value": 0,
|
|
49204
|
+
"unit": "px"
|
|
49205
|
+
}
|
|
48165
49206
|
},
|
|
48166
49207
|
{
|
|
48167
49208
|
"color": "{base.color.neutral.0}",
|
|
48168
49209
|
"alpha": 0.8,
|
|
48169
|
-
"offsetX":
|
|
48170
|
-
|
|
48171
|
-
|
|
48172
|
-
|
|
49210
|
+
"offsetX": {
|
|
49211
|
+
"value": 0,
|
|
49212
|
+
"unit": "px"
|
|
49213
|
+
},
|
|
49214
|
+
"offsetY": {
|
|
49215
|
+
"value": 3,
|
|
49216
|
+
"unit": "px"
|
|
49217
|
+
},
|
|
49218
|
+
"blur": {
|
|
49219
|
+
"value": 6,
|
|
49220
|
+
"unit": "px"
|
|
49221
|
+
},
|
|
49222
|
+
"spread": {
|
|
49223
|
+
"value": 0,
|
|
49224
|
+
"unit": "px"
|
|
49225
|
+
}
|
|
48173
49226
|
}
|
|
48174
49227
|
],
|
|
48175
49228
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48176
49229
|
"isSource": true,
|
|
48177
49230
|
"$type": "shadow"
|
|
48178
49231
|
}
|
|
49232
|
+
},
|
|
49233
|
+
"org.primer.llm": {
|
|
49234
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49235
|
+
"rules": "Use for cards and content panels that sit above the page surface. Provides moderate elevation without appearing to float. Do NOT use for overlays or modals."
|
|
48179
49236
|
}
|
|
48180
49237
|
},
|
|
48181
49238
|
"key": "{shadow.resting.medium}"
|
|
@@ -48186,8 +49243,9 @@
|
|
|
48186
49243
|
},
|
|
48187
49244
|
"shadow-resting-small": {
|
|
48188
49245
|
"key": "{shadow.resting.small}",
|
|
48189
|
-
"$value": "
|
|
49246
|
+
"$value": "0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999",
|
|
48190
49247
|
"$type": "shadow",
|
|
49248
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48191
49249
|
"$extensions": {
|
|
48192
49250
|
"org.primer.figma": {
|
|
48193
49251
|
"collection": "mode",
|
|
@@ -48199,19 +49257,43 @@
|
|
|
48199
49257
|
{
|
|
48200
49258
|
"color": "#010409",
|
|
48201
49259
|
"alpha": 0.6,
|
|
48202
|
-
"offsetX":
|
|
48203
|
-
|
|
48204
|
-
|
|
48205
|
-
|
|
49260
|
+
"offsetX": {
|
|
49261
|
+
"value": 0,
|
|
49262
|
+
"unit": "px"
|
|
49263
|
+
},
|
|
49264
|
+
"offsetY": {
|
|
49265
|
+
"value": 1,
|
|
49266
|
+
"unit": "px"
|
|
49267
|
+
},
|
|
49268
|
+
"blur": {
|
|
49269
|
+
"value": 1,
|
|
49270
|
+
"unit": "px"
|
|
49271
|
+
},
|
|
49272
|
+
"spread": {
|
|
49273
|
+
"value": 0,
|
|
49274
|
+
"unit": "px"
|
|
49275
|
+
},
|
|
48206
49276
|
"inset": false
|
|
48207
49277
|
},
|
|
48208
49278
|
{
|
|
48209
49279
|
"color": "#010409",
|
|
48210
49280
|
"alpha": 0.6,
|
|
48211
|
-
"offsetX":
|
|
48212
|
-
|
|
48213
|
-
|
|
48214
|
-
|
|
49281
|
+
"offsetX": {
|
|
49282
|
+
"value": 0,
|
|
49283
|
+
"unit": "px"
|
|
49284
|
+
},
|
|
49285
|
+
"offsetY": {
|
|
49286
|
+
"value": 1,
|
|
49287
|
+
"unit": "px"
|
|
49288
|
+
},
|
|
49289
|
+
"blur": {
|
|
49290
|
+
"value": 3,
|
|
49291
|
+
"unit": "px"
|
|
49292
|
+
},
|
|
49293
|
+
"spread": {
|
|
49294
|
+
"value": 0,
|
|
49295
|
+
"unit": "px"
|
|
49296
|
+
},
|
|
48215
49297
|
"inset": false
|
|
48216
49298
|
}
|
|
48217
49299
|
],
|
|
@@ -48219,6 +49301,10 @@
|
|
|
48219
49301
|
"isSource": true,
|
|
48220
49302
|
"$type": "shadow"
|
|
48221
49303
|
}
|
|
49304
|
+
},
|
|
49305
|
+
"org.primer.llm": {
|
|
49306
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49307
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48222
49308
|
}
|
|
48223
49309
|
},
|
|
48224
49310
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48228,23 +49314,48 @@
|
|
|
48228
49314
|
{
|
|
48229
49315
|
"color": "{base.color.neutral.0}",
|
|
48230
49316
|
"alpha": 0.6,
|
|
48231
|
-
"offsetX":
|
|
48232
|
-
|
|
48233
|
-
|
|
48234
|
-
|
|
49317
|
+
"offsetX": {
|
|
49318
|
+
"value": 0,
|
|
49319
|
+
"unit": "px"
|
|
49320
|
+
},
|
|
49321
|
+
"offsetY": {
|
|
49322
|
+
"value": 1,
|
|
49323
|
+
"unit": "px"
|
|
49324
|
+
},
|
|
49325
|
+
"blur": {
|
|
49326
|
+
"value": 1,
|
|
49327
|
+
"unit": "px"
|
|
49328
|
+
},
|
|
49329
|
+
"spread": {
|
|
49330
|
+
"value": 0,
|
|
49331
|
+
"unit": "px"
|
|
49332
|
+
},
|
|
48235
49333
|
"inset": false
|
|
48236
49334
|
},
|
|
48237
49335
|
{
|
|
48238
49336
|
"color": "{base.color.neutral.0}",
|
|
48239
49337
|
"alpha": 0.6,
|
|
48240
|
-
"offsetX":
|
|
48241
|
-
|
|
48242
|
-
|
|
48243
|
-
|
|
49338
|
+
"offsetX": {
|
|
49339
|
+
"value": 0,
|
|
49340
|
+
"unit": "px"
|
|
49341
|
+
},
|
|
49342
|
+
"offsetY": {
|
|
49343
|
+
"value": 1,
|
|
49344
|
+
"unit": "px"
|
|
49345
|
+
},
|
|
49346
|
+
"blur": {
|
|
49347
|
+
"value": 3,
|
|
49348
|
+
"unit": "px"
|
|
49349
|
+
},
|
|
49350
|
+
"spread": {
|
|
49351
|
+
"value": 0,
|
|
49352
|
+
"unit": "px"
|
|
49353
|
+
},
|
|
48244
49354
|
"inset": false
|
|
48245
49355
|
}
|
|
48246
49356
|
],
|
|
48247
49357
|
"$type": "shadow",
|
|
49358
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48248
49359
|
"$extensions": {
|
|
48249
49360
|
"org.primer.figma": {
|
|
48250
49361
|
"collection": "mode",
|
|
@@ -48256,19 +49367,43 @@
|
|
|
48256
49367
|
{
|
|
48257
49368
|
"color": "{base.color.neutral.0}",
|
|
48258
49369
|
"alpha": 0.6,
|
|
48259
|
-
"offsetX":
|
|
48260
|
-
|
|
48261
|
-
|
|
48262
|
-
|
|
49370
|
+
"offsetX": {
|
|
49371
|
+
"value": 0,
|
|
49372
|
+
"unit": "px"
|
|
49373
|
+
},
|
|
49374
|
+
"offsetY": {
|
|
49375
|
+
"value": 1,
|
|
49376
|
+
"unit": "px"
|
|
49377
|
+
},
|
|
49378
|
+
"blur": {
|
|
49379
|
+
"value": 1,
|
|
49380
|
+
"unit": "px"
|
|
49381
|
+
},
|
|
49382
|
+
"spread": {
|
|
49383
|
+
"value": 0,
|
|
49384
|
+
"unit": "px"
|
|
49385
|
+
},
|
|
48263
49386
|
"inset": false
|
|
48264
49387
|
},
|
|
48265
49388
|
{
|
|
48266
49389
|
"color": "{base.color.neutral.0}",
|
|
48267
49390
|
"alpha": 0.6,
|
|
48268
|
-
"offsetX":
|
|
48269
|
-
|
|
48270
|
-
|
|
48271
|
-
|
|
49391
|
+
"offsetX": {
|
|
49392
|
+
"value": 0,
|
|
49393
|
+
"unit": "px"
|
|
49394
|
+
},
|
|
49395
|
+
"offsetY": {
|
|
49396
|
+
"value": 1,
|
|
49397
|
+
"unit": "px"
|
|
49398
|
+
},
|
|
49399
|
+
"blur": {
|
|
49400
|
+
"value": 3,
|
|
49401
|
+
"unit": "px"
|
|
49402
|
+
},
|
|
49403
|
+
"spread": {
|
|
49404
|
+
"value": 0,
|
|
49405
|
+
"unit": "px"
|
|
49406
|
+
},
|
|
48272
49407
|
"inset": false
|
|
48273
49408
|
}
|
|
48274
49409
|
],
|
|
@@ -48276,6 +49411,10 @@
|
|
|
48276
49411
|
"isSource": true,
|
|
48277
49412
|
"$type": "shadow"
|
|
48278
49413
|
}
|
|
49414
|
+
},
|
|
49415
|
+
"org.primer.llm": {
|
|
49416
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49417
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48279
49418
|
}
|
|
48280
49419
|
},
|
|
48281
49420
|
"key": "{shadow.resting.small}"
|
|
@@ -48286,8 +49425,9 @@
|
|
|
48286
49425
|
},
|
|
48287
49426
|
"shadow-resting-xsmall": {
|
|
48288
49427
|
"key": "{shadow.resting.xsmall}",
|
|
48289
|
-
"$value": "
|
|
49428
|
+
"$value": "0 1px 1px 0 #010409cc",
|
|
48290
49429
|
"$type": "shadow",
|
|
49430
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48291
49431
|
"$extensions": {
|
|
48292
49432
|
"org.primer.figma": {
|
|
48293
49433
|
"collection": "mode",
|
|
@@ -48298,16 +49438,32 @@
|
|
|
48298
49438
|
"$value": {
|
|
48299
49439
|
"color": "#010409",
|
|
48300
49440
|
"alpha": 0.8,
|
|
48301
|
-
"offsetX":
|
|
48302
|
-
|
|
48303
|
-
|
|
48304
|
-
|
|
49441
|
+
"offsetX": {
|
|
49442
|
+
"value": 0,
|
|
49443
|
+
"unit": "px"
|
|
49444
|
+
},
|
|
49445
|
+
"offsetY": {
|
|
49446
|
+
"value": 1,
|
|
49447
|
+
"unit": "px"
|
|
49448
|
+
},
|
|
49449
|
+
"blur": {
|
|
49450
|
+
"value": 1,
|
|
49451
|
+
"unit": "px"
|
|
49452
|
+
},
|
|
49453
|
+
"spread": {
|
|
49454
|
+
"value": 0,
|
|
49455
|
+
"unit": "px"
|
|
49456
|
+
},
|
|
48305
49457
|
"inset": false
|
|
48306
49458
|
},
|
|
48307
49459
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48308
49460
|
"isSource": true,
|
|
48309
49461
|
"$type": "shadow"
|
|
48310
49462
|
}
|
|
49463
|
+
},
|
|
49464
|
+
"org.primer.llm": {
|
|
49465
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49466
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48311
49467
|
}
|
|
48312
49468
|
},
|
|
48313
49469
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48316,13 +49472,26 @@
|
|
|
48316
49472
|
"$value": {
|
|
48317
49473
|
"color": "{base.color.neutral.0}",
|
|
48318
49474
|
"alpha": 0.8,
|
|
48319
|
-
"offsetX":
|
|
48320
|
-
|
|
48321
|
-
|
|
48322
|
-
|
|
49475
|
+
"offsetX": {
|
|
49476
|
+
"value": 0,
|
|
49477
|
+
"unit": "px"
|
|
49478
|
+
},
|
|
49479
|
+
"offsetY": {
|
|
49480
|
+
"value": 1,
|
|
49481
|
+
"unit": "px"
|
|
49482
|
+
},
|
|
49483
|
+
"blur": {
|
|
49484
|
+
"value": 1,
|
|
49485
|
+
"unit": "px"
|
|
49486
|
+
},
|
|
49487
|
+
"spread": {
|
|
49488
|
+
"value": 0,
|
|
49489
|
+
"unit": "px"
|
|
49490
|
+
},
|
|
48323
49491
|
"inset": false
|
|
48324
49492
|
},
|
|
48325
49493
|
"$type": "shadow",
|
|
49494
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48326
49495
|
"$extensions": {
|
|
48327
49496
|
"org.primer.figma": {
|
|
48328
49497
|
"collection": "mode",
|
|
@@ -48333,16 +49502,32 @@
|
|
|
48333
49502
|
"$value": {
|
|
48334
49503
|
"color": "{base.color.neutral.0}",
|
|
48335
49504
|
"alpha": 0.8,
|
|
48336
|
-
"offsetX":
|
|
48337
|
-
|
|
48338
|
-
|
|
48339
|
-
|
|
49505
|
+
"offsetX": {
|
|
49506
|
+
"value": 0,
|
|
49507
|
+
"unit": "px"
|
|
49508
|
+
},
|
|
49509
|
+
"offsetY": {
|
|
49510
|
+
"value": 1,
|
|
49511
|
+
"unit": "px"
|
|
49512
|
+
},
|
|
49513
|
+
"blur": {
|
|
49514
|
+
"value": 1,
|
|
49515
|
+
"unit": "px"
|
|
49516
|
+
},
|
|
49517
|
+
"spread": {
|
|
49518
|
+
"value": 0,
|
|
49519
|
+
"unit": "px"
|
|
49520
|
+
},
|
|
48340
49521
|
"inset": false
|
|
48341
49522
|
},
|
|
48342
49523
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48343
49524
|
"isSource": true,
|
|
48344
49525
|
"$type": "shadow"
|
|
48345
49526
|
}
|
|
49527
|
+
},
|
|
49528
|
+
"org.primer.llm": {
|
|
49529
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49530
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48346
49531
|
}
|
|
48347
49532
|
},
|
|
48348
49533
|
"key": "{shadow.resting.xsmall}"
|