@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}"
|
|
@@ -2452,6 +2496,10 @@
|
|
|
2452
2496
|
},
|
|
2453
2497
|
"org.primer.overrides": {
|
|
2454
2498
|
"dark": "#ffffff"
|
|
2499
|
+
},
|
|
2500
|
+
"org.primer.llm": {
|
|
2501
|
+
"doNotUse": true,
|
|
2502
|
+
"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."
|
|
2455
2503
|
}
|
|
2456
2504
|
},
|
|
2457
2505
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -2468,6 +2516,10 @@
|
|
|
2468
2516
|
},
|
|
2469
2517
|
"org.primer.overrides": {
|
|
2470
2518
|
"dark": "{base.color.neutral.13}"
|
|
2519
|
+
},
|
|
2520
|
+
"org.primer.llm": {
|
|
2521
|
+
"doNotUse": true,
|
|
2522
|
+
"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."
|
|
2471
2523
|
}
|
|
2472
2524
|
},
|
|
2473
2525
|
"key": "{bgColor.white}"
|
|
@@ -2478,7 +2530,11 @@
|
|
|
2478
2530
|
},
|
|
2479
2531
|
"border-accent-emphasis": {
|
|
2480
2532
|
"key": "{border.accent.emphasis}",
|
|
2481
|
-
"$value":
|
|
2533
|
+
"$value": {
|
|
2534
|
+
"color": "#409eff",
|
|
2535
|
+
"style": "solid",
|
|
2536
|
+
"width": ["0.0625rem", "1px"]
|
|
2537
|
+
},
|
|
2482
2538
|
"$type": "border",
|
|
2483
2539
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2484
2540
|
"isSource": true,
|
|
@@ -2497,7 +2553,11 @@
|
|
|
2497
2553
|
},
|
|
2498
2554
|
"border-accent-muted": {
|
|
2499
2555
|
"key": "{border.accent.muted}",
|
|
2500
|
-
"$value":
|
|
2556
|
+
"$value": {
|
|
2557
|
+
"color": "#5cacff",
|
|
2558
|
+
"style": "solid",
|
|
2559
|
+
"width": ["0.0625rem", "1px"]
|
|
2560
|
+
},
|
|
2501
2561
|
"$type": "border",
|
|
2502
2562
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2503
2563
|
"isSource": true,
|
|
@@ -2516,7 +2576,11 @@
|
|
|
2516
2576
|
},
|
|
2517
2577
|
"border-attention-emphasis": {
|
|
2518
2578
|
"key": "{border.attention.emphasis}",
|
|
2519
|
-
"$value":
|
|
2579
|
+
"$value": {
|
|
2580
|
+
"color": "#e09b13",
|
|
2581
|
+
"style": "solid",
|
|
2582
|
+
"width": ["0.0625rem", "1px"]
|
|
2583
|
+
},
|
|
2520
2584
|
"$type": "border",
|
|
2521
2585
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2522
2586
|
"isSource": true,
|
|
@@ -2535,7 +2599,11 @@
|
|
|
2535
2599
|
},
|
|
2536
2600
|
"border-attention-muted": {
|
|
2537
2601
|
"key": "{border.attention.muted}",
|
|
2538
|
-
"$value":
|
|
2602
|
+
"$value": {
|
|
2603
|
+
"color": "#edaa27",
|
|
2604
|
+
"style": "solid",
|
|
2605
|
+
"width": ["0.0625rem", "1px"]
|
|
2606
|
+
},
|
|
2539
2607
|
"$type": "border",
|
|
2540
2608
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2541
2609
|
"isSource": true,
|
|
@@ -2554,7 +2622,11 @@
|
|
|
2554
2622
|
},
|
|
2555
2623
|
"border-closed-emphasis": {
|
|
2556
2624
|
"key": "{border.closed.emphasis}",
|
|
2557
|
-
"$value":
|
|
2625
|
+
"$value": {
|
|
2626
|
+
"color": "#ff6a69",
|
|
2627
|
+
"style": "solid",
|
|
2628
|
+
"width": ["0.0625rem", "1px"]
|
|
2629
|
+
},
|
|
2558
2630
|
"$type": "border",
|
|
2559
2631
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2560
2632
|
"isSource": true,
|
|
@@ -2569,7 +2641,11 @@
|
|
|
2569
2641
|
},
|
|
2570
2642
|
"border-closed-muted": {
|
|
2571
2643
|
"key": "{border.closed.muted}",
|
|
2572
|
-
"$value":
|
|
2644
|
+
"$value": {
|
|
2645
|
+
"color": "#ff8080",
|
|
2646
|
+
"style": "solid",
|
|
2647
|
+
"width": ["0.0625rem", "1px"]
|
|
2648
|
+
},
|
|
2573
2649
|
"$type": "border",
|
|
2574
2650
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2575
2651
|
"isSource": true,
|
|
@@ -2584,7 +2660,11 @@
|
|
|
2584
2660
|
},
|
|
2585
2661
|
"border-danger-emphasis": {
|
|
2586
2662
|
"key": "{border.danger.emphasis}",
|
|
2587
|
-
"$value":
|
|
2663
|
+
"$value": {
|
|
2664
|
+
"color": "#ff6a69",
|
|
2665
|
+
"style": "solid",
|
|
2666
|
+
"width": ["0.0625rem", "1px"]
|
|
2667
|
+
},
|
|
2588
2668
|
"$type": "border",
|
|
2589
2669
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2590
2670
|
"isSource": true,
|
|
@@ -2603,7 +2683,11 @@
|
|
|
2603
2683
|
},
|
|
2604
2684
|
"border-danger-muted": {
|
|
2605
2685
|
"key": "{border.danger.muted}",
|
|
2606
|
-
"$value":
|
|
2686
|
+
"$value": {
|
|
2687
|
+
"color": "#ff8080",
|
|
2688
|
+
"style": "solid",
|
|
2689
|
+
"width": ["0.0625rem", "1px"]
|
|
2690
|
+
},
|
|
2607
2691
|
"$type": "border",
|
|
2608
2692
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2609
2693
|
"isSource": true,
|
|
@@ -2622,7 +2706,11 @@
|
|
|
2622
2706
|
},
|
|
2623
2707
|
"border-default": {
|
|
2624
2708
|
"key": "{border.default}",
|
|
2625
|
-
"$value":
|
|
2709
|
+
"$value": {
|
|
2710
|
+
"color": "#b7bdc8",
|
|
2711
|
+
"style": "solid",
|
|
2712
|
+
"width": ["0.0625rem", "1px"]
|
|
2713
|
+
},
|
|
2626
2714
|
"$type": "border",
|
|
2627
2715
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2628
2716
|
"isSource": true,
|
|
@@ -2641,7 +2729,11 @@
|
|
|
2641
2729
|
},
|
|
2642
2730
|
"border-disabled": {
|
|
2643
2731
|
"key": "{border.disabled}",
|
|
2644
|
-
"$value":
|
|
2732
|
+
"$value": {
|
|
2733
|
+
"color": "#656c761a",
|
|
2734
|
+
"style": "solid",
|
|
2735
|
+
"width": ["0.0625rem", "1px"]
|
|
2736
|
+
},
|
|
2645
2737
|
"$type": "border",
|
|
2646
2738
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2647
2739
|
"isSource": true,
|
|
@@ -2660,7 +2752,11 @@
|
|
|
2660
2752
|
},
|
|
2661
2753
|
"border-done-emphasis": {
|
|
2662
2754
|
"key": "{border.done.emphasis}",
|
|
2663
|
-
"$value":
|
|
2755
|
+
"$value": {
|
|
2756
|
+
"color": "#b87fff",
|
|
2757
|
+
"style": "solid",
|
|
2758
|
+
"width": ["0.0625rem", "1px"]
|
|
2759
|
+
},
|
|
2664
2760
|
"$type": "border",
|
|
2665
2761
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2666
2762
|
"isSource": true,
|
|
@@ -2679,7 +2775,11 @@
|
|
|
2679
2775
|
},
|
|
2680
2776
|
"border-done-muted": {
|
|
2681
2777
|
"key": "{border.done.muted}",
|
|
2682
|
-
"$value":
|
|
2778
|
+
"$value": {
|
|
2779
|
+
"color": "#bf8fff",
|
|
2780
|
+
"style": "solid",
|
|
2781
|
+
"width": ["0.0625rem", "1px"]
|
|
2782
|
+
},
|
|
2683
2783
|
"$type": "border",
|
|
2684
2784
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2685
2785
|
"isSource": true,
|
|
@@ -2698,7 +2798,11 @@
|
|
|
2698
2798
|
},
|
|
2699
2799
|
"border-emphasis": {
|
|
2700
2800
|
"key": "{border.emphasis}",
|
|
2701
|
-
"$value":
|
|
2801
|
+
"$value": {
|
|
2802
|
+
"color": "#b7bdc8",
|
|
2803
|
+
"style": "solid",
|
|
2804
|
+
"width": ["0.0625rem", "1px"]
|
|
2805
|
+
},
|
|
2702
2806
|
"$type": "border",
|
|
2703
2807
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2704
2808
|
"isSource": true,
|
|
@@ -2717,7 +2821,11 @@
|
|
|
2717
2821
|
},
|
|
2718
2822
|
"border-muted": {
|
|
2719
2823
|
"key": "{border.muted}",
|
|
2720
|
-
"$value":
|
|
2824
|
+
"$value": {
|
|
2825
|
+
"color": "#b7bdc8",
|
|
2826
|
+
"style": "solid",
|
|
2827
|
+
"width": ["0.0625rem", "1px"]
|
|
2828
|
+
},
|
|
2721
2829
|
"$type": "border",
|
|
2722
2830
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2723
2831
|
"isSource": true,
|
|
@@ -2736,7 +2844,11 @@
|
|
|
2736
2844
|
},
|
|
2737
2845
|
"border-neutral-emphasis": {
|
|
2738
2846
|
"key": "{border.neutral.emphasis}",
|
|
2739
|
-
"$value":
|
|
2847
|
+
"$value": {
|
|
2848
|
+
"color": "#b7bdc8",
|
|
2849
|
+
"style": "solid",
|
|
2850
|
+
"width": ["0.0625rem", "1px"]
|
|
2851
|
+
},
|
|
2740
2852
|
"$type": "border",
|
|
2741
2853
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2742
2854
|
"isSource": true,
|
|
@@ -2755,7 +2867,11 @@
|
|
|
2755
2867
|
},
|
|
2756
2868
|
"border-neutral-muted": {
|
|
2757
2869
|
"key": "{border.neutral.muted}",
|
|
2758
|
-
"$value":
|
|
2870
|
+
"$value": {
|
|
2871
|
+
"color": "#b7bdc8",
|
|
2872
|
+
"style": "solid",
|
|
2873
|
+
"width": ["0.0625rem", "1px"]
|
|
2874
|
+
},
|
|
2759
2875
|
"$type": "border",
|
|
2760
2876
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2761
2877
|
"isSource": true,
|
|
@@ -2774,7 +2890,11 @@
|
|
|
2774
2890
|
},
|
|
2775
2891
|
"border-open-emphasis": {
|
|
2776
2892
|
"key": "{border.open.emphasis}",
|
|
2777
|
-
"$value":
|
|
2893
|
+
"$value": {
|
|
2894
|
+
"color": "#09b43a",
|
|
2895
|
+
"style": "solid",
|
|
2896
|
+
"width": ["0.0625rem", "1px"]
|
|
2897
|
+
},
|
|
2778
2898
|
"$type": "border",
|
|
2779
2899
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2780
2900
|
"isSource": true,
|
|
@@ -2789,7 +2909,11 @@
|
|
|
2789
2909
|
},
|
|
2790
2910
|
"border-open-muted": {
|
|
2791
2911
|
"key": "{border.open.muted}",
|
|
2792
|
-
"$value":
|
|
2912
|
+
"$value": {
|
|
2913
|
+
"color": "#0ac740",
|
|
2914
|
+
"style": "solid",
|
|
2915
|
+
"width": ["0.0625rem", "1px"]
|
|
2916
|
+
},
|
|
2793
2917
|
"$type": "border",
|
|
2794
2918
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2795
2919
|
"isSource": true,
|
|
@@ -2804,7 +2928,11 @@
|
|
|
2804
2928
|
},
|
|
2805
2929
|
"border-severe-emphasis": {
|
|
2806
2930
|
"key": "{border.severe.emphasis}",
|
|
2807
|
-
"$value":
|
|
2931
|
+
"$value": {
|
|
2932
|
+
"color": "#e7811d",
|
|
2933
|
+
"style": "solid",
|
|
2934
|
+
"width": ["0.0625rem", "1px"]
|
|
2935
|
+
},
|
|
2808
2936
|
"$type": "border",
|
|
2809
2937
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2810
2938
|
"isSource": true,
|
|
@@ -2823,7 +2951,11 @@
|
|
|
2823
2951
|
},
|
|
2824
2952
|
"border-severe-muted": {
|
|
2825
2953
|
"key": "{border.severe.muted}",
|
|
2826
|
-
"$value":
|
|
2954
|
+
"$value": {
|
|
2955
|
+
"color": "#f48b25",
|
|
2956
|
+
"style": "solid",
|
|
2957
|
+
"width": ["0.0625rem", "1px"]
|
|
2958
|
+
},
|
|
2827
2959
|
"$type": "border",
|
|
2828
2960
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2829
2961
|
"isSource": true,
|
|
@@ -2842,7 +2974,11 @@
|
|
|
2842
2974
|
},
|
|
2843
2975
|
"border-sponsors-emphasis": {
|
|
2844
2976
|
"key": "{border.sponsors.emphasis}",
|
|
2845
|
-
"$value":
|
|
2977
|
+
"$value": {
|
|
2978
|
+
"color": "#ef6eb1",
|
|
2979
|
+
"style": "solid",
|
|
2980
|
+
"width": ["0.0625rem", "1px"]
|
|
2981
|
+
},
|
|
2846
2982
|
"$type": "border",
|
|
2847
2983
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2848
2984
|
"isSource": true,
|
|
@@ -2861,7 +2997,11 @@
|
|
|
2861
2997
|
},
|
|
2862
2998
|
"border-sponsors-muted": {
|
|
2863
2999
|
"key": "{border.sponsors.muted}",
|
|
2864
|
-
"$value":
|
|
3000
|
+
"$value": {
|
|
3001
|
+
"color": "#f87cbd",
|
|
3002
|
+
"style": "solid",
|
|
3003
|
+
"width": ["0.0625rem", "1px"]
|
|
3004
|
+
},
|
|
2865
3005
|
"$type": "border",
|
|
2866
3006
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2867
3007
|
"isSource": true,
|
|
@@ -2880,7 +3020,11 @@
|
|
|
2880
3020
|
},
|
|
2881
3021
|
"border-success-emphasis": {
|
|
2882
3022
|
"key": "{border.success.emphasis}",
|
|
2883
|
-
"$value":
|
|
3023
|
+
"$value": {
|
|
3024
|
+
"color": "#09b43a",
|
|
3025
|
+
"style": "solid",
|
|
3026
|
+
"width": ["0.0625rem", "1px"]
|
|
3027
|
+
},
|
|
2884
3028
|
"$type": "border",
|
|
2885
3029
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2886
3030
|
"isSource": true,
|
|
@@ -2899,7 +3043,11 @@
|
|
|
2899
3043
|
},
|
|
2900
3044
|
"border-success-muted": {
|
|
2901
3045
|
"key": "{border.success.muted}",
|
|
2902
|
-
"$value":
|
|
3046
|
+
"$value": {
|
|
3047
|
+
"color": "#0ac740",
|
|
3048
|
+
"style": "solid",
|
|
3049
|
+
"width": ["0.0625rem", "1px"]
|
|
3050
|
+
},
|
|
2903
3051
|
"$type": "border",
|
|
2904
3052
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2905
3053
|
"isSource": true,
|
|
@@ -2918,7 +3066,11 @@
|
|
|
2918
3066
|
},
|
|
2919
3067
|
"border-transparent": {
|
|
2920
3068
|
"key": "{border.transparent}",
|
|
2921
|
-
"$value":
|
|
3069
|
+
"$value": {
|
|
3070
|
+
"color": "#00000000",
|
|
3071
|
+
"style": "solid",
|
|
3072
|
+
"width": ["0.0625rem", "1px"]
|
|
3073
|
+
},
|
|
2922
3074
|
"$type": "border",
|
|
2923
3075
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2924
3076
|
"isSource": true,
|
|
@@ -2937,7 +3089,11 @@
|
|
|
2937
3089
|
},
|
|
2938
3090
|
"border-upsell-emphasis": {
|
|
2939
3091
|
"key": "{border.upsell.emphasis}",
|
|
2940
|
-
"$value":
|
|
3092
|
+
"$value": {
|
|
3093
|
+
"color": "#b87fff",
|
|
3094
|
+
"style": "solid",
|
|
3095
|
+
"width": ["0.0625rem", "1px"]
|
|
3096
|
+
},
|
|
2941
3097
|
"$type": "border",
|
|
2942
3098
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2943
3099
|
"isSource": true,
|
|
@@ -2956,7 +3112,11 @@
|
|
|
2956
3112
|
},
|
|
2957
3113
|
"border-upsell-muted": {
|
|
2958
3114
|
"key": "{border.upsell.muted}",
|
|
2959
|
-
"$value":
|
|
3115
|
+
"$value": {
|
|
3116
|
+
"color": "#bf8fff",
|
|
3117
|
+
"style": "solid",
|
|
3118
|
+
"width": ["0.0625rem", "1px"]
|
|
3119
|
+
},
|
|
2960
3120
|
"$type": "border",
|
|
2961
3121
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2962
3122
|
"isSource": true,
|
|
@@ -6946,7 +7106,7 @@
|
|
|
6946
7106
|
},
|
|
6947
7107
|
"button-danger-shadow-selected": {
|
|
6948
7108
|
"key": "{button.danger.shadow.selected}",
|
|
6949
|
-
"$value": "
|
|
7109
|
+
"$value": "0 0 0 0 #000000",
|
|
6950
7110
|
"$type": "shadow",
|
|
6951
7111
|
"$extensions": {
|
|
6952
7112
|
"org.primer.figma": {
|
|
@@ -6959,10 +7119,22 @@
|
|
|
6959
7119
|
{
|
|
6960
7120
|
"color": "#8f3c00",
|
|
6961
7121
|
"alpha": 0.2,
|
|
6962
|
-
"offsetX":
|
|
6963
|
-
|
|
6964
|
-
|
|
6965
|
-
|
|
7122
|
+
"offsetX": {
|
|
7123
|
+
"value": 0,
|
|
7124
|
+
"unit": "px"
|
|
7125
|
+
},
|
|
7126
|
+
"offsetY": {
|
|
7127
|
+
"value": 1,
|
|
7128
|
+
"unit": "px"
|
|
7129
|
+
},
|
|
7130
|
+
"blur": {
|
|
7131
|
+
"value": 0,
|
|
7132
|
+
"unit": "px"
|
|
7133
|
+
},
|
|
7134
|
+
"spread": {
|
|
7135
|
+
"value": 0,
|
|
7136
|
+
"unit": "px"
|
|
7137
|
+
},
|
|
6966
7138
|
"inset": true
|
|
6967
7139
|
}
|
|
6968
7140
|
],
|
|
@@ -6975,10 +7147,22 @@
|
|
|
6975
7147
|
{
|
|
6976
7148
|
"color": "#00000000",
|
|
6977
7149
|
"alpha": 0,
|
|
6978
|
-
"offsetX":
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
7150
|
+
"offsetX": {
|
|
7151
|
+
"value": 0,
|
|
7152
|
+
"unit": "px"
|
|
7153
|
+
},
|
|
7154
|
+
"offsetY": {
|
|
7155
|
+
"value": 0,
|
|
7156
|
+
"unit": "px"
|
|
7157
|
+
},
|
|
7158
|
+
"blur": {
|
|
7159
|
+
"value": 0,
|
|
7160
|
+
"unit": "px"
|
|
7161
|
+
},
|
|
7162
|
+
"spread": {
|
|
7163
|
+
"value": 0,
|
|
7164
|
+
"unit": "px"
|
|
7165
|
+
},
|
|
6982
7166
|
"inset": false
|
|
6983
7167
|
}
|
|
6984
7168
|
],
|
|
@@ -6995,10 +7179,22 @@
|
|
|
6995
7179
|
{
|
|
6996
7180
|
"color": "{base.color.transparent}",
|
|
6997
7181
|
"alpha": 0,
|
|
6998
|
-
"offsetX":
|
|
6999
|
-
|
|
7000
|
-
|
|
7001
|
-
|
|
7182
|
+
"offsetX": {
|
|
7183
|
+
"value": 0,
|
|
7184
|
+
"unit": "px"
|
|
7185
|
+
},
|
|
7186
|
+
"offsetY": {
|
|
7187
|
+
"value": 0,
|
|
7188
|
+
"unit": "px"
|
|
7189
|
+
},
|
|
7190
|
+
"blur": {
|
|
7191
|
+
"value": 0,
|
|
7192
|
+
"unit": "px"
|
|
7193
|
+
},
|
|
7194
|
+
"spread": {
|
|
7195
|
+
"value": 0,
|
|
7196
|
+
"unit": "px"
|
|
7197
|
+
},
|
|
7002
7198
|
"inset": false
|
|
7003
7199
|
}
|
|
7004
7200
|
],
|
|
@@ -7014,10 +7210,22 @@
|
|
|
7014
7210
|
{
|
|
7015
7211
|
"color": "{base.color.orange.9}",
|
|
7016
7212
|
"alpha": 0.2,
|
|
7017
|
-
"offsetX":
|
|
7018
|
-
|
|
7019
|
-
|
|
7020
|
-
|
|
7213
|
+
"offsetX": {
|
|
7214
|
+
"value": 0,
|
|
7215
|
+
"unit": "px"
|
|
7216
|
+
},
|
|
7217
|
+
"offsetY": {
|
|
7218
|
+
"value": 1,
|
|
7219
|
+
"unit": "px"
|
|
7220
|
+
},
|
|
7221
|
+
"blur": {
|
|
7222
|
+
"value": 0,
|
|
7223
|
+
"unit": "px"
|
|
7224
|
+
},
|
|
7225
|
+
"spread": {
|
|
7226
|
+
"value": 0,
|
|
7227
|
+
"unit": "px"
|
|
7228
|
+
},
|
|
7021
7229
|
"inset": true
|
|
7022
7230
|
}
|
|
7023
7231
|
],
|
|
@@ -7030,10 +7238,22 @@
|
|
|
7030
7238
|
{
|
|
7031
7239
|
"color": "{base.color.transparent}",
|
|
7032
7240
|
"alpha": 0,
|
|
7033
|
-
"offsetX":
|
|
7034
|
-
|
|
7035
|
-
|
|
7036
|
-
|
|
7241
|
+
"offsetX": {
|
|
7242
|
+
"value": 0,
|
|
7243
|
+
"unit": "px"
|
|
7244
|
+
},
|
|
7245
|
+
"offsetY": {
|
|
7246
|
+
"value": 0,
|
|
7247
|
+
"unit": "px"
|
|
7248
|
+
},
|
|
7249
|
+
"blur": {
|
|
7250
|
+
"value": 0,
|
|
7251
|
+
"unit": "px"
|
|
7252
|
+
},
|
|
7253
|
+
"spread": {
|
|
7254
|
+
"value": 0,
|
|
7255
|
+
"unit": "px"
|
|
7256
|
+
},
|
|
7037
7257
|
"inset": false
|
|
7038
7258
|
}
|
|
7039
7259
|
],
|
|
@@ -7409,7 +7629,7 @@
|
|
|
7409
7629
|
},
|
|
7410
7630
|
"button-default-shadow-resting": {
|
|
7411
7631
|
"key": "{button.default.shadow.resting}",
|
|
7412
|
-
"$value": "
|
|
7632
|
+
"$value": "0 0 0 0 #000000",
|
|
7413
7633
|
"$type": "shadow",
|
|
7414
7634
|
"$extensions": {
|
|
7415
7635
|
"org.primer.figma": {
|
|
@@ -7422,10 +7642,22 @@
|
|
|
7422
7642
|
{
|
|
7423
7643
|
"color": "#00000000",
|
|
7424
7644
|
"alpha": 0,
|
|
7425
|
-
"offsetX":
|
|
7426
|
-
|
|
7427
|
-
|
|
7428
|
-
|
|
7645
|
+
"offsetX": {
|
|
7646
|
+
"value": 0,
|
|
7647
|
+
"unit": "px"
|
|
7648
|
+
},
|
|
7649
|
+
"offsetY": {
|
|
7650
|
+
"value": 0,
|
|
7651
|
+
"unit": "px"
|
|
7652
|
+
},
|
|
7653
|
+
"blur": {
|
|
7654
|
+
"value": 0,
|
|
7655
|
+
"unit": "px"
|
|
7656
|
+
},
|
|
7657
|
+
"spread": {
|
|
7658
|
+
"value": 0,
|
|
7659
|
+
"unit": "px"
|
|
7660
|
+
},
|
|
7429
7661
|
"inset": false
|
|
7430
7662
|
}
|
|
7431
7663
|
],
|
|
@@ -7442,10 +7674,22 @@
|
|
|
7442
7674
|
{
|
|
7443
7675
|
"color": "{base.color.transparent}",
|
|
7444
7676
|
"alpha": 0,
|
|
7445
|
-
"offsetX":
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
|
|
7677
|
+
"offsetX": {
|
|
7678
|
+
"value": 0,
|
|
7679
|
+
"unit": "px"
|
|
7680
|
+
},
|
|
7681
|
+
"offsetY": {
|
|
7682
|
+
"value": 0,
|
|
7683
|
+
"unit": "px"
|
|
7684
|
+
},
|
|
7685
|
+
"blur": {
|
|
7686
|
+
"value": 0,
|
|
7687
|
+
"unit": "px"
|
|
7688
|
+
},
|
|
7689
|
+
"spread": {
|
|
7690
|
+
"value": 0,
|
|
7691
|
+
"unit": "px"
|
|
7692
|
+
},
|
|
7449
7693
|
"inset": false
|
|
7450
7694
|
}
|
|
7451
7695
|
],
|
|
@@ -7461,10 +7705,22 @@
|
|
|
7461
7705
|
{
|
|
7462
7706
|
"color": "{base.color.transparent}",
|
|
7463
7707
|
"alpha": 0,
|
|
7464
|
-
"offsetX":
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7708
|
+
"offsetX": {
|
|
7709
|
+
"value": 0,
|
|
7710
|
+
"unit": "px"
|
|
7711
|
+
},
|
|
7712
|
+
"offsetY": {
|
|
7713
|
+
"value": 0,
|
|
7714
|
+
"unit": "px"
|
|
7715
|
+
},
|
|
7716
|
+
"blur": {
|
|
7717
|
+
"value": 0,
|
|
7718
|
+
"unit": "px"
|
|
7719
|
+
},
|
|
7720
|
+
"spread": {
|
|
7721
|
+
"value": 0,
|
|
7722
|
+
"unit": "px"
|
|
7723
|
+
},
|
|
7468
7724
|
"inset": false
|
|
7469
7725
|
}
|
|
7470
7726
|
],
|
|
@@ -9172,7 +9428,7 @@
|
|
|
9172
9428
|
},
|
|
9173
9429
|
"button-outline-shadow-selected": {
|
|
9174
9430
|
"key": "{button.outline.shadow.selected}",
|
|
9175
|
-
"$value": "
|
|
9431
|
+
"$value": "0 0 0 0 #000000",
|
|
9176
9432
|
"$type": "shadow",
|
|
9177
9433
|
"$extensions": {
|
|
9178
9434
|
"org.primer.figma": {
|
|
@@ -9185,10 +9441,22 @@
|
|
|
9185
9441
|
{
|
|
9186
9442
|
"color": "#00000000",
|
|
9187
9443
|
"alpha": 0,
|
|
9188
|
-
"offsetX":
|
|
9189
|
-
|
|
9190
|
-
|
|
9191
|
-
|
|
9444
|
+
"offsetX": {
|
|
9445
|
+
"value": 0,
|
|
9446
|
+
"unit": "px"
|
|
9447
|
+
},
|
|
9448
|
+
"offsetY": {
|
|
9449
|
+
"value": 0,
|
|
9450
|
+
"unit": "px"
|
|
9451
|
+
},
|
|
9452
|
+
"blur": {
|
|
9453
|
+
"value": 0,
|
|
9454
|
+
"unit": "px"
|
|
9455
|
+
},
|
|
9456
|
+
"spread": {
|
|
9457
|
+
"value": 0,
|
|
9458
|
+
"unit": "px"
|
|
9459
|
+
},
|
|
9192
9460
|
"inset": false
|
|
9193
9461
|
}
|
|
9194
9462
|
],
|
|
@@ -9205,10 +9473,22 @@
|
|
|
9205
9473
|
{
|
|
9206
9474
|
"color": "{base.color.transparent}",
|
|
9207
9475
|
"alpha": 0,
|
|
9208
|
-
"offsetX":
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
9476
|
+
"offsetX": {
|
|
9477
|
+
"value": 0,
|
|
9478
|
+
"unit": "px"
|
|
9479
|
+
},
|
|
9480
|
+
"offsetY": {
|
|
9481
|
+
"value": 0,
|
|
9482
|
+
"unit": "px"
|
|
9483
|
+
},
|
|
9484
|
+
"blur": {
|
|
9485
|
+
"value": 0,
|
|
9486
|
+
"unit": "px"
|
|
9487
|
+
},
|
|
9488
|
+
"spread": {
|
|
9489
|
+
"value": 0,
|
|
9490
|
+
"unit": "px"
|
|
9491
|
+
},
|
|
9212
9492
|
"inset": false
|
|
9213
9493
|
}
|
|
9214
9494
|
],
|
|
@@ -9224,10 +9504,22 @@
|
|
|
9224
9504
|
{
|
|
9225
9505
|
"color": "{base.color.transparent}",
|
|
9226
9506
|
"alpha": 0,
|
|
9227
|
-
"offsetX":
|
|
9228
|
-
|
|
9229
|
-
|
|
9230
|
-
|
|
9507
|
+
"offsetX": {
|
|
9508
|
+
"value": 0,
|
|
9509
|
+
"unit": "px"
|
|
9510
|
+
},
|
|
9511
|
+
"offsetY": {
|
|
9512
|
+
"value": 0,
|
|
9513
|
+
"unit": "px"
|
|
9514
|
+
},
|
|
9515
|
+
"blur": {
|
|
9516
|
+
"value": 0,
|
|
9517
|
+
"unit": "px"
|
|
9518
|
+
},
|
|
9519
|
+
"spread": {
|
|
9520
|
+
"value": 0,
|
|
9521
|
+
"unit": "px"
|
|
9522
|
+
},
|
|
9231
9523
|
"inset": false
|
|
9232
9524
|
}
|
|
9233
9525
|
],
|
|
@@ -10382,7 +10674,7 @@
|
|
|
10382
10674
|
},
|
|
10383
10675
|
"button-primary-shadow-selected": {
|
|
10384
10676
|
"key": "{button.primary.shadow.selected}",
|
|
10385
|
-
"$value": "
|
|
10677
|
+
"$value": "0 0 0 0 #000000",
|
|
10386
10678
|
"$type": "shadow",
|
|
10387
10679
|
"$extensions": {
|
|
10388
10680
|
"org.primer.figma": {
|
|
@@ -10395,10 +10687,22 @@
|
|
|
10395
10687
|
{
|
|
10396
10688
|
"color": "#194fb1",
|
|
10397
10689
|
"alpha": 0.3,
|
|
10398
|
-
"offsetX":
|
|
10399
|
-
|
|
10400
|
-
|
|
10401
|
-
|
|
10690
|
+
"offsetX": {
|
|
10691
|
+
"value": 0,
|
|
10692
|
+
"unit": "px"
|
|
10693
|
+
},
|
|
10694
|
+
"offsetY": {
|
|
10695
|
+
"value": 1,
|
|
10696
|
+
"unit": "px"
|
|
10697
|
+
},
|
|
10698
|
+
"blur": {
|
|
10699
|
+
"value": 0,
|
|
10700
|
+
"unit": "px"
|
|
10701
|
+
},
|
|
10702
|
+
"spread": {
|
|
10703
|
+
"value": 0,
|
|
10704
|
+
"unit": "px"
|
|
10705
|
+
},
|
|
10402
10706
|
"inset": true
|
|
10403
10707
|
}
|
|
10404
10708
|
],
|
|
@@ -10411,10 +10715,22 @@
|
|
|
10411
10715
|
{
|
|
10412
10716
|
"color": "#194fb1",
|
|
10413
10717
|
"alpha": 0.3,
|
|
10414
|
-
"offsetX":
|
|
10415
|
-
|
|
10416
|
-
|
|
10417
|
-
|
|
10718
|
+
"offsetX": {
|
|
10719
|
+
"value": 0,
|
|
10720
|
+
"unit": "px"
|
|
10721
|
+
},
|
|
10722
|
+
"offsetY": {
|
|
10723
|
+
"value": 1,
|
|
10724
|
+
"unit": "px"
|
|
10725
|
+
},
|
|
10726
|
+
"blur": {
|
|
10727
|
+
"value": 0,
|
|
10728
|
+
"unit": "px"
|
|
10729
|
+
},
|
|
10730
|
+
"spread": {
|
|
10731
|
+
"value": 0,
|
|
10732
|
+
"unit": "px"
|
|
10733
|
+
},
|
|
10418
10734
|
"inset": true
|
|
10419
10735
|
}
|
|
10420
10736
|
],
|
|
@@ -10427,10 +10743,22 @@
|
|
|
10427
10743
|
{
|
|
10428
10744
|
"color": "#00000000",
|
|
10429
10745
|
"alpha": 0,
|
|
10430
|
-
"offsetX":
|
|
10431
|
-
|
|
10432
|
-
|
|
10433
|
-
|
|
10746
|
+
"offsetX": {
|
|
10747
|
+
"value": 0,
|
|
10748
|
+
"unit": "px"
|
|
10749
|
+
},
|
|
10750
|
+
"offsetY": {
|
|
10751
|
+
"value": 0,
|
|
10752
|
+
"unit": "px"
|
|
10753
|
+
},
|
|
10754
|
+
"blur": {
|
|
10755
|
+
"value": 0,
|
|
10756
|
+
"unit": "px"
|
|
10757
|
+
},
|
|
10758
|
+
"spread": {
|
|
10759
|
+
"value": 0,
|
|
10760
|
+
"unit": "px"
|
|
10761
|
+
},
|
|
10434
10762
|
"inset": false
|
|
10435
10763
|
}
|
|
10436
10764
|
],
|
|
@@ -10447,10 +10775,22 @@
|
|
|
10447
10775
|
{
|
|
10448
10776
|
"color": "{base.color.transparent}",
|
|
10449
10777
|
"alpha": 0,
|
|
10450
|
-
"offsetX":
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
10778
|
+
"offsetX": {
|
|
10779
|
+
"value": 0,
|
|
10780
|
+
"unit": "px"
|
|
10781
|
+
},
|
|
10782
|
+
"offsetY": {
|
|
10783
|
+
"value": 0,
|
|
10784
|
+
"unit": "px"
|
|
10785
|
+
},
|
|
10786
|
+
"blur": {
|
|
10787
|
+
"value": 0,
|
|
10788
|
+
"unit": "px"
|
|
10789
|
+
},
|
|
10790
|
+
"spread": {
|
|
10791
|
+
"value": 0,
|
|
10792
|
+
"unit": "px"
|
|
10793
|
+
},
|
|
10454
10794
|
"inset": false
|
|
10455
10795
|
}
|
|
10456
10796
|
],
|
|
@@ -10466,10 +10806,22 @@
|
|
|
10466
10806
|
{
|
|
10467
10807
|
"color": "{base.color.blue.9}",
|
|
10468
10808
|
"alpha": 0.3,
|
|
10469
|
-
"offsetX":
|
|
10470
|
-
|
|
10471
|
-
|
|
10472
|
-
|
|
10809
|
+
"offsetX": {
|
|
10810
|
+
"value": 0,
|
|
10811
|
+
"unit": "px"
|
|
10812
|
+
},
|
|
10813
|
+
"offsetY": {
|
|
10814
|
+
"value": 1,
|
|
10815
|
+
"unit": "px"
|
|
10816
|
+
},
|
|
10817
|
+
"blur": {
|
|
10818
|
+
"value": 0,
|
|
10819
|
+
"unit": "px"
|
|
10820
|
+
},
|
|
10821
|
+
"spread": {
|
|
10822
|
+
"value": 0,
|
|
10823
|
+
"unit": "px"
|
|
10824
|
+
},
|
|
10473
10825
|
"inset": true
|
|
10474
10826
|
}
|
|
10475
10827
|
],
|
|
@@ -10482,10 +10834,22 @@
|
|
|
10482
10834
|
{
|
|
10483
10835
|
"color": "{base.color.blue.9}",
|
|
10484
10836
|
"alpha": 0.3,
|
|
10485
|
-
"offsetX":
|
|
10486
|
-
|
|
10487
|
-
|
|
10488
|
-
|
|
10837
|
+
"offsetX": {
|
|
10838
|
+
"value": 0,
|
|
10839
|
+
"unit": "px"
|
|
10840
|
+
},
|
|
10841
|
+
"offsetY": {
|
|
10842
|
+
"value": 1,
|
|
10843
|
+
"unit": "px"
|
|
10844
|
+
},
|
|
10845
|
+
"blur": {
|
|
10846
|
+
"value": 0,
|
|
10847
|
+
"unit": "px"
|
|
10848
|
+
},
|
|
10849
|
+
"spread": {
|
|
10850
|
+
"value": 0,
|
|
10851
|
+
"unit": "px"
|
|
10852
|
+
},
|
|
10489
10853
|
"inset": true
|
|
10490
10854
|
}
|
|
10491
10855
|
],
|
|
@@ -10498,10 +10862,22 @@
|
|
|
10498
10862
|
{
|
|
10499
10863
|
"color": "{base.color.transparent}",
|
|
10500
10864
|
"alpha": 0,
|
|
10501
|
-
"offsetX":
|
|
10502
|
-
|
|
10503
|
-
|
|
10504
|
-
|
|
10865
|
+
"offsetX": {
|
|
10866
|
+
"value": 0,
|
|
10867
|
+
"unit": "px"
|
|
10868
|
+
},
|
|
10869
|
+
"offsetY": {
|
|
10870
|
+
"value": 0,
|
|
10871
|
+
"unit": "px"
|
|
10872
|
+
},
|
|
10873
|
+
"blur": {
|
|
10874
|
+
"value": 0,
|
|
10875
|
+
"unit": "px"
|
|
10876
|
+
},
|
|
10877
|
+
"spread": {
|
|
10878
|
+
"value": 0,
|
|
10879
|
+
"unit": "px"
|
|
10880
|
+
},
|
|
10505
10881
|
"inset": false
|
|
10506
10882
|
}
|
|
10507
10883
|
],
|
|
@@ -37252,6 +37628,10 @@
|
|
|
37252
37628
|
},
|
|
37253
37629
|
"org.primer.overrides": {
|
|
37254
37630
|
"dark": "#010409"
|
|
37631
|
+
},
|
|
37632
|
+
"org.primer.llm": {
|
|
37633
|
+
"doNotUse": true,
|
|
37634
|
+
"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."
|
|
37255
37635
|
}
|
|
37256
37636
|
},
|
|
37257
37637
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -37268,6 +37648,10 @@
|
|
|
37268
37648
|
},
|
|
37269
37649
|
"org.primer.overrides": {
|
|
37270
37650
|
"dark": "{base.color.neutral.0}"
|
|
37651
|
+
},
|
|
37652
|
+
"org.primer.llm": {
|
|
37653
|
+
"doNotUse": true,
|
|
37654
|
+
"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."
|
|
37271
37655
|
}
|
|
37272
37656
|
},
|
|
37273
37657
|
"key": "{fgColor.black}"
|
|
@@ -38241,6 +38625,10 @@
|
|
|
38241
38625
|
},
|
|
38242
38626
|
"org.primer.overrides": {
|
|
38243
38627
|
"dark": "#ffffff"
|
|
38628
|
+
},
|
|
38629
|
+
"org.primer.llm": {
|
|
38630
|
+
"doNotUse": true,
|
|
38631
|
+
"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."
|
|
38244
38632
|
}
|
|
38245
38633
|
},
|
|
38246
38634
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -38257,6 +38645,10 @@
|
|
|
38257
38645
|
},
|
|
38258
38646
|
"org.primer.overrides": {
|
|
38259
38647
|
"dark": "{base.color.neutral.13}"
|
|
38648
|
+
},
|
|
38649
|
+
"org.primer.llm": {
|
|
38650
|
+
"doNotUse": true,
|
|
38651
|
+
"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."
|
|
38260
38652
|
}
|
|
38261
38653
|
},
|
|
38262
38654
|
"key": "{fgColor.white}"
|
|
@@ -38282,7 +38674,10 @@
|
|
|
38282
38674
|
"$value": {
|
|
38283
38675
|
"color": "{focus.outlineColor}",
|
|
38284
38676
|
"style": "solid",
|
|
38285
|
-
"width":
|
|
38677
|
+
"width": {
|
|
38678
|
+
"value": 2,
|
|
38679
|
+
"unit": "px"
|
|
38680
|
+
}
|
|
38286
38681
|
},
|
|
38287
38682
|
"$type": "border",
|
|
38288
38683
|
"$description": "Focus ring outline for keyboard navigation and accessibility.",
|
|
@@ -47441,7 +47836,7 @@
|
|
|
47441
47836
|
},
|
|
47442
47837
|
"shadow-floating-large": {
|
|
47443
47838
|
"key": "{shadow.floating.large}",
|
|
47444
|
-
"$value": "
|
|
47839
|
+
"$value": "0 0 0 1px #b7bdc8, 0 24px 48px 0 #010409",
|
|
47445
47840
|
"$type": "shadow",
|
|
47446
47841
|
"$description": "Large floating shadow for modals and dialogs",
|
|
47447
47842
|
"$extensions": {
|
|
@@ -47455,18 +47850,42 @@
|
|
|
47455
47850
|
{
|
|
47456
47851
|
"color": "#b7bdc8",
|
|
47457
47852
|
"alpha": 1,
|
|
47458
|
-
"offsetX":
|
|
47459
|
-
|
|
47460
|
-
|
|
47461
|
-
|
|
47853
|
+
"offsetX": {
|
|
47854
|
+
"value": 0,
|
|
47855
|
+
"unit": "px"
|
|
47856
|
+
},
|
|
47857
|
+
"offsetY": {
|
|
47858
|
+
"value": 0,
|
|
47859
|
+
"unit": "px"
|
|
47860
|
+
},
|
|
47861
|
+
"blur": {
|
|
47862
|
+
"value": 0,
|
|
47863
|
+
"unit": "px"
|
|
47864
|
+
},
|
|
47865
|
+
"spread": {
|
|
47866
|
+
"value": 1,
|
|
47867
|
+
"unit": "px"
|
|
47868
|
+
}
|
|
47462
47869
|
},
|
|
47463
47870
|
{
|
|
47464
47871
|
"color": "#010409",
|
|
47465
47872
|
"alpha": 1,
|
|
47466
|
-
"offsetX":
|
|
47467
|
-
|
|
47468
|
-
|
|
47469
|
-
|
|
47873
|
+
"offsetX": {
|
|
47874
|
+
"value": 0,
|
|
47875
|
+
"unit": "px"
|
|
47876
|
+
},
|
|
47877
|
+
"offsetY": {
|
|
47878
|
+
"value": 24,
|
|
47879
|
+
"unit": "px"
|
|
47880
|
+
},
|
|
47881
|
+
"blur": {
|
|
47882
|
+
"value": 48,
|
|
47883
|
+
"unit": "px"
|
|
47884
|
+
},
|
|
47885
|
+
"spread": {
|
|
47886
|
+
"value": 0,
|
|
47887
|
+
"unit": "px"
|
|
47888
|
+
}
|
|
47470
47889
|
}
|
|
47471
47890
|
],
|
|
47472
47891
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47486,18 +47905,42 @@
|
|
|
47486
47905
|
{
|
|
47487
47906
|
"color": "{overlay.borderColor}",
|
|
47488
47907
|
"alpha": 1,
|
|
47489
|
-
"offsetX":
|
|
47490
|
-
|
|
47491
|
-
|
|
47492
|
-
|
|
47908
|
+
"offsetX": {
|
|
47909
|
+
"value": 0,
|
|
47910
|
+
"unit": "px"
|
|
47911
|
+
},
|
|
47912
|
+
"offsetY": {
|
|
47913
|
+
"value": 0,
|
|
47914
|
+
"unit": "px"
|
|
47915
|
+
},
|
|
47916
|
+
"blur": {
|
|
47917
|
+
"value": 0,
|
|
47918
|
+
"unit": "px"
|
|
47919
|
+
},
|
|
47920
|
+
"spread": {
|
|
47921
|
+
"value": 1,
|
|
47922
|
+
"unit": "px"
|
|
47923
|
+
}
|
|
47493
47924
|
},
|
|
47494
47925
|
{
|
|
47495
47926
|
"color": "{base.color.neutral.0}",
|
|
47496
47927
|
"alpha": 1,
|
|
47497
|
-
"offsetX":
|
|
47498
|
-
|
|
47499
|
-
|
|
47500
|
-
|
|
47928
|
+
"offsetX": {
|
|
47929
|
+
"value": 0,
|
|
47930
|
+
"unit": "px"
|
|
47931
|
+
},
|
|
47932
|
+
"offsetY": {
|
|
47933
|
+
"value": 24,
|
|
47934
|
+
"unit": "px"
|
|
47935
|
+
},
|
|
47936
|
+
"blur": {
|
|
47937
|
+
"value": 48,
|
|
47938
|
+
"unit": "px"
|
|
47939
|
+
},
|
|
47940
|
+
"spread": {
|
|
47941
|
+
"value": 0,
|
|
47942
|
+
"unit": "px"
|
|
47943
|
+
}
|
|
47501
47944
|
}
|
|
47502
47945
|
],
|
|
47503
47946
|
"$type": "shadow",
|
|
@@ -47513,18 +47956,42 @@
|
|
|
47513
47956
|
{
|
|
47514
47957
|
"color": "{overlay.borderColor}",
|
|
47515
47958
|
"alpha": 1,
|
|
47516
|
-
"offsetX":
|
|
47517
|
-
|
|
47518
|
-
|
|
47519
|
-
|
|
47959
|
+
"offsetX": {
|
|
47960
|
+
"value": 0,
|
|
47961
|
+
"unit": "px"
|
|
47962
|
+
},
|
|
47963
|
+
"offsetY": {
|
|
47964
|
+
"value": 0,
|
|
47965
|
+
"unit": "px"
|
|
47966
|
+
},
|
|
47967
|
+
"blur": {
|
|
47968
|
+
"value": 0,
|
|
47969
|
+
"unit": "px"
|
|
47970
|
+
},
|
|
47971
|
+
"spread": {
|
|
47972
|
+
"value": 1,
|
|
47973
|
+
"unit": "px"
|
|
47974
|
+
}
|
|
47520
47975
|
},
|
|
47521
47976
|
{
|
|
47522
47977
|
"color": "{base.color.neutral.0}",
|
|
47523
47978
|
"alpha": 1,
|
|
47524
|
-
"offsetX":
|
|
47525
|
-
|
|
47526
|
-
|
|
47527
|
-
|
|
47979
|
+
"offsetX": {
|
|
47980
|
+
"value": 0,
|
|
47981
|
+
"unit": "px"
|
|
47982
|
+
},
|
|
47983
|
+
"offsetY": {
|
|
47984
|
+
"value": 24,
|
|
47985
|
+
"unit": "px"
|
|
47986
|
+
},
|
|
47987
|
+
"blur": {
|
|
47988
|
+
"value": 48,
|
|
47989
|
+
"unit": "px"
|
|
47990
|
+
},
|
|
47991
|
+
"spread": {
|
|
47992
|
+
"value": 0,
|
|
47993
|
+
"unit": "px"
|
|
47994
|
+
}
|
|
47528
47995
|
}
|
|
47529
47996
|
],
|
|
47530
47997
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47545,8 +48012,9 @@
|
|
|
47545
48012
|
},
|
|
47546
48013
|
"shadow-floating-legacy": {
|
|
47547
48014
|
"key": "{shadow.floating.legacy}",
|
|
47548
|
-
"$value": "
|
|
48015
|
+
"$value": "0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966",
|
|
47549
48016
|
"$type": "shadow",
|
|
48017
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47550
48018
|
"$extensions": {
|
|
47551
48019
|
"org.primer.figma": {},
|
|
47552
48020
|
"org.primer.overrides": {
|
|
@@ -47555,24 +48023,52 @@
|
|
|
47555
48023
|
{
|
|
47556
48024
|
"color": "#010409",
|
|
47557
48025
|
"alpha": 0.4,
|
|
47558
|
-
"offsetX":
|
|
47559
|
-
|
|
47560
|
-
|
|
47561
|
-
|
|
48026
|
+
"offsetX": {
|
|
48027
|
+
"value": 0,
|
|
48028
|
+
"unit": "px"
|
|
48029
|
+
},
|
|
48030
|
+
"offsetY": {
|
|
48031
|
+
"value": 6,
|
|
48032
|
+
"unit": "px"
|
|
48033
|
+
},
|
|
48034
|
+
"blur": {
|
|
48035
|
+
"value": 12,
|
|
48036
|
+
"unit": "px"
|
|
48037
|
+
},
|
|
48038
|
+
"spread": {
|
|
48039
|
+
"value": -3,
|
|
48040
|
+
"unit": "px"
|
|
48041
|
+
}
|
|
47562
48042
|
},
|
|
47563
48043
|
{
|
|
47564
48044
|
"color": "#010409",
|
|
47565
48045
|
"alpha": 0.4,
|
|
47566
|
-
"offsetX":
|
|
47567
|
-
|
|
47568
|
-
|
|
47569
|
-
|
|
48046
|
+
"offsetX": {
|
|
48047
|
+
"value": 0,
|
|
48048
|
+
"unit": "px"
|
|
48049
|
+
},
|
|
48050
|
+
"offsetY": {
|
|
48051
|
+
"value": 6,
|
|
48052
|
+
"unit": "px"
|
|
48053
|
+
},
|
|
48054
|
+
"blur": {
|
|
48055
|
+
"value": 18,
|
|
48056
|
+
"unit": "px"
|
|
48057
|
+
},
|
|
48058
|
+
"spread": {
|
|
48059
|
+
"value": 0,
|
|
48060
|
+
"unit": "px"
|
|
48061
|
+
}
|
|
47570
48062
|
}
|
|
47571
48063
|
],
|
|
47572
48064
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47573
48065
|
"isSource": true,
|
|
47574
48066
|
"$type": "shadow"
|
|
47575
48067
|
}
|
|
48068
|
+
},
|
|
48069
|
+
"org.primer.llm": {
|
|
48070
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48071
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47576
48072
|
}
|
|
47577
48073
|
},
|
|
47578
48074
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47582,21 +48078,46 @@
|
|
|
47582
48078
|
{
|
|
47583
48079
|
"color": "{base.color.neutral.0}",
|
|
47584
48080
|
"alpha": 0.4,
|
|
47585
|
-
"offsetX":
|
|
47586
|
-
|
|
47587
|
-
|
|
47588
|
-
|
|
48081
|
+
"offsetX": {
|
|
48082
|
+
"value": 0,
|
|
48083
|
+
"unit": "px"
|
|
48084
|
+
},
|
|
48085
|
+
"offsetY": {
|
|
48086
|
+
"value": 6,
|
|
48087
|
+
"unit": "px"
|
|
48088
|
+
},
|
|
48089
|
+
"blur": {
|
|
48090
|
+
"value": 12,
|
|
48091
|
+
"unit": "px"
|
|
48092
|
+
},
|
|
48093
|
+
"spread": {
|
|
48094
|
+
"value": -3,
|
|
48095
|
+
"unit": "px"
|
|
48096
|
+
}
|
|
47589
48097
|
},
|
|
47590
48098
|
{
|
|
47591
48099
|
"color": "{base.color.neutral.0}",
|
|
47592
48100
|
"alpha": 0.4,
|
|
47593
|
-
"offsetX":
|
|
47594
|
-
|
|
47595
|
-
|
|
47596
|
-
|
|
48101
|
+
"offsetX": {
|
|
48102
|
+
"value": 0,
|
|
48103
|
+
"unit": "px"
|
|
48104
|
+
},
|
|
48105
|
+
"offsetY": {
|
|
48106
|
+
"value": 6,
|
|
48107
|
+
"unit": "px"
|
|
48108
|
+
},
|
|
48109
|
+
"blur": {
|
|
48110
|
+
"value": 18,
|
|
48111
|
+
"unit": "px"
|
|
48112
|
+
},
|
|
48113
|
+
"spread": {
|
|
48114
|
+
"value": 0,
|
|
48115
|
+
"unit": "px"
|
|
48116
|
+
}
|
|
47597
48117
|
}
|
|
47598
48118
|
],
|
|
47599
48119
|
"$type": "shadow",
|
|
48120
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47600
48121
|
"$extensions": {
|
|
47601
48122
|
"org.primer.figma": {},
|
|
47602
48123
|
"org.primer.overrides": {
|
|
@@ -47605,24 +48126,52 @@
|
|
|
47605
48126
|
{
|
|
47606
48127
|
"color": "{base.color.neutral.0}",
|
|
47607
48128
|
"alpha": 0.4,
|
|
47608
|
-
"offsetX":
|
|
47609
|
-
|
|
47610
|
-
|
|
47611
|
-
|
|
48129
|
+
"offsetX": {
|
|
48130
|
+
"value": 0,
|
|
48131
|
+
"unit": "px"
|
|
48132
|
+
},
|
|
48133
|
+
"offsetY": {
|
|
48134
|
+
"value": 6,
|
|
48135
|
+
"unit": "px"
|
|
48136
|
+
},
|
|
48137
|
+
"blur": {
|
|
48138
|
+
"value": 12,
|
|
48139
|
+
"unit": "px"
|
|
48140
|
+
},
|
|
48141
|
+
"spread": {
|
|
48142
|
+
"value": -3,
|
|
48143
|
+
"unit": "px"
|
|
48144
|
+
}
|
|
47612
48145
|
},
|
|
47613
48146
|
{
|
|
47614
48147
|
"color": "{base.color.neutral.0}",
|
|
47615
48148
|
"alpha": 0.4,
|
|
47616
|
-
"offsetX":
|
|
47617
|
-
|
|
47618
|
-
|
|
47619
|
-
|
|
48149
|
+
"offsetX": {
|
|
48150
|
+
"value": 0,
|
|
48151
|
+
"unit": "px"
|
|
48152
|
+
},
|
|
48153
|
+
"offsetY": {
|
|
48154
|
+
"value": 6,
|
|
48155
|
+
"unit": "px"
|
|
48156
|
+
},
|
|
48157
|
+
"blur": {
|
|
48158
|
+
"value": 18,
|
|
48159
|
+
"unit": "px"
|
|
48160
|
+
},
|
|
48161
|
+
"spread": {
|
|
48162
|
+
"value": 0,
|
|
48163
|
+
"unit": "px"
|
|
48164
|
+
}
|
|
47620
48165
|
}
|
|
47621
48166
|
],
|
|
47622
48167
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47623
48168
|
"isSource": true,
|
|
47624
48169
|
"$type": "shadow"
|
|
47625
48170
|
}
|
|
48171
|
+
},
|
|
48172
|
+
"org.primer.llm": {
|
|
48173
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48174
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47626
48175
|
}
|
|
47627
48176
|
},
|
|
47628
48177
|
"key": "{shadow.floating.legacy}"
|
|
@@ -47633,8 +48182,9 @@
|
|
|
47633
48182
|
},
|
|
47634
48183
|
"shadow-floating-medium": {
|
|
47635
48184
|
"key": "{shadow.floating.medium}",
|
|
47636
|
-
"$value": "
|
|
48185
|
+
"$value": "0 0 0 1px #b7bdc8, 0 8px 16px -4px #01040966, 0 4px 32px -4px #01040966, 0 24px 48px -12px #01040966, 0 48px 96px -24px #01040966",
|
|
47637
48186
|
"$type": "shadow",
|
|
48187
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47638
48188
|
"$extensions": {
|
|
47639
48189
|
"org.primer.figma": {
|
|
47640
48190
|
"collection": "mode",
|
|
@@ -47646,48 +48196,112 @@
|
|
|
47646
48196
|
{
|
|
47647
48197
|
"color": "#b7bdc8",
|
|
47648
48198
|
"alpha": 1,
|
|
47649
|
-
"offsetX":
|
|
47650
|
-
|
|
47651
|
-
|
|
47652
|
-
|
|
48199
|
+
"offsetX": {
|
|
48200
|
+
"value": 0,
|
|
48201
|
+
"unit": "px"
|
|
48202
|
+
},
|
|
48203
|
+
"offsetY": {
|
|
48204
|
+
"value": 0,
|
|
48205
|
+
"unit": "px"
|
|
48206
|
+
},
|
|
48207
|
+
"blur": {
|
|
48208
|
+
"value": 0,
|
|
48209
|
+
"unit": "px"
|
|
48210
|
+
},
|
|
48211
|
+
"spread": {
|
|
48212
|
+
"value": 1,
|
|
48213
|
+
"unit": "px"
|
|
48214
|
+
}
|
|
47653
48215
|
},
|
|
47654
48216
|
{
|
|
47655
48217
|
"color": "#010409",
|
|
47656
48218
|
"alpha": 0.4,
|
|
47657
|
-
"offsetX":
|
|
47658
|
-
|
|
47659
|
-
|
|
47660
|
-
|
|
48219
|
+
"offsetX": {
|
|
48220
|
+
"value": 0,
|
|
48221
|
+
"unit": "px"
|
|
48222
|
+
},
|
|
48223
|
+
"offsetY": {
|
|
48224
|
+
"value": 8,
|
|
48225
|
+
"unit": "px"
|
|
48226
|
+
},
|
|
48227
|
+
"blur": {
|
|
48228
|
+
"value": 16,
|
|
48229
|
+
"unit": "px"
|
|
48230
|
+
},
|
|
48231
|
+
"spread": {
|
|
48232
|
+
"value": -4,
|
|
48233
|
+
"unit": "px"
|
|
48234
|
+
}
|
|
47661
48235
|
},
|
|
47662
48236
|
{
|
|
47663
48237
|
"color": "#010409",
|
|
47664
48238
|
"alpha": 0.4,
|
|
47665
|
-
"offsetX":
|
|
47666
|
-
|
|
47667
|
-
|
|
47668
|
-
|
|
48239
|
+
"offsetX": {
|
|
48240
|
+
"value": 0,
|
|
48241
|
+
"unit": "px"
|
|
48242
|
+
},
|
|
48243
|
+
"offsetY": {
|
|
48244
|
+
"value": 4,
|
|
48245
|
+
"unit": "px"
|
|
48246
|
+
},
|
|
48247
|
+
"blur": {
|
|
48248
|
+
"value": 32,
|
|
48249
|
+
"unit": "px"
|
|
48250
|
+
},
|
|
48251
|
+
"spread": {
|
|
48252
|
+
"value": -4,
|
|
48253
|
+
"unit": "px"
|
|
48254
|
+
}
|
|
47669
48255
|
},
|
|
47670
48256
|
{
|
|
47671
48257
|
"color": "#010409",
|
|
47672
48258
|
"alpha": 0.4,
|
|
47673
|
-
"offsetX":
|
|
47674
|
-
|
|
47675
|
-
|
|
47676
|
-
|
|
48259
|
+
"offsetX": {
|
|
48260
|
+
"value": 0,
|
|
48261
|
+
"unit": "px"
|
|
48262
|
+
},
|
|
48263
|
+
"offsetY": {
|
|
48264
|
+
"value": 24,
|
|
48265
|
+
"unit": "px"
|
|
48266
|
+
},
|
|
48267
|
+
"blur": {
|
|
48268
|
+
"value": 48,
|
|
48269
|
+
"unit": "px"
|
|
48270
|
+
},
|
|
48271
|
+
"spread": {
|
|
48272
|
+
"value": -12,
|
|
48273
|
+
"unit": "px"
|
|
48274
|
+
}
|
|
47677
48275
|
},
|
|
47678
48276
|
{
|
|
47679
48277
|
"color": "#010409",
|
|
47680
48278
|
"alpha": 0.4,
|
|
47681
|
-
"offsetX":
|
|
47682
|
-
|
|
47683
|
-
|
|
47684
|
-
|
|
48279
|
+
"offsetX": {
|
|
48280
|
+
"value": 0,
|
|
48281
|
+
"unit": "px"
|
|
48282
|
+
},
|
|
48283
|
+
"offsetY": {
|
|
48284
|
+
"value": 48,
|
|
48285
|
+
"unit": "px"
|
|
48286
|
+
},
|
|
48287
|
+
"blur": {
|
|
48288
|
+
"value": 96,
|
|
48289
|
+
"unit": "px"
|
|
48290
|
+
},
|
|
48291
|
+
"spread": {
|
|
48292
|
+
"value": -24,
|
|
48293
|
+
"unit": "px"
|
|
48294
|
+
}
|
|
47685
48295
|
}
|
|
47686
48296
|
],
|
|
47687
48297
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47688
48298
|
"isSource": true,
|
|
47689
48299
|
"$type": "shadow"
|
|
47690
48300
|
}
|
|
48301
|
+
},
|
|
48302
|
+
"org.primer.llm": {
|
|
48303
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48304
|
+
"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."
|
|
47691
48305
|
}
|
|
47692
48306
|
},
|
|
47693
48307
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47697,45 +48311,106 @@
|
|
|
47697
48311
|
{
|
|
47698
48312
|
"color": "{overlay.borderColor}",
|
|
47699
48313
|
"alpha": 1,
|
|
47700
|
-
"offsetX":
|
|
47701
|
-
|
|
47702
|
-
|
|
47703
|
-
|
|
48314
|
+
"offsetX": {
|
|
48315
|
+
"value": 0,
|
|
48316
|
+
"unit": "px"
|
|
48317
|
+
},
|
|
48318
|
+
"offsetY": {
|
|
48319
|
+
"value": 0,
|
|
48320
|
+
"unit": "px"
|
|
48321
|
+
},
|
|
48322
|
+
"blur": {
|
|
48323
|
+
"value": 0,
|
|
48324
|
+
"unit": "px"
|
|
48325
|
+
},
|
|
48326
|
+
"spread": {
|
|
48327
|
+
"value": 1,
|
|
48328
|
+
"unit": "px"
|
|
48329
|
+
}
|
|
47704
48330
|
},
|
|
47705
48331
|
{
|
|
47706
48332
|
"color": "{base.color.neutral.0}",
|
|
47707
48333
|
"alpha": 0.4,
|
|
47708
|
-
"offsetX":
|
|
47709
|
-
|
|
47710
|
-
|
|
47711
|
-
|
|
48334
|
+
"offsetX": {
|
|
48335
|
+
"value": 0,
|
|
48336
|
+
"unit": "px"
|
|
48337
|
+
},
|
|
48338
|
+
"offsetY": {
|
|
48339
|
+
"value": 8,
|
|
48340
|
+
"unit": "px"
|
|
48341
|
+
},
|
|
48342
|
+
"blur": {
|
|
48343
|
+
"value": 16,
|
|
48344
|
+
"unit": "px"
|
|
48345
|
+
},
|
|
48346
|
+
"spread": {
|
|
48347
|
+
"value": -4,
|
|
48348
|
+
"unit": "px"
|
|
48349
|
+
}
|
|
47712
48350
|
},
|
|
47713
48351
|
{
|
|
47714
48352
|
"color": "{base.color.neutral.0}",
|
|
47715
48353
|
"alpha": 0.4,
|
|
47716
|
-
"offsetX":
|
|
47717
|
-
|
|
47718
|
-
|
|
47719
|
-
|
|
48354
|
+
"offsetX": {
|
|
48355
|
+
"value": 0,
|
|
48356
|
+
"unit": "px"
|
|
48357
|
+
},
|
|
48358
|
+
"offsetY": {
|
|
48359
|
+
"value": 4,
|
|
48360
|
+
"unit": "px"
|
|
48361
|
+
},
|
|
48362
|
+
"blur": {
|
|
48363
|
+
"value": 32,
|
|
48364
|
+
"unit": "px"
|
|
48365
|
+
},
|
|
48366
|
+
"spread": {
|
|
48367
|
+
"value": -4,
|
|
48368
|
+
"unit": "px"
|
|
48369
|
+
}
|
|
47720
48370
|
},
|
|
47721
48371
|
{
|
|
47722
48372
|
"color": "{base.color.neutral.0}",
|
|
47723
48373
|
"alpha": 0.4,
|
|
47724
|
-
"offsetX":
|
|
47725
|
-
|
|
47726
|
-
|
|
47727
|
-
|
|
48374
|
+
"offsetX": {
|
|
48375
|
+
"value": 0,
|
|
48376
|
+
"unit": "px"
|
|
48377
|
+
},
|
|
48378
|
+
"offsetY": {
|
|
48379
|
+
"value": 24,
|
|
48380
|
+
"unit": "px"
|
|
48381
|
+
},
|
|
48382
|
+
"blur": {
|
|
48383
|
+
"value": 48,
|
|
48384
|
+
"unit": "px"
|
|
48385
|
+
},
|
|
48386
|
+
"spread": {
|
|
48387
|
+
"value": -12,
|
|
48388
|
+
"unit": "px"
|
|
48389
|
+
}
|
|
47728
48390
|
},
|
|
47729
48391
|
{
|
|
47730
48392
|
"color": "{base.color.neutral.0}",
|
|
47731
48393
|
"alpha": 0.4,
|
|
47732
|
-
"offsetX":
|
|
47733
|
-
|
|
47734
|
-
|
|
47735
|
-
|
|
48394
|
+
"offsetX": {
|
|
48395
|
+
"value": 0,
|
|
48396
|
+
"unit": "px"
|
|
48397
|
+
},
|
|
48398
|
+
"offsetY": {
|
|
48399
|
+
"value": 48,
|
|
48400
|
+
"unit": "px"
|
|
48401
|
+
},
|
|
48402
|
+
"blur": {
|
|
48403
|
+
"value": 96,
|
|
48404
|
+
"unit": "px"
|
|
48405
|
+
},
|
|
48406
|
+
"spread": {
|
|
48407
|
+
"value": -24,
|
|
48408
|
+
"unit": "px"
|
|
48409
|
+
}
|
|
47736
48410
|
}
|
|
47737
48411
|
],
|
|
47738
48412
|
"$type": "shadow",
|
|
48413
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47739
48414
|
"$extensions": {
|
|
47740
48415
|
"org.primer.figma": {
|
|
47741
48416
|
"collection": "mode",
|
|
@@ -47747,48 +48422,112 @@
|
|
|
47747
48422
|
{
|
|
47748
48423
|
"color": "{overlay.borderColor}",
|
|
47749
48424
|
"alpha": 1,
|
|
47750
|
-
"offsetX":
|
|
47751
|
-
|
|
47752
|
-
|
|
47753
|
-
|
|
48425
|
+
"offsetX": {
|
|
48426
|
+
"value": 0,
|
|
48427
|
+
"unit": "px"
|
|
48428
|
+
},
|
|
48429
|
+
"offsetY": {
|
|
48430
|
+
"value": 0,
|
|
48431
|
+
"unit": "px"
|
|
48432
|
+
},
|
|
48433
|
+
"blur": {
|
|
48434
|
+
"value": 0,
|
|
48435
|
+
"unit": "px"
|
|
48436
|
+
},
|
|
48437
|
+
"spread": {
|
|
48438
|
+
"value": 1,
|
|
48439
|
+
"unit": "px"
|
|
48440
|
+
}
|
|
47754
48441
|
},
|
|
47755
48442
|
{
|
|
47756
48443
|
"color": "{base.color.neutral.0}",
|
|
47757
48444
|
"alpha": 0.4,
|
|
47758
|
-
"offsetX":
|
|
47759
|
-
|
|
47760
|
-
|
|
47761
|
-
|
|
48445
|
+
"offsetX": {
|
|
48446
|
+
"value": 0,
|
|
48447
|
+
"unit": "px"
|
|
48448
|
+
},
|
|
48449
|
+
"offsetY": {
|
|
48450
|
+
"value": 8,
|
|
48451
|
+
"unit": "px"
|
|
48452
|
+
},
|
|
48453
|
+
"blur": {
|
|
48454
|
+
"value": 16,
|
|
48455
|
+
"unit": "px"
|
|
48456
|
+
},
|
|
48457
|
+
"spread": {
|
|
48458
|
+
"value": -4,
|
|
48459
|
+
"unit": "px"
|
|
48460
|
+
}
|
|
47762
48461
|
},
|
|
47763
48462
|
{
|
|
47764
48463
|
"color": "{base.color.neutral.0}",
|
|
47765
48464
|
"alpha": 0.4,
|
|
47766
|
-
"offsetX":
|
|
47767
|
-
|
|
47768
|
-
|
|
47769
|
-
|
|
48465
|
+
"offsetX": {
|
|
48466
|
+
"value": 0,
|
|
48467
|
+
"unit": "px"
|
|
48468
|
+
},
|
|
48469
|
+
"offsetY": {
|
|
48470
|
+
"value": 4,
|
|
48471
|
+
"unit": "px"
|
|
48472
|
+
},
|
|
48473
|
+
"blur": {
|
|
48474
|
+
"value": 32,
|
|
48475
|
+
"unit": "px"
|
|
48476
|
+
},
|
|
48477
|
+
"spread": {
|
|
48478
|
+
"value": -4,
|
|
48479
|
+
"unit": "px"
|
|
48480
|
+
}
|
|
47770
48481
|
},
|
|
47771
48482
|
{
|
|
47772
48483
|
"color": "{base.color.neutral.0}",
|
|
47773
48484
|
"alpha": 0.4,
|
|
47774
|
-
"offsetX":
|
|
47775
|
-
|
|
47776
|
-
|
|
47777
|
-
|
|
48485
|
+
"offsetX": {
|
|
48486
|
+
"value": 0,
|
|
48487
|
+
"unit": "px"
|
|
48488
|
+
},
|
|
48489
|
+
"offsetY": {
|
|
48490
|
+
"value": 24,
|
|
48491
|
+
"unit": "px"
|
|
48492
|
+
},
|
|
48493
|
+
"blur": {
|
|
48494
|
+
"value": 48,
|
|
48495
|
+
"unit": "px"
|
|
48496
|
+
},
|
|
48497
|
+
"spread": {
|
|
48498
|
+
"value": -12,
|
|
48499
|
+
"unit": "px"
|
|
48500
|
+
}
|
|
47778
48501
|
},
|
|
47779
48502
|
{
|
|
47780
48503
|
"color": "{base.color.neutral.0}",
|
|
47781
48504
|
"alpha": 0.4,
|
|
47782
|
-
"offsetX":
|
|
47783
|
-
|
|
47784
|
-
|
|
47785
|
-
|
|
48505
|
+
"offsetX": {
|
|
48506
|
+
"value": 0,
|
|
48507
|
+
"unit": "px"
|
|
48508
|
+
},
|
|
48509
|
+
"offsetY": {
|
|
48510
|
+
"value": 48,
|
|
48511
|
+
"unit": "px"
|
|
48512
|
+
},
|
|
48513
|
+
"blur": {
|
|
48514
|
+
"value": 96,
|
|
48515
|
+
"unit": "px"
|
|
48516
|
+
},
|
|
48517
|
+
"spread": {
|
|
48518
|
+
"value": -24,
|
|
48519
|
+
"unit": "px"
|
|
48520
|
+
}
|
|
47786
48521
|
}
|
|
47787
48522
|
],
|
|
47788
48523
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47789
48524
|
"isSource": true,
|
|
47790
48525
|
"$type": "shadow"
|
|
47791
48526
|
}
|
|
48527
|
+
},
|
|
48528
|
+
"org.primer.llm": {
|
|
48529
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48530
|
+
"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."
|
|
47792
48531
|
}
|
|
47793
48532
|
},
|
|
47794
48533
|
"key": "{shadow.floating.medium}"
|
|
@@ -47799,7 +48538,7 @@
|
|
|
47799
48538
|
},
|
|
47800
48539
|
"shadow-floating-small": {
|
|
47801
48540
|
"key": "{shadow.floating.small}",
|
|
47802
|
-
"$value": "
|
|
48541
|
+
"$value": "0 0 0 1px #b7bdc8, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966",
|
|
47803
48542
|
"$type": "shadow",
|
|
47804
48543
|
"$description": "Small floating shadow for dropdowns, tooltips, and small overlays",
|
|
47805
48544
|
"$extensions": {
|
|
@@ -47813,26 +48552,62 @@
|
|
|
47813
48552
|
{
|
|
47814
48553
|
"color": "#b7bdc8",
|
|
47815
48554
|
"alpha": 1,
|
|
47816
|
-
"offsetX":
|
|
47817
|
-
|
|
47818
|
-
|
|
47819
|
-
|
|
48555
|
+
"offsetX": {
|
|
48556
|
+
"value": 0,
|
|
48557
|
+
"unit": "px"
|
|
48558
|
+
},
|
|
48559
|
+
"offsetY": {
|
|
48560
|
+
"value": 0,
|
|
48561
|
+
"unit": "px"
|
|
48562
|
+
},
|
|
48563
|
+
"blur": {
|
|
48564
|
+
"value": 0,
|
|
48565
|
+
"unit": "px"
|
|
48566
|
+
},
|
|
48567
|
+
"spread": {
|
|
48568
|
+
"value": 1,
|
|
48569
|
+
"unit": "px"
|
|
48570
|
+
}
|
|
47820
48571
|
},
|
|
47821
48572
|
{
|
|
47822
48573
|
"color": "#010409",
|
|
47823
48574
|
"alpha": 0.4,
|
|
47824
|
-
"offsetX":
|
|
47825
|
-
|
|
47826
|
-
|
|
47827
|
-
|
|
48575
|
+
"offsetX": {
|
|
48576
|
+
"value": 0,
|
|
48577
|
+
"unit": "px"
|
|
48578
|
+
},
|
|
48579
|
+
"offsetY": {
|
|
48580
|
+
"value": 6,
|
|
48581
|
+
"unit": "px"
|
|
48582
|
+
},
|
|
48583
|
+
"blur": {
|
|
48584
|
+
"value": 12,
|
|
48585
|
+
"unit": "px"
|
|
48586
|
+
},
|
|
48587
|
+
"spread": {
|
|
48588
|
+
"value": -3,
|
|
48589
|
+
"unit": "px"
|
|
48590
|
+
}
|
|
47828
48591
|
},
|
|
47829
48592
|
{
|
|
47830
48593
|
"color": "#010409",
|
|
47831
48594
|
"alpha": 0.4,
|
|
47832
|
-
"offsetX":
|
|
47833
|
-
|
|
47834
|
-
|
|
47835
|
-
|
|
48595
|
+
"offsetX": {
|
|
48596
|
+
"value": 0,
|
|
48597
|
+
"unit": "px"
|
|
48598
|
+
},
|
|
48599
|
+
"offsetY": {
|
|
48600
|
+
"value": 6,
|
|
48601
|
+
"unit": "px"
|
|
48602
|
+
},
|
|
48603
|
+
"blur": {
|
|
48604
|
+
"value": 18,
|
|
48605
|
+
"unit": "px"
|
|
48606
|
+
},
|
|
48607
|
+
"spread": {
|
|
48608
|
+
"value": 0,
|
|
48609
|
+
"unit": "px"
|
|
48610
|
+
}
|
|
47836
48611
|
}
|
|
47837
48612
|
],
|
|
47838
48613
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47852,26 +48627,62 @@
|
|
|
47852
48627
|
{
|
|
47853
48628
|
"color": "{overlay.borderColor}",
|
|
47854
48629
|
"alpha": 1,
|
|
47855
|
-
"offsetX":
|
|
47856
|
-
|
|
47857
|
-
|
|
47858
|
-
|
|
48630
|
+
"offsetX": {
|
|
48631
|
+
"value": 0,
|
|
48632
|
+
"unit": "px"
|
|
48633
|
+
},
|
|
48634
|
+
"offsetY": {
|
|
48635
|
+
"value": 0,
|
|
48636
|
+
"unit": "px"
|
|
48637
|
+
},
|
|
48638
|
+
"blur": {
|
|
48639
|
+
"value": 0,
|
|
48640
|
+
"unit": "px"
|
|
48641
|
+
},
|
|
48642
|
+
"spread": {
|
|
48643
|
+
"value": 1,
|
|
48644
|
+
"unit": "px"
|
|
48645
|
+
}
|
|
47859
48646
|
},
|
|
47860
48647
|
{
|
|
47861
48648
|
"color": "{base.color.neutral.0}",
|
|
47862
48649
|
"alpha": 0.4,
|
|
47863
|
-
"offsetX":
|
|
47864
|
-
|
|
47865
|
-
|
|
47866
|
-
|
|
48650
|
+
"offsetX": {
|
|
48651
|
+
"value": 0,
|
|
48652
|
+
"unit": "px"
|
|
48653
|
+
},
|
|
48654
|
+
"offsetY": {
|
|
48655
|
+
"value": 6,
|
|
48656
|
+
"unit": "px"
|
|
48657
|
+
},
|
|
48658
|
+
"blur": {
|
|
48659
|
+
"value": 12,
|
|
48660
|
+
"unit": "px"
|
|
48661
|
+
},
|
|
48662
|
+
"spread": {
|
|
48663
|
+
"value": -3,
|
|
48664
|
+
"unit": "px"
|
|
48665
|
+
}
|
|
47867
48666
|
},
|
|
47868
48667
|
{
|
|
47869
48668
|
"color": "{base.color.neutral.0}",
|
|
47870
48669
|
"alpha": 0.4,
|
|
47871
|
-
"offsetX":
|
|
47872
|
-
|
|
47873
|
-
|
|
47874
|
-
|
|
48670
|
+
"offsetX": {
|
|
48671
|
+
"value": 0,
|
|
48672
|
+
"unit": "px"
|
|
48673
|
+
},
|
|
48674
|
+
"offsetY": {
|
|
48675
|
+
"value": 6,
|
|
48676
|
+
"unit": "px"
|
|
48677
|
+
},
|
|
48678
|
+
"blur": {
|
|
48679
|
+
"value": 18,
|
|
48680
|
+
"unit": "px"
|
|
48681
|
+
},
|
|
48682
|
+
"spread": {
|
|
48683
|
+
"value": 0,
|
|
48684
|
+
"unit": "px"
|
|
48685
|
+
}
|
|
47875
48686
|
}
|
|
47876
48687
|
],
|
|
47877
48688
|
"$type": "shadow",
|
|
@@ -47887,26 +48698,62 @@
|
|
|
47887
48698
|
{
|
|
47888
48699
|
"color": "{overlay.borderColor}",
|
|
47889
48700
|
"alpha": 1,
|
|
47890
|
-
"offsetX":
|
|
47891
|
-
|
|
47892
|
-
|
|
47893
|
-
|
|
48701
|
+
"offsetX": {
|
|
48702
|
+
"value": 0,
|
|
48703
|
+
"unit": "px"
|
|
48704
|
+
},
|
|
48705
|
+
"offsetY": {
|
|
48706
|
+
"value": 0,
|
|
48707
|
+
"unit": "px"
|
|
48708
|
+
},
|
|
48709
|
+
"blur": {
|
|
48710
|
+
"value": 0,
|
|
48711
|
+
"unit": "px"
|
|
48712
|
+
},
|
|
48713
|
+
"spread": {
|
|
48714
|
+
"value": 1,
|
|
48715
|
+
"unit": "px"
|
|
48716
|
+
}
|
|
47894
48717
|
},
|
|
47895
48718
|
{
|
|
47896
48719
|
"color": "{base.color.neutral.0}",
|
|
47897
48720
|
"alpha": 0.4,
|
|
47898
|
-
"offsetX":
|
|
47899
|
-
|
|
47900
|
-
|
|
47901
|
-
|
|
48721
|
+
"offsetX": {
|
|
48722
|
+
"value": 0,
|
|
48723
|
+
"unit": "px"
|
|
48724
|
+
},
|
|
48725
|
+
"offsetY": {
|
|
48726
|
+
"value": 6,
|
|
48727
|
+
"unit": "px"
|
|
48728
|
+
},
|
|
48729
|
+
"blur": {
|
|
48730
|
+
"value": 12,
|
|
48731
|
+
"unit": "px"
|
|
48732
|
+
},
|
|
48733
|
+
"spread": {
|
|
48734
|
+
"value": -3,
|
|
48735
|
+
"unit": "px"
|
|
48736
|
+
}
|
|
47902
48737
|
},
|
|
47903
48738
|
{
|
|
47904
48739
|
"color": "{base.color.neutral.0}",
|
|
47905
48740
|
"alpha": 0.4,
|
|
47906
|
-
"offsetX":
|
|
47907
|
-
|
|
47908
|
-
|
|
47909
|
-
|
|
48741
|
+
"offsetX": {
|
|
48742
|
+
"value": 0,
|
|
48743
|
+
"unit": "px"
|
|
48744
|
+
},
|
|
48745
|
+
"offsetY": {
|
|
48746
|
+
"value": 6,
|
|
48747
|
+
"unit": "px"
|
|
48748
|
+
},
|
|
48749
|
+
"blur": {
|
|
48750
|
+
"value": 18,
|
|
48751
|
+
"unit": "px"
|
|
48752
|
+
},
|
|
48753
|
+
"spread": {
|
|
48754
|
+
"value": 0,
|
|
48755
|
+
"unit": "px"
|
|
48756
|
+
}
|
|
47910
48757
|
}
|
|
47911
48758
|
],
|
|
47912
48759
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47927,8 +48774,9 @@
|
|
|
47927
48774
|
},
|
|
47928
48775
|
"shadow-floating-xlarge": {
|
|
47929
48776
|
"key": "{shadow.floating.xlarge}",
|
|
47930
|
-
"$value": "
|
|
48777
|
+
"$value": "0 0 0 1px #b7bdc8, 0 32px 64px 0 #010409",
|
|
47931
48778
|
"$type": "shadow",
|
|
48779
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47932
48780
|
"$extensions": {
|
|
47933
48781
|
"org.primer.figma": {
|
|
47934
48782
|
"collection": "mode",
|
|
@@ -47940,24 +48788,52 @@
|
|
|
47940
48788
|
{
|
|
47941
48789
|
"color": "#b7bdc8",
|
|
47942
48790
|
"alpha": 1,
|
|
47943
|
-
"offsetX":
|
|
47944
|
-
|
|
47945
|
-
|
|
47946
|
-
|
|
48791
|
+
"offsetX": {
|
|
48792
|
+
"value": 0,
|
|
48793
|
+
"unit": "px"
|
|
48794
|
+
},
|
|
48795
|
+
"offsetY": {
|
|
48796
|
+
"value": 0,
|
|
48797
|
+
"unit": "px"
|
|
48798
|
+
},
|
|
48799
|
+
"blur": {
|
|
48800
|
+
"value": 0,
|
|
48801
|
+
"unit": "px"
|
|
48802
|
+
},
|
|
48803
|
+
"spread": {
|
|
48804
|
+
"value": 1,
|
|
48805
|
+
"unit": "px"
|
|
48806
|
+
}
|
|
47947
48807
|
},
|
|
47948
48808
|
{
|
|
47949
48809
|
"color": "#010409",
|
|
47950
48810
|
"alpha": 1,
|
|
47951
|
-
"offsetX":
|
|
47952
|
-
|
|
47953
|
-
|
|
47954
|
-
|
|
48811
|
+
"offsetX": {
|
|
48812
|
+
"value": 0,
|
|
48813
|
+
"unit": "px"
|
|
48814
|
+
},
|
|
48815
|
+
"offsetY": {
|
|
48816
|
+
"value": 32,
|
|
48817
|
+
"unit": "px"
|
|
48818
|
+
},
|
|
48819
|
+
"blur": {
|
|
48820
|
+
"value": 64,
|
|
48821
|
+
"unit": "px"
|
|
48822
|
+
},
|
|
48823
|
+
"spread": {
|
|
48824
|
+
"value": 0,
|
|
48825
|
+
"unit": "px"
|
|
48826
|
+
}
|
|
47955
48827
|
}
|
|
47956
48828
|
],
|
|
47957
48829
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47958
48830
|
"isSource": true,
|
|
47959
48831
|
"$type": "shadow"
|
|
47960
48832
|
}
|
|
48833
|
+
},
|
|
48834
|
+
"org.primer.llm": {
|
|
48835
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48836
|
+
"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."
|
|
47961
48837
|
}
|
|
47962
48838
|
},
|
|
47963
48839
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47967,21 +48843,46 @@
|
|
|
47967
48843
|
{
|
|
47968
48844
|
"color": "{overlay.borderColor}",
|
|
47969
48845
|
"alpha": 1,
|
|
47970
|
-
"offsetX":
|
|
47971
|
-
|
|
47972
|
-
|
|
47973
|
-
|
|
48846
|
+
"offsetX": {
|
|
48847
|
+
"value": 0,
|
|
48848
|
+
"unit": "px"
|
|
48849
|
+
},
|
|
48850
|
+
"offsetY": {
|
|
48851
|
+
"value": 0,
|
|
48852
|
+
"unit": "px"
|
|
48853
|
+
},
|
|
48854
|
+
"blur": {
|
|
48855
|
+
"value": 0,
|
|
48856
|
+
"unit": "px"
|
|
48857
|
+
},
|
|
48858
|
+
"spread": {
|
|
48859
|
+
"value": 1,
|
|
48860
|
+
"unit": "px"
|
|
48861
|
+
}
|
|
47974
48862
|
},
|
|
47975
48863
|
{
|
|
47976
48864
|
"color": "{base.color.neutral.0}",
|
|
47977
48865
|
"alpha": 1,
|
|
47978
|
-
"offsetX":
|
|
47979
|
-
|
|
47980
|
-
|
|
47981
|
-
|
|
48866
|
+
"offsetX": {
|
|
48867
|
+
"value": 0,
|
|
48868
|
+
"unit": "px"
|
|
48869
|
+
},
|
|
48870
|
+
"offsetY": {
|
|
48871
|
+
"value": 32,
|
|
48872
|
+
"unit": "px"
|
|
48873
|
+
},
|
|
48874
|
+
"blur": {
|
|
48875
|
+
"value": 64,
|
|
48876
|
+
"unit": "px"
|
|
48877
|
+
},
|
|
48878
|
+
"spread": {
|
|
48879
|
+
"value": 0,
|
|
48880
|
+
"unit": "px"
|
|
48881
|
+
}
|
|
47982
48882
|
}
|
|
47983
48883
|
],
|
|
47984
48884
|
"$type": "shadow",
|
|
48885
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47985
48886
|
"$extensions": {
|
|
47986
48887
|
"org.primer.figma": {
|
|
47987
48888
|
"collection": "mode",
|
|
@@ -47993,24 +48894,52 @@
|
|
|
47993
48894
|
{
|
|
47994
48895
|
"color": "{overlay.borderColor}",
|
|
47995
48896
|
"alpha": 1,
|
|
47996
|
-
"offsetX":
|
|
47997
|
-
|
|
47998
|
-
|
|
47999
|
-
|
|
48897
|
+
"offsetX": {
|
|
48898
|
+
"value": 0,
|
|
48899
|
+
"unit": "px"
|
|
48900
|
+
},
|
|
48901
|
+
"offsetY": {
|
|
48902
|
+
"value": 0,
|
|
48903
|
+
"unit": "px"
|
|
48904
|
+
},
|
|
48905
|
+
"blur": {
|
|
48906
|
+
"value": 0,
|
|
48907
|
+
"unit": "px"
|
|
48908
|
+
},
|
|
48909
|
+
"spread": {
|
|
48910
|
+
"value": 1,
|
|
48911
|
+
"unit": "px"
|
|
48912
|
+
}
|
|
48000
48913
|
},
|
|
48001
48914
|
{
|
|
48002
48915
|
"color": "{base.color.neutral.0}",
|
|
48003
48916
|
"alpha": 1,
|
|
48004
|
-
"offsetX":
|
|
48005
|
-
|
|
48006
|
-
|
|
48007
|
-
|
|
48917
|
+
"offsetX": {
|
|
48918
|
+
"value": 0,
|
|
48919
|
+
"unit": "px"
|
|
48920
|
+
},
|
|
48921
|
+
"offsetY": {
|
|
48922
|
+
"value": 32,
|
|
48923
|
+
"unit": "px"
|
|
48924
|
+
},
|
|
48925
|
+
"blur": {
|
|
48926
|
+
"value": 64,
|
|
48927
|
+
"unit": "px"
|
|
48928
|
+
},
|
|
48929
|
+
"spread": {
|
|
48930
|
+
"value": 0,
|
|
48931
|
+
"unit": "px"
|
|
48932
|
+
}
|
|
48008
48933
|
}
|
|
48009
48934
|
],
|
|
48010
48935
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48011
48936
|
"isSource": true,
|
|
48012
48937
|
"$type": "shadow"
|
|
48013
48938
|
}
|
|
48939
|
+
},
|
|
48940
|
+
"org.primer.llm": {
|
|
48941
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48942
|
+
"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."
|
|
48014
48943
|
}
|
|
48015
48944
|
},
|
|
48016
48945
|
"key": "{shadow.floating.xlarge}"
|
|
@@ -48021,8 +48950,9 @@
|
|
|
48021
48950
|
},
|
|
48022
48951
|
"shadow-inset": {
|
|
48023
48952
|
"key": "{shadow.inset}",
|
|
48024
|
-
"$value": "inset
|
|
48953
|
+
"$value": "inset 0 1px 0 0 #0104093d",
|
|
48025
48954
|
"$type": "shadow",
|
|
48955
|
+
"$description": "Inset shadow for recessed elements",
|
|
48026
48956
|
"$extensions": {
|
|
48027
48957
|
"org.primer.figma": {
|
|
48028
48958
|
"collection": "mode",
|
|
@@ -48033,16 +48963,32 @@
|
|
|
48033
48963
|
"$value": {
|
|
48034
48964
|
"color": "#010409",
|
|
48035
48965
|
"alpha": 0.24,
|
|
48036
|
-
"offsetX":
|
|
48037
|
-
|
|
48038
|
-
|
|
48039
|
-
|
|
48966
|
+
"offsetX": {
|
|
48967
|
+
"value": 0,
|
|
48968
|
+
"unit": "px"
|
|
48969
|
+
},
|
|
48970
|
+
"offsetY": {
|
|
48971
|
+
"value": 1,
|
|
48972
|
+
"unit": "px"
|
|
48973
|
+
},
|
|
48974
|
+
"blur": {
|
|
48975
|
+
"value": 0,
|
|
48976
|
+
"unit": "px"
|
|
48977
|
+
},
|
|
48978
|
+
"spread": {
|
|
48979
|
+
"value": 0,
|
|
48980
|
+
"unit": "px"
|
|
48981
|
+
},
|
|
48040
48982
|
"inset": true
|
|
48041
48983
|
},
|
|
48042
48984
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48043
48985
|
"isSource": true,
|
|
48044
48986
|
"$type": "shadow"
|
|
48045
48987
|
}
|
|
48988
|
+
},
|
|
48989
|
+
"org.primer.llm": {
|
|
48990
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
48991
|
+
"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."
|
|
48046
48992
|
}
|
|
48047
48993
|
},
|
|
48048
48994
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48051,13 +48997,26 @@
|
|
|
48051
48997
|
"$value": {
|
|
48052
48998
|
"color": "{base.color.neutral.0}",
|
|
48053
48999
|
"alpha": 0.24,
|
|
48054
|
-
"offsetX":
|
|
48055
|
-
|
|
48056
|
-
|
|
48057
|
-
|
|
49000
|
+
"offsetX": {
|
|
49001
|
+
"value": 0,
|
|
49002
|
+
"unit": "px"
|
|
49003
|
+
},
|
|
49004
|
+
"offsetY": {
|
|
49005
|
+
"value": 1,
|
|
49006
|
+
"unit": "px"
|
|
49007
|
+
},
|
|
49008
|
+
"blur": {
|
|
49009
|
+
"value": 0,
|
|
49010
|
+
"unit": "px"
|
|
49011
|
+
},
|
|
49012
|
+
"spread": {
|
|
49013
|
+
"value": 0,
|
|
49014
|
+
"unit": "px"
|
|
49015
|
+
},
|
|
48058
49016
|
"inset": true
|
|
48059
49017
|
},
|
|
48060
49018
|
"$type": "shadow",
|
|
49019
|
+
"$description": "Inset shadow for recessed elements",
|
|
48061
49020
|
"$extensions": {
|
|
48062
49021
|
"org.primer.figma": {
|
|
48063
49022
|
"collection": "mode",
|
|
@@ -48068,16 +49027,32 @@
|
|
|
48068
49027
|
"$value": {
|
|
48069
49028
|
"color": "{base.color.neutral.0}",
|
|
48070
49029
|
"alpha": 0.24,
|
|
48071
|
-
"offsetX":
|
|
48072
|
-
|
|
48073
|
-
|
|
48074
|
-
|
|
49030
|
+
"offsetX": {
|
|
49031
|
+
"value": 0,
|
|
49032
|
+
"unit": "px"
|
|
49033
|
+
},
|
|
49034
|
+
"offsetY": {
|
|
49035
|
+
"value": 1,
|
|
49036
|
+
"unit": "px"
|
|
49037
|
+
},
|
|
49038
|
+
"blur": {
|
|
49039
|
+
"value": 0,
|
|
49040
|
+
"unit": "px"
|
|
49041
|
+
},
|
|
49042
|
+
"spread": {
|
|
49043
|
+
"value": 0,
|
|
49044
|
+
"unit": "px"
|
|
49045
|
+
},
|
|
48075
49046
|
"inset": true
|
|
48076
49047
|
},
|
|
48077
49048
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48078
49049
|
"isSource": true,
|
|
48079
49050
|
"$type": "shadow"
|
|
48080
49051
|
}
|
|
49052
|
+
},
|
|
49053
|
+
"org.primer.llm": {
|
|
49054
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
49055
|
+
"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."
|
|
48081
49056
|
}
|
|
48082
49057
|
},
|
|
48083
49058
|
"key": "{shadow.inset}"
|
|
@@ -48088,8 +49063,9 @@
|
|
|
48088
49063
|
},
|
|
48089
49064
|
"shadow-resting-medium": {
|
|
48090
49065
|
"key": "{shadow.resting.medium}",
|
|
48091
|
-
"$value": "
|
|
49066
|
+
"$value": "0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc",
|
|
48092
49067
|
"$type": "shadow",
|
|
49068
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48093
49069
|
"$extensions": {
|
|
48094
49070
|
"org.primer.figma": {
|
|
48095
49071
|
"collection": "mode",
|
|
@@ -48101,24 +49077,52 @@
|
|
|
48101
49077
|
{
|
|
48102
49078
|
"color": "#010409",
|
|
48103
49079
|
"alpha": 0.4,
|
|
48104
|
-
"offsetX":
|
|
48105
|
-
|
|
48106
|
-
|
|
48107
|
-
|
|
49080
|
+
"offsetX": {
|
|
49081
|
+
"value": 0,
|
|
49082
|
+
"unit": "px"
|
|
49083
|
+
},
|
|
49084
|
+
"offsetY": {
|
|
49085
|
+
"value": 1,
|
|
49086
|
+
"unit": "px"
|
|
49087
|
+
},
|
|
49088
|
+
"blur": {
|
|
49089
|
+
"value": 1,
|
|
49090
|
+
"unit": "px"
|
|
49091
|
+
},
|
|
49092
|
+
"spread": {
|
|
49093
|
+
"value": 0,
|
|
49094
|
+
"unit": "px"
|
|
49095
|
+
}
|
|
48108
49096
|
},
|
|
48109
49097
|
{
|
|
48110
49098
|
"color": "#010409",
|
|
48111
49099
|
"alpha": 0.8,
|
|
48112
|
-
"offsetX":
|
|
48113
|
-
|
|
48114
|
-
|
|
48115
|
-
|
|
49100
|
+
"offsetX": {
|
|
49101
|
+
"value": 0,
|
|
49102
|
+
"unit": "px"
|
|
49103
|
+
},
|
|
49104
|
+
"offsetY": {
|
|
49105
|
+
"value": 3,
|
|
49106
|
+
"unit": "px"
|
|
49107
|
+
},
|
|
49108
|
+
"blur": {
|
|
49109
|
+
"value": 6,
|
|
49110
|
+
"unit": "px"
|
|
49111
|
+
},
|
|
49112
|
+
"spread": {
|
|
49113
|
+
"value": 0,
|
|
49114
|
+
"unit": "px"
|
|
49115
|
+
}
|
|
48116
49116
|
}
|
|
48117
49117
|
],
|
|
48118
49118
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48119
49119
|
"isSource": true,
|
|
48120
49120
|
"$type": "shadow"
|
|
48121
49121
|
}
|
|
49122
|
+
},
|
|
49123
|
+
"org.primer.llm": {
|
|
49124
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49125
|
+
"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."
|
|
48122
49126
|
}
|
|
48123
49127
|
},
|
|
48124
49128
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48128,21 +49132,46 @@
|
|
|
48128
49132
|
{
|
|
48129
49133
|
"color": "{base.color.neutral.0}",
|
|
48130
49134
|
"alpha": 0.4,
|
|
48131
|
-
"offsetX":
|
|
48132
|
-
|
|
48133
|
-
|
|
48134
|
-
|
|
49135
|
+
"offsetX": {
|
|
49136
|
+
"value": 0,
|
|
49137
|
+
"unit": "px"
|
|
49138
|
+
},
|
|
49139
|
+
"offsetY": {
|
|
49140
|
+
"value": 1,
|
|
49141
|
+
"unit": "px"
|
|
49142
|
+
},
|
|
49143
|
+
"blur": {
|
|
49144
|
+
"value": 1,
|
|
49145
|
+
"unit": "px"
|
|
49146
|
+
},
|
|
49147
|
+
"spread": {
|
|
49148
|
+
"value": 0,
|
|
49149
|
+
"unit": "px"
|
|
49150
|
+
}
|
|
48135
49151
|
},
|
|
48136
49152
|
{
|
|
48137
49153
|
"color": "{base.color.neutral.0}",
|
|
48138
49154
|
"alpha": 0.8,
|
|
48139
|
-
"offsetX":
|
|
48140
|
-
|
|
48141
|
-
|
|
48142
|
-
|
|
49155
|
+
"offsetX": {
|
|
49156
|
+
"value": 0,
|
|
49157
|
+
"unit": "px"
|
|
49158
|
+
},
|
|
49159
|
+
"offsetY": {
|
|
49160
|
+
"value": 3,
|
|
49161
|
+
"unit": "px"
|
|
49162
|
+
},
|
|
49163
|
+
"blur": {
|
|
49164
|
+
"value": 6,
|
|
49165
|
+
"unit": "px"
|
|
49166
|
+
},
|
|
49167
|
+
"spread": {
|
|
49168
|
+
"value": 0,
|
|
49169
|
+
"unit": "px"
|
|
49170
|
+
}
|
|
48143
49171
|
}
|
|
48144
49172
|
],
|
|
48145
49173
|
"$type": "shadow",
|
|
49174
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48146
49175
|
"$extensions": {
|
|
48147
49176
|
"org.primer.figma": {
|
|
48148
49177
|
"collection": "mode",
|
|
@@ -48154,24 +49183,52 @@
|
|
|
48154
49183
|
{
|
|
48155
49184
|
"color": "{base.color.neutral.0}",
|
|
48156
49185
|
"alpha": 0.4,
|
|
48157
|
-
"offsetX":
|
|
48158
|
-
|
|
48159
|
-
|
|
48160
|
-
|
|
49186
|
+
"offsetX": {
|
|
49187
|
+
"value": 0,
|
|
49188
|
+
"unit": "px"
|
|
49189
|
+
},
|
|
49190
|
+
"offsetY": {
|
|
49191
|
+
"value": 1,
|
|
49192
|
+
"unit": "px"
|
|
49193
|
+
},
|
|
49194
|
+
"blur": {
|
|
49195
|
+
"value": 1,
|
|
49196
|
+
"unit": "px"
|
|
49197
|
+
},
|
|
49198
|
+
"spread": {
|
|
49199
|
+
"value": 0,
|
|
49200
|
+
"unit": "px"
|
|
49201
|
+
}
|
|
48161
49202
|
},
|
|
48162
49203
|
{
|
|
48163
49204
|
"color": "{base.color.neutral.0}",
|
|
48164
49205
|
"alpha": 0.8,
|
|
48165
|
-
"offsetX":
|
|
48166
|
-
|
|
48167
|
-
|
|
48168
|
-
|
|
49206
|
+
"offsetX": {
|
|
49207
|
+
"value": 0,
|
|
49208
|
+
"unit": "px"
|
|
49209
|
+
},
|
|
49210
|
+
"offsetY": {
|
|
49211
|
+
"value": 3,
|
|
49212
|
+
"unit": "px"
|
|
49213
|
+
},
|
|
49214
|
+
"blur": {
|
|
49215
|
+
"value": 6,
|
|
49216
|
+
"unit": "px"
|
|
49217
|
+
},
|
|
49218
|
+
"spread": {
|
|
49219
|
+
"value": 0,
|
|
49220
|
+
"unit": "px"
|
|
49221
|
+
}
|
|
48169
49222
|
}
|
|
48170
49223
|
],
|
|
48171
49224
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48172
49225
|
"isSource": true,
|
|
48173
49226
|
"$type": "shadow"
|
|
48174
49227
|
}
|
|
49228
|
+
},
|
|
49229
|
+
"org.primer.llm": {
|
|
49230
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49231
|
+
"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."
|
|
48175
49232
|
}
|
|
48176
49233
|
},
|
|
48177
49234
|
"key": "{shadow.resting.medium}"
|
|
@@ -48182,8 +49239,9 @@
|
|
|
48182
49239
|
},
|
|
48183
49240
|
"shadow-resting-small": {
|
|
48184
49241
|
"key": "{shadow.resting.small}",
|
|
48185
|
-
"$value": "
|
|
49242
|
+
"$value": "0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999",
|
|
48186
49243
|
"$type": "shadow",
|
|
49244
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48187
49245
|
"$extensions": {
|
|
48188
49246
|
"org.primer.figma": {
|
|
48189
49247
|
"collection": "mode",
|
|
@@ -48195,19 +49253,43 @@
|
|
|
48195
49253
|
{
|
|
48196
49254
|
"color": "#010409",
|
|
48197
49255
|
"alpha": 0.6,
|
|
48198
|
-
"offsetX":
|
|
48199
|
-
|
|
48200
|
-
|
|
48201
|
-
|
|
49256
|
+
"offsetX": {
|
|
49257
|
+
"value": 0,
|
|
49258
|
+
"unit": "px"
|
|
49259
|
+
},
|
|
49260
|
+
"offsetY": {
|
|
49261
|
+
"value": 1,
|
|
49262
|
+
"unit": "px"
|
|
49263
|
+
},
|
|
49264
|
+
"blur": {
|
|
49265
|
+
"value": 1,
|
|
49266
|
+
"unit": "px"
|
|
49267
|
+
},
|
|
49268
|
+
"spread": {
|
|
49269
|
+
"value": 0,
|
|
49270
|
+
"unit": "px"
|
|
49271
|
+
},
|
|
48202
49272
|
"inset": false
|
|
48203
49273
|
},
|
|
48204
49274
|
{
|
|
48205
49275
|
"color": "#010409",
|
|
48206
49276
|
"alpha": 0.6,
|
|
48207
|
-
"offsetX":
|
|
48208
|
-
|
|
48209
|
-
|
|
48210
|
-
|
|
49277
|
+
"offsetX": {
|
|
49278
|
+
"value": 0,
|
|
49279
|
+
"unit": "px"
|
|
49280
|
+
},
|
|
49281
|
+
"offsetY": {
|
|
49282
|
+
"value": 1,
|
|
49283
|
+
"unit": "px"
|
|
49284
|
+
},
|
|
49285
|
+
"blur": {
|
|
49286
|
+
"value": 3,
|
|
49287
|
+
"unit": "px"
|
|
49288
|
+
},
|
|
49289
|
+
"spread": {
|
|
49290
|
+
"value": 0,
|
|
49291
|
+
"unit": "px"
|
|
49292
|
+
},
|
|
48211
49293
|
"inset": false
|
|
48212
49294
|
}
|
|
48213
49295
|
],
|
|
@@ -48215,6 +49297,10 @@
|
|
|
48215
49297
|
"isSource": true,
|
|
48216
49298
|
"$type": "shadow"
|
|
48217
49299
|
}
|
|
49300
|
+
},
|
|
49301
|
+
"org.primer.llm": {
|
|
49302
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49303
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48218
49304
|
}
|
|
48219
49305
|
},
|
|
48220
49306
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48224,23 +49310,48 @@
|
|
|
48224
49310
|
{
|
|
48225
49311
|
"color": "{base.color.neutral.0}",
|
|
48226
49312
|
"alpha": 0.6,
|
|
48227
|
-
"offsetX":
|
|
48228
|
-
|
|
48229
|
-
|
|
48230
|
-
|
|
49313
|
+
"offsetX": {
|
|
49314
|
+
"value": 0,
|
|
49315
|
+
"unit": "px"
|
|
49316
|
+
},
|
|
49317
|
+
"offsetY": {
|
|
49318
|
+
"value": 1,
|
|
49319
|
+
"unit": "px"
|
|
49320
|
+
},
|
|
49321
|
+
"blur": {
|
|
49322
|
+
"value": 1,
|
|
49323
|
+
"unit": "px"
|
|
49324
|
+
},
|
|
49325
|
+
"spread": {
|
|
49326
|
+
"value": 0,
|
|
49327
|
+
"unit": "px"
|
|
49328
|
+
},
|
|
48231
49329
|
"inset": false
|
|
48232
49330
|
},
|
|
48233
49331
|
{
|
|
48234
49332
|
"color": "{base.color.neutral.0}",
|
|
48235
49333
|
"alpha": 0.6,
|
|
48236
|
-
"offsetX":
|
|
48237
|
-
|
|
48238
|
-
|
|
48239
|
-
|
|
49334
|
+
"offsetX": {
|
|
49335
|
+
"value": 0,
|
|
49336
|
+
"unit": "px"
|
|
49337
|
+
},
|
|
49338
|
+
"offsetY": {
|
|
49339
|
+
"value": 1,
|
|
49340
|
+
"unit": "px"
|
|
49341
|
+
},
|
|
49342
|
+
"blur": {
|
|
49343
|
+
"value": 3,
|
|
49344
|
+
"unit": "px"
|
|
49345
|
+
},
|
|
49346
|
+
"spread": {
|
|
49347
|
+
"value": 0,
|
|
49348
|
+
"unit": "px"
|
|
49349
|
+
},
|
|
48240
49350
|
"inset": false
|
|
48241
49351
|
}
|
|
48242
49352
|
],
|
|
48243
49353
|
"$type": "shadow",
|
|
49354
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48244
49355
|
"$extensions": {
|
|
48245
49356
|
"org.primer.figma": {
|
|
48246
49357
|
"collection": "mode",
|
|
@@ -48252,19 +49363,43 @@
|
|
|
48252
49363
|
{
|
|
48253
49364
|
"color": "{base.color.neutral.0}",
|
|
48254
49365
|
"alpha": 0.6,
|
|
48255
|
-
"offsetX":
|
|
48256
|
-
|
|
48257
|
-
|
|
48258
|
-
|
|
49366
|
+
"offsetX": {
|
|
49367
|
+
"value": 0,
|
|
49368
|
+
"unit": "px"
|
|
49369
|
+
},
|
|
49370
|
+
"offsetY": {
|
|
49371
|
+
"value": 1,
|
|
49372
|
+
"unit": "px"
|
|
49373
|
+
},
|
|
49374
|
+
"blur": {
|
|
49375
|
+
"value": 1,
|
|
49376
|
+
"unit": "px"
|
|
49377
|
+
},
|
|
49378
|
+
"spread": {
|
|
49379
|
+
"value": 0,
|
|
49380
|
+
"unit": "px"
|
|
49381
|
+
},
|
|
48259
49382
|
"inset": false
|
|
48260
49383
|
},
|
|
48261
49384
|
{
|
|
48262
49385
|
"color": "{base.color.neutral.0}",
|
|
48263
49386
|
"alpha": 0.6,
|
|
48264
|
-
"offsetX":
|
|
48265
|
-
|
|
48266
|
-
|
|
48267
|
-
|
|
49387
|
+
"offsetX": {
|
|
49388
|
+
"value": 0,
|
|
49389
|
+
"unit": "px"
|
|
49390
|
+
},
|
|
49391
|
+
"offsetY": {
|
|
49392
|
+
"value": 1,
|
|
49393
|
+
"unit": "px"
|
|
49394
|
+
},
|
|
49395
|
+
"blur": {
|
|
49396
|
+
"value": 3,
|
|
49397
|
+
"unit": "px"
|
|
49398
|
+
},
|
|
49399
|
+
"spread": {
|
|
49400
|
+
"value": 0,
|
|
49401
|
+
"unit": "px"
|
|
49402
|
+
},
|
|
48268
49403
|
"inset": false
|
|
48269
49404
|
}
|
|
48270
49405
|
],
|
|
@@ -48272,6 +49407,10 @@
|
|
|
48272
49407
|
"isSource": true,
|
|
48273
49408
|
"$type": "shadow"
|
|
48274
49409
|
}
|
|
49410
|
+
},
|
|
49411
|
+
"org.primer.llm": {
|
|
49412
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49413
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48275
49414
|
}
|
|
48276
49415
|
},
|
|
48277
49416
|
"key": "{shadow.resting.small}"
|
|
@@ -48282,8 +49421,9 @@
|
|
|
48282
49421
|
},
|
|
48283
49422
|
"shadow-resting-xsmall": {
|
|
48284
49423
|
"key": "{shadow.resting.xsmall}",
|
|
48285
|
-
"$value": "
|
|
49424
|
+
"$value": "0 1px 1px 0 #010409cc",
|
|
48286
49425
|
"$type": "shadow",
|
|
49426
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48287
49427
|
"$extensions": {
|
|
48288
49428
|
"org.primer.figma": {
|
|
48289
49429
|
"collection": "mode",
|
|
@@ -48294,16 +49434,32 @@
|
|
|
48294
49434
|
"$value": {
|
|
48295
49435
|
"color": "#010409",
|
|
48296
49436
|
"alpha": 0.8,
|
|
48297
|
-
"offsetX":
|
|
48298
|
-
|
|
48299
|
-
|
|
48300
|
-
|
|
49437
|
+
"offsetX": {
|
|
49438
|
+
"value": 0,
|
|
49439
|
+
"unit": "px"
|
|
49440
|
+
},
|
|
49441
|
+
"offsetY": {
|
|
49442
|
+
"value": 1,
|
|
49443
|
+
"unit": "px"
|
|
49444
|
+
},
|
|
49445
|
+
"blur": {
|
|
49446
|
+
"value": 1,
|
|
49447
|
+
"unit": "px"
|
|
49448
|
+
},
|
|
49449
|
+
"spread": {
|
|
49450
|
+
"value": 0,
|
|
49451
|
+
"unit": "px"
|
|
49452
|
+
},
|
|
48301
49453
|
"inset": false
|
|
48302
49454
|
},
|
|
48303
49455
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48304
49456
|
"isSource": true,
|
|
48305
49457
|
"$type": "shadow"
|
|
48306
49458
|
}
|
|
49459
|
+
},
|
|
49460
|
+
"org.primer.llm": {
|
|
49461
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49462
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48307
49463
|
}
|
|
48308
49464
|
},
|
|
48309
49465
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48312,13 +49468,26 @@
|
|
|
48312
49468
|
"$value": {
|
|
48313
49469
|
"color": "{base.color.neutral.0}",
|
|
48314
49470
|
"alpha": 0.8,
|
|
48315
|
-
"offsetX":
|
|
48316
|
-
|
|
48317
|
-
|
|
48318
|
-
|
|
49471
|
+
"offsetX": {
|
|
49472
|
+
"value": 0,
|
|
49473
|
+
"unit": "px"
|
|
49474
|
+
},
|
|
49475
|
+
"offsetY": {
|
|
49476
|
+
"value": 1,
|
|
49477
|
+
"unit": "px"
|
|
49478
|
+
},
|
|
49479
|
+
"blur": {
|
|
49480
|
+
"value": 1,
|
|
49481
|
+
"unit": "px"
|
|
49482
|
+
},
|
|
49483
|
+
"spread": {
|
|
49484
|
+
"value": 0,
|
|
49485
|
+
"unit": "px"
|
|
49486
|
+
},
|
|
48319
49487
|
"inset": false
|
|
48320
49488
|
},
|
|
48321
49489
|
"$type": "shadow",
|
|
49490
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48322
49491
|
"$extensions": {
|
|
48323
49492
|
"org.primer.figma": {
|
|
48324
49493
|
"collection": "mode",
|
|
@@ -48329,16 +49498,32 @@
|
|
|
48329
49498
|
"$value": {
|
|
48330
49499
|
"color": "{base.color.neutral.0}",
|
|
48331
49500
|
"alpha": 0.8,
|
|
48332
|
-
"offsetX":
|
|
48333
|
-
|
|
48334
|
-
|
|
48335
|
-
|
|
49501
|
+
"offsetX": {
|
|
49502
|
+
"value": 0,
|
|
49503
|
+
"unit": "px"
|
|
49504
|
+
},
|
|
49505
|
+
"offsetY": {
|
|
49506
|
+
"value": 1,
|
|
49507
|
+
"unit": "px"
|
|
49508
|
+
},
|
|
49509
|
+
"blur": {
|
|
49510
|
+
"value": 1,
|
|
49511
|
+
"unit": "px"
|
|
49512
|
+
},
|
|
49513
|
+
"spread": {
|
|
49514
|
+
"value": 0,
|
|
49515
|
+
"unit": "px"
|
|
49516
|
+
},
|
|
48336
49517
|
"inset": false
|
|
48337
49518
|
},
|
|
48338
49519
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48339
49520
|
"isSource": true,
|
|
48340
49521
|
"$type": "shadow"
|
|
48341
49522
|
}
|
|
49523
|
+
},
|
|
49524
|
+
"org.primer.llm": {
|
|
49525
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49526
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48342
49527
|
}
|
|
48343
49528
|
},
|
|
48344
49529
|
"key": "{shadow.resting.xsmall}"
|