@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}"
|
|
@@ -2454,6 +2498,10 @@
|
|
|
2454
2498
|
},
|
|
2455
2499
|
"org.primer.overrides": {
|
|
2456
2500
|
"dark": "#ffffff"
|
|
2501
|
+
},
|
|
2502
|
+
"org.primer.llm": {
|
|
2503
|
+
"doNotUse": true,
|
|
2504
|
+
"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."
|
|
2457
2505
|
}
|
|
2458
2506
|
},
|
|
2459
2507
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -2470,6 +2518,10 @@
|
|
|
2470
2518
|
},
|
|
2471
2519
|
"org.primer.overrides": {
|
|
2472
2520
|
"dark": "{base.color.neutral.13}"
|
|
2521
|
+
},
|
|
2522
|
+
"org.primer.llm": {
|
|
2523
|
+
"doNotUse": true,
|
|
2524
|
+
"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."
|
|
2473
2525
|
}
|
|
2474
2526
|
},
|
|
2475
2527
|
"key": "{bgColor.white}"
|
|
@@ -2480,7 +2532,11 @@
|
|
|
2480
2532
|
},
|
|
2481
2533
|
"border-accent-emphasis": {
|
|
2482
2534
|
"key": "{border.accent.emphasis}",
|
|
2483
|
-
"$value":
|
|
2535
|
+
"$value": {
|
|
2536
|
+
"color": "#409eff",
|
|
2537
|
+
"style": "solid",
|
|
2538
|
+
"width": ["0.0625rem", "1px"]
|
|
2539
|
+
},
|
|
2484
2540
|
"$type": "border",
|
|
2485
2541
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2486
2542
|
"isSource": true,
|
|
@@ -2499,7 +2555,11 @@
|
|
|
2499
2555
|
},
|
|
2500
2556
|
"border-accent-muted": {
|
|
2501
2557
|
"key": "{border.accent.muted}",
|
|
2502
|
-
"$value":
|
|
2558
|
+
"$value": {
|
|
2559
|
+
"color": "#5cacff",
|
|
2560
|
+
"style": "solid",
|
|
2561
|
+
"width": ["0.0625rem", "1px"]
|
|
2562
|
+
},
|
|
2503
2563
|
"$type": "border",
|
|
2504
2564
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2505
2565
|
"isSource": true,
|
|
@@ -2518,7 +2578,11 @@
|
|
|
2518
2578
|
},
|
|
2519
2579
|
"border-attention-emphasis": {
|
|
2520
2580
|
"key": "{border.attention.emphasis}",
|
|
2521
|
-
"$value":
|
|
2581
|
+
"$value": {
|
|
2582
|
+
"color": "#e09b13",
|
|
2583
|
+
"style": "solid",
|
|
2584
|
+
"width": ["0.0625rem", "1px"]
|
|
2585
|
+
},
|
|
2522
2586
|
"$type": "border",
|
|
2523
2587
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2524
2588
|
"isSource": true,
|
|
@@ -2537,7 +2601,11 @@
|
|
|
2537
2601
|
},
|
|
2538
2602
|
"border-attention-muted": {
|
|
2539
2603
|
"key": "{border.attention.muted}",
|
|
2540
|
-
"$value":
|
|
2604
|
+
"$value": {
|
|
2605
|
+
"color": "#edaa27",
|
|
2606
|
+
"style": "solid",
|
|
2607
|
+
"width": ["0.0625rem", "1px"]
|
|
2608
|
+
},
|
|
2541
2609
|
"$type": "border",
|
|
2542
2610
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2543
2611
|
"isSource": true,
|
|
@@ -2556,7 +2624,11 @@
|
|
|
2556
2624
|
},
|
|
2557
2625
|
"border-closed-emphasis": {
|
|
2558
2626
|
"key": "{border.closed.emphasis}",
|
|
2559
|
-
"$value":
|
|
2627
|
+
"$value": {
|
|
2628
|
+
"color": "#ff6a69",
|
|
2629
|
+
"style": "solid",
|
|
2630
|
+
"width": ["0.0625rem", "1px"]
|
|
2631
|
+
},
|
|
2560
2632
|
"$type": "border",
|
|
2561
2633
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2562
2634
|
"isSource": true,
|
|
@@ -2571,7 +2643,11 @@
|
|
|
2571
2643
|
},
|
|
2572
2644
|
"border-closed-muted": {
|
|
2573
2645
|
"key": "{border.closed.muted}",
|
|
2574
|
-
"$value":
|
|
2646
|
+
"$value": {
|
|
2647
|
+
"color": "#ff8080",
|
|
2648
|
+
"style": "solid",
|
|
2649
|
+
"width": ["0.0625rem", "1px"]
|
|
2650
|
+
},
|
|
2575
2651
|
"$type": "border",
|
|
2576
2652
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2577
2653
|
"isSource": true,
|
|
@@ -2586,7 +2662,11 @@
|
|
|
2586
2662
|
},
|
|
2587
2663
|
"border-danger-emphasis": {
|
|
2588
2664
|
"key": "{border.danger.emphasis}",
|
|
2589
|
-
"$value":
|
|
2665
|
+
"$value": {
|
|
2666
|
+
"color": "#ff6a69",
|
|
2667
|
+
"style": "solid",
|
|
2668
|
+
"width": ["0.0625rem", "1px"]
|
|
2669
|
+
},
|
|
2590
2670
|
"$type": "border",
|
|
2591
2671
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2592
2672
|
"isSource": true,
|
|
@@ -2605,7 +2685,11 @@
|
|
|
2605
2685
|
},
|
|
2606
2686
|
"border-danger-muted": {
|
|
2607
2687
|
"key": "{border.danger.muted}",
|
|
2608
|
-
"$value":
|
|
2688
|
+
"$value": {
|
|
2689
|
+
"color": "#ff8080",
|
|
2690
|
+
"style": "solid",
|
|
2691
|
+
"width": ["0.0625rem", "1px"]
|
|
2692
|
+
},
|
|
2609
2693
|
"$type": "border",
|
|
2610
2694
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2611
2695
|
"isSource": true,
|
|
@@ -2624,7 +2708,11 @@
|
|
|
2624
2708
|
},
|
|
2625
2709
|
"border-default": {
|
|
2626
2710
|
"key": "{border.default}",
|
|
2627
|
-
"$value":
|
|
2711
|
+
"$value": {
|
|
2712
|
+
"color": "#b7bdc8",
|
|
2713
|
+
"style": "solid",
|
|
2714
|
+
"width": ["0.0625rem", "1px"]
|
|
2715
|
+
},
|
|
2628
2716
|
"$type": "border",
|
|
2629
2717
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2630
2718
|
"isSource": true,
|
|
@@ -2643,7 +2731,11 @@
|
|
|
2643
2731
|
},
|
|
2644
2732
|
"border-disabled": {
|
|
2645
2733
|
"key": "{border.disabled}",
|
|
2646
|
-
"$value":
|
|
2734
|
+
"$value": {
|
|
2735
|
+
"color": "#656c761a",
|
|
2736
|
+
"style": "solid",
|
|
2737
|
+
"width": ["0.0625rem", "1px"]
|
|
2738
|
+
},
|
|
2647
2739
|
"$type": "border",
|
|
2648
2740
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2649
2741
|
"isSource": true,
|
|
@@ -2662,7 +2754,11 @@
|
|
|
2662
2754
|
},
|
|
2663
2755
|
"border-done-emphasis": {
|
|
2664
2756
|
"key": "{border.done.emphasis}",
|
|
2665
|
-
"$value":
|
|
2757
|
+
"$value": {
|
|
2758
|
+
"color": "#b87fff",
|
|
2759
|
+
"style": "solid",
|
|
2760
|
+
"width": ["0.0625rem", "1px"]
|
|
2761
|
+
},
|
|
2666
2762
|
"$type": "border",
|
|
2667
2763
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2668
2764
|
"isSource": true,
|
|
@@ -2681,7 +2777,11 @@
|
|
|
2681
2777
|
},
|
|
2682
2778
|
"border-done-muted": {
|
|
2683
2779
|
"key": "{border.done.muted}",
|
|
2684
|
-
"$value":
|
|
2780
|
+
"$value": {
|
|
2781
|
+
"color": "#bf8fff",
|
|
2782
|
+
"style": "solid",
|
|
2783
|
+
"width": ["0.0625rem", "1px"]
|
|
2784
|
+
},
|
|
2685
2785
|
"$type": "border",
|
|
2686
2786
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2687
2787
|
"isSource": true,
|
|
@@ -2700,7 +2800,11 @@
|
|
|
2700
2800
|
},
|
|
2701
2801
|
"border-emphasis": {
|
|
2702
2802
|
"key": "{border.emphasis}",
|
|
2703
|
-
"$value":
|
|
2803
|
+
"$value": {
|
|
2804
|
+
"color": "#b7bdc8",
|
|
2805
|
+
"style": "solid",
|
|
2806
|
+
"width": ["0.0625rem", "1px"]
|
|
2807
|
+
},
|
|
2704
2808
|
"$type": "border",
|
|
2705
2809
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2706
2810
|
"isSource": true,
|
|
@@ -2719,7 +2823,11 @@
|
|
|
2719
2823
|
},
|
|
2720
2824
|
"border-muted": {
|
|
2721
2825
|
"key": "{border.muted}",
|
|
2722
|
-
"$value":
|
|
2826
|
+
"$value": {
|
|
2827
|
+
"color": "#b7bdc8",
|
|
2828
|
+
"style": "solid",
|
|
2829
|
+
"width": ["0.0625rem", "1px"]
|
|
2830
|
+
},
|
|
2723
2831
|
"$type": "border",
|
|
2724
2832
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2725
2833
|
"isSource": true,
|
|
@@ -2738,7 +2846,11 @@
|
|
|
2738
2846
|
},
|
|
2739
2847
|
"border-neutral-emphasis": {
|
|
2740
2848
|
"key": "{border.neutral.emphasis}",
|
|
2741
|
-
"$value":
|
|
2849
|
+
"$value": {
|
|
2850
|
+
"color": "#b7bdc8",
|
|
2851
|
+
"style": "solid",
|
|
2852
|
+
"width": ["0.0625rem", "1px"]
|
|
2853
|
+
},
|
|
2742
2854
|
"$type": "border",
|
|
2743
2855
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2744
2856
|
"isSource": true,
|
|
@@ -2757,7 +2869,11 @@
|
|
|
2757
2869
|
},
|
|
2758
2870
|
"border-neutral-muted": {
|
|
2759
2871
|
"key": "{border.neutral.muted}",
|
|
2760
|
-
"$value":
|
|
2872
|
+
"$value": {
|
|
2873
|
+
"color": "#b7bdc8",
|
|
2874
|
+
"style": "solid",
|
|
2875
|
+
"width": ["0.0625rem", "1px"]
|
|
2876
|
+
},
|
|
2761
2877
|
"$type": "border",
|
|
2762
2878
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2763
2879
|
"isSource": true,
|
|
@@ -2776,7 +2892,11 @@
|
|
|
2776
2892
|
},
|
|
2777
2893
|
"border-open-emphasis": {
|
|
2778
2894
|
"key": "{border.open.emphasis}",
|
|
2779
|
-
"$value":
|
|
2895
|
+
"$value": {
|
|
2896
|
+
"color": "#409eff",
|
|
2897
|
+
"style": "solid",
|
|
2898
|
+
"width": ["0.0625rem", "1px"]
|
|
2899
|
+
},
|
|
2780
2900
|
"$type": "border",
|
|
2781
2901
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2782
2902
|
"isSource": true,
|
|
@@ -2791,7 +2911,11 @@
|
|
|
2791
2911
|
},
|
|
2792
2912
|
"border-open-muted": {
|
|
2793
2913
|
"key": "{border.open.muted}",
|
|
2794
|
-
"$value":
|
|
2914
|
+
"$value": {
|
|
2915
|
+
"color": "#5cacff",
|
|
2916
|
+
"style": "solid",
|
|
2917
|
+
"width": ["0.0625rem", "1px"]
|
|
2918
|
+
},
|
|
2795
2919
|
"$type": "border",
|
|
2796
2920
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2797
2921
|
"isSource": true,
|
|
@@ -2806,7 +2930,11 @@
|
|
|
2806
2930
|
},
|
|
2807
2931
|
"border-severe-emphasis": {
|
|
2808
2932
|
"key": "{border.severe.emphasis}",
|
|
2809
|
-
"$value":
|
|
2933
|
+
"$value": {
|
|
2934
|
+
"color": "#e7811d",
|
|
2935
|
+
"style": "solid",
|
|
2936
|
+
"width": ["0.0625rem", "1px"]
|
|
2937
|
+
},
|
|
2810
2938
|
"$type": "border",
|
|
2811
2939
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2812
2940
|
"isSource": true,
|
|
@@ -2825,7 +2953,11 @@
|
|
|
2825
2953
|
},
|
|
2826
2954
|
"border-severe-muted": {
|
|
2827
2955
|
"key": "{border.severe.muted}",
|
|
2828
|
-
"$value":
|
|
2956
|
+
"$value": {
|
|
2957
|
+
"color": "#ff8080",
|
|
2958
|
+
"style": "solid",
|
|
2959
|
+
"width": ["0.0625rem", "1px"]
|
|
2960
|
+
},
|
|
2829
2961
|
"$type": "border",
|
|
2830
2962
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2831
2963
|
"isSource": true,
|
|
@@ -2844,7 +2976,11 @@
|
|
|
2844
2976
|
},
|
|
2845
2977
|
"border-sponsors-emphasis": {
|
|
2846
2978
|
"key": "{border.sponsors.emphasis}",
|
|
2847
|
-
"$value":
|
|
2979
|
+
"$value": {
|
|
2980
|
+
"color": "#ef6eb1",
|
|
2981
|
+
"style": "solid",
|
|
2982
|
+
"width": ["0.0625rem", "1px"]
|
|
2983
|
+
},
|
|
2848
2984
|
"$type": "border",
|
|
2849
2985
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2850
2986
|
"isSource": true,
|
|
@@ -2863,7 +2999,11 @@
|
|
|
2863
2999
|
},
|
|
2864
3000
|
"border-sponsors-muted": {
|
|
2865
3001
|
"key": "{border.sponsors.muted}",
|
|
2866
|
-
"$value":
|
|
3002
|
+
"$value": {
|
|
3003
|
+
"color": "#f87cbd",
|
|
3004
|
+
"style": "solid",
|
|
3005
|
+
"width": ["0.0625rem", "1px"]
|
|
3006
|
+
},
|
|
2867
3007
|
"$type": "border",
|
|
2868
3008
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2869
3009
|
"isSource": true,
|
|
@@ -2882,7 +3022,11 @@
|
|
|
2882
3022
|
},
|
|
2883
3023
|
"border-success-emphasis": {
|
|
2884
3024
|
"key": "{border.success.emphasis}",
|
|
2885
|
-
"$value":
|
|
3025
|
+
"$value": {
|
|
3026
|
+
"color": "#409eff",
|
|
3027
|
+
"style": "solid",
|
|
3028
|
+
"width": ["0.0625rem", "1px"]
|
|
3029
|
+
},
|
|
2886
3030
|
"$type": "border",
|
|
2887
3031
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2888
3032
|
"isSource": true,
|
|
@@ -2901,7 +3045,11 @@
|
|
|
2901
3045
|
},
|
|
2902
3046
|
"border-success-muted": {
|
|
2903
3047
|
"key": "{border.success.muted}",
|
|
2904
|
-
"$value":
|
|
3048
|
+
"$value": {
|
|
3049
|
+
"color": "#5cacff",
|
|
3050
|
+
"style": "solid",
|
|
3051
|
+
"width": ["0.0625rem", "1px"]
|
|
3052
|
+
},
|
|
2905
3053
|
"$type": "border",
|
|
2906
3054
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2907
3055
|
"isSource": true,
|
|
@@ -2920,7 +3068,11 @@
|
|
|
2920
3068
|
},
|
|
2921
3069
|
"border-transparent": {
|
|
2922
3070
|
"key": "{border.transparent}",
|
|
2923
|
-
"$value":
|
|
3071
|
+
"$value": {
|
|
3072
|
+
"color": "#00000000",
|
|
3073
|
+
"style": "solid",
|
|
3074
|
+
"width": ["0.0625rem", "1px"]
|
|
3075
|
+
},
|
|
2924
3076
|
"$type": "border",
|
|
2925
3077
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2926
3078
|
"isSource": true,
|
|
@@ -2939,7 +3091,11 @@
|
|
|
2939
3091
|
},
|
|
2940
3092
|
"border-upsell-emphasis": {
|
|
2941
3093
|
"key": "{border.upsell.emphasis}",
|
|
2942
|
-
"$value":
|
|
3094
|
+
"$value": {
|
|
3095
|
+
"color": "#b87fff",
|
|
3096
|
+
"style": "solid",
|
|
3097
|
+
"width": ["0.0625rem", "1px"]
|
|
3098
|
+
},
|
|
2943
3099
|
"$type": "border",
|
|
2944
3100
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2945
3101
|
"isSource": true,
|
|
@@ -2958,7 +3114,11 @@
|
|
|
2958
3114
|
},
|
|
2959
3115
|
"border-upsell-muted": {
|
|
2960
3116
|
"key": "{border.upsell.muted}",
|
|
2961
|
-
"$value":
|
|
3117
|
+
"$value": {
|
|
3118
|
+
"color": "#bf8fff",
|
|
3119
|
+
"style": "solid",
|
|
3120
|
+
"width": ["0.0625rem", "1px"]
|
|
3121
|
+
},
|
|
2962
3122
|
"$type": "border",
|
|
2963
3123
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2964
3124
|
"isSource": true,
|
|
@@ -6952,7 +7112,7 @@
|
|
|
6952
7112
|
},
|
|
6953
7113
|
"button-danger-shadow-selected": {
|
|
6954
7114
|
"key": "{button.danger.shadow.selected}",
|
|
6955
|
-
"$value": "
|
|
7115
|
+
"$value": "0 0 0 0 #000000",
|
|
6956
7116
|
"$type": "shadow",
|
|
6957
7117
|
"$extensions": {
|
|
6958
7118
|
"org.primer.figma": {
|
|
@@ -6965,10 +7125,22 @@
|
|
|
6965
7125
|
{
|
|
6966
7126
|
"color": "#8f3c00",
|
|
6967
7127
|
"alpha": 0.2,
|
|
6968
|
-
"offsetX":
|
|
6969
|
-
|
|
6970
|
-
|
|
6971
|
-
|
|
7128
|
+
"offsetX": {
|
|
7129
|
+
"value": 0,
|
|
7130
|
+
"unit": "px"
|
|
7131
|
+
},
|
|
7132
|
+
"offsetY": {
|
|
7133
|
+
"value": 1,
|
|
7134
|
+
"unit": "px"
|
|
7135
|
+
},
|
|
7136
|
+
"blur": {
|
|
7137
|
+
"value": 0,
|
|
7138
|
+
"unit": "px"
|
|
7139
|
+
},
|
|
7140
|
+
"spread": {
|
|
7141
|
+
"value": 0,
|
|
7142
|
+
"unit": "px"
|
|
7143
|
+
},
|
|
6972
7144
|
"inset": true
|
|
6973
7145
|
}
|
|
6974
7146
|
],
|
|
@@ -6981,10 +7153,22 @@
|
|
|
6981
7153
|
{
|
|
6982
7154
|
"color": "#00000000",
|
|
6983
7155
|
"alpha": 0,
|
|
6984
|
-
"offsetX":
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
7156
|
+
"offsetX": {
|
|
7157
|
+
"value": 0,
|
|
7158
|
+
"unit": "px"
|
|
7159
|
+
},
|
|
7160
|
+
"offsetY": {
|
|
7161
|
+
"value": 0,
|
|
7162
|
+
"unit": "px"
|
|
7163
|
+
},
|
|
7164
|
+
"blur": {
|
|
7165
|
+
"value": 0,
|
|
7166
|
+
"unit": "px"
|
|
7167
|
+
},
|
|
7168
|
+
"spread": {
|
|
7169
|
+
"value": 0,
|
|
7170
|
+
"unit": "px"
|
|
7171
|
+
},
|
|
6988
7172
|
"inset": false
|
|
6989
7173
|
}
|
|
6990
7174
|
],
|
|
@@ -7001,10 +7185,22 @@
|
|
|
7001
7185
|
{
|
|
7002
7186
|
"color": "{base.color.transparent}",
|
|
7003
7187
|
"alpha": 0,
|
|
7004
|
-
"offsetX":
|
|
7005
|
-
|
|
7006
|
-
|
|
7007
|
-
|
|
7188
|
+
"offsetX": {
|
|
7189
|
+
"value": 0,
|
|
7190
|
+
"unit": "px"
|
|
7191
|
+
},
|
|
7192
|
+
"offsetY": {
|
|
7193
|
+
"value": 0,
|
|
7194
|
+
"unit": "px"
|
|
7195
|
+
},
|
|
7196
|
+
"blur": {
|
|
7197
|
+
"value": 0,
|
|
7198
|
+
"unit": "px"
|
|
7199
|
+
},
|
|
7200
|
+
"spread": {
|
|
7201
|
+
"value": 0,
|
|
7202
|
+
"unit": "px"
|
|
7203
|
+
},
|
|
7008
7204
|
"inset": false
|
|
7009
7205
|
}
|
|
7010
7206
|
],
|
|
@@ -7020,10 +7216,22 @@
|
|
|
7020
7216
|
{
|
|
7021
7217
|
"color": "{base.color.orange.9}",
|
|
7022
7218
|
"alpha": 0.2,
|
|
7023
|
-
"offsetX":
|
|
7024
|
-
|
|
7025
|
-
|
|
7026
|
-
|
|
7219
|
+
"offsetX": {
|
|
7220
|
+
"value": 0,
|
|
7221
|
+
"unit": "px"
|
|
7222
|
+
},
|
|
7223
|
+
"offsetY": {
|
|
7224
|
+
"value": 1,
|
|
7225
|
+
"unit": "px"
|
|
7226
|
+
},
|
|
7227
|
+
"blur": {
|
|
7228
|
+
"value": 0,
|
|
7229
|
+
"unit": "px"
|
|
7230
|
+
},
|
|
7231
|
+
"spread": {
|
|
7232
|
+
"value": 0,
|
|
7233
|
+
"unit": "px"
|
|
7234
|
+
},
|
|
7027
7235
|
"inset": true
|
|
7028
7236
|
}
|
|
7029
7237
|
],
|
|
@@ -7036,10 +7244,22 @@
|
|
|
7036
7244
|
{
|
|
7037
7245
|
"color": "{base.color.transparent}",
|
|
7038
7246
|
"alpha": 0,
|
|
7039
|
-
"offsetX":
|
|
7040
|
-
|
|
7041
|
-
|
|
7042
|
-
|
|
7247
|
+
"offsetX": {
|
|
7248
|
+
"value": 0,
|
|
7249
|
+
"unit": "px"
|
|
7250
|
+
},
|
|
7251
|
+
"offsetY": {
|
|
7252
|
+
"value": 0,
|
|
7253
|
+
"unit": "px"
|
|
7254
|
+
},
|
|
7255
|
+
"blur": {
|
|
7256
|
+
"value": 0,
|
|
7257
|
+
"unit": "px"
|
|
7258
|
+
},
|
|
7259
|
+
"spread": {
|
|
7260
|
+
"value": 0,
|
|
7261
|
+
"unit": "px"
|
|
7262
|
+
},
|
|
7043
7263
|
"inset": false
|
|
7044
7264
|
}
|
|
7045
7265
|
],
|
|
@@ -7415,7 +7635,7 @@
|
|
|
7415
7635
|
},
|
|
7416
7636
|
"button-default-shadow-resting": {
|
|
7417
7637
|
"key": "{button.default.shadow.resting}",
|
|
7418
|
-
"$value": "
|
|
7638
|
+
"$value": "0 0 0 0 #000000",
|
|
7419
7639
|
"$type": "shadow",
|
|
7420
7640
|
"$extensions": {
|
|
7421
7641
|
"org.primer.figma": {
|
|
@@ -7428,10 +7648,22 @@
|
|
|
7428
7648
|
{
|
|
7429
7649
|
"color": "#00000000",
|
|
7430
7650
|
"alpha": 0,
|
|
7431
|
-
"offsetX":
|
|
7432
|
-
|
|
7433
|
-
|
|
7434
|
-
|
|
7651
|
+
"offsetX": {
|
|
7652
|
+
"value": 0,
|
|
7653
|
+
"unit": "px"
|
|
7654
|
+
},
|
|
7655
|
+
"offsetY": {
|
|
7656
|
+
"value": 0,
|
|
7657
|
+
"unit": "px"
|
|
7658
|
+
},
|
|
7659
|
+
"blur": {
|
|
7660
|
+
"value": 0,
|
|
7661
|
+
"unit": "px"
|
|
7662
|
+
},
|
|
7663
|
+
"spread": {
|
|
7664
|
+
"value": 0,
|
|
7665
|
+
"unit": "px"
|
|
7666
|
+
},
|
|
7435
7667
|
"inset": false
|
|
7436
7668
|
}
|
|
7437
7669
|
],
|
|
@@ -7448,10 +7680,22 @@
|
|
|
7448
7680
|
{
|
|
7449
7681
|
"color": "{base.color.transparent}",
|
|
7450
7682
|
"alpha": 0,
|
|
7451
|
-
"offsetX":
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7683
|
+
"offsetX": {
|
|
7684
|
+
"value": 0,
|
|
7685
|
+
"unit": "px"
|
|
7686
|
+
},
|
|
7687
|
+
"offsetY": {
|
|
7688
|
+
"value": 0,
|
|
7689
|
+
"unit": "px"
|
|
7690
|
+
},
|
|
7691
|
+
"blur": {
|
|
7692
|
+
"value": 0,
|
|
7693
|
+
"unit": "px"
|
|
7694
|
+
},
|
|
7695
|
+
"spread": {
|
|
7696
|
+
"value": 0,
|
|
7697
|
+
"unit": "px"
|
|
7698
|
+
},
|
|
7455
7699
|
"inset": false
|
|
7456
7700
|
}
|
|
7457
7701
|
],
|
|
@@ -7467,10 +7711,22 @@
|
|
|
7467
7711
|
{
|
|
7468
7712
|
"color": "{base.color.transparent}",
|
|
7469
7713
|
"alpha": 0,
|
|
7470
|
-
"offsetX":
|
|
7471
|
-
|
|
7472
|
-
|
|
7473
|
-
|
|
7714
|
+
"offsetX": {
|
|
7715
|
+
"value": 0,
|
|
7716
|
+
"unit": "px"
|
|
7717
|
+
},
|
|
7718
|
+
"offsetY": {
|
|
7719
|
+
"value": 0,
|
|
7720
|
+
"unit": "px"
|
|
7721
|
+
},
|
|
7722
|
+
"blur": {
|
|
7723
|
+
"value": 0,
|
|
7724
|
+
"unit": "px"
|
|
7725
|
+
},
|
|
7726
|
+
"spread": {
|
|
7727
|
+
"value": 0,
|
|
7728
|
+
"unit": "px"
|
|
7729
|
+
},
|
|
7474
7730
|
"inset": false
|
|
7475
7731
|
}
|
|
7476
7732
|
],
|
|
@@ -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
|
],
|
|
@@ -10386,7 +10678,7 @@
|
|
|
10386
10678
|
},
|
|
10387
10679
|
"button-primary-shadow-selected": {
|
|
10388
10680
|
"key": "{button.primary.shadow.selected}",
|
|
10389
|
-
"$value": "
|
|
10681
|
+
"$value": "0 0 0 0 #000000",
|
|
10390
10682
|
"$type": "shadow",
|
|
10391
10683
|
"$extensions": {
|
|
10392
10684
|
"org.primer.figma": {
|
|
@@ -10399,10 +10691,22 @@
|
|
|
10399
10691
|
{
|
|
10400
10692
|
"color": "#194fb1",
|
|
10401
10693
|
"alpha": 0.3,
|
|
10402
|
-
"offsetX":
|
|
10403
|
-
|
|
10404
|
-
|
|
10405
|
-
|
|
10694
|
+
"offsetX": {
|
|
10695
|
+
"value": 0,
|
|
10696
|
+
"unit": "px"
|
|
10697
|
+
},
|
|
10698
|
+
"offsetY": {
|
|
10699
|
+
"value": 1,
|
|
10700
|
+
"unit": "px"
|
|
10701
|
+
},
|
|
10702
|
+
"blur": {
|
|
10703
|
+
"value": 0,
|
|
10704
|
+
"unit": "px"
|
|
10705
|
+
},
|
|
10706
|
+
"spread": {
|
|
10707
|
+
"value": 0,
|
|
10708
|
+
"unit": "px"
|
|
10709
|
+
},
|
|
10406
10710
|
"inset": true
|
|
10407
10711
|
}
|
|
10408
10712
|
],
|
|
@@ -10415,10 +10719,22 @@
|
|
|
10415
10719
|
{
|
|
10416
10720
|
"color": "#194fb1",
|
|
10417
10721
|
"alpha": 0.3,
|
|
10418
|
-
"offsetX":
|
|
10419
|
-
|
|
10420
|
-
|
|
10421
|
-
|
|
10722
|
+
"offsetX": {
|
|
10723
|
+
"value": 0,
|
|
10724
|
+
"unit": "px"
|
|
10725
|
+
},
|
|
10726
|
+
"offsetY": {
|
|
10727
|
+
"value": 1,
|
|
10728
|
+
"unit": "px"
|
|
10729
|
+
},
|
|
10730
|
+
"blur": {
|
|
10731
|
+
"value": 0,
|
|
10732
|
+
"unit": "px"
|
|
10733
|
+
},
|
|
10734
|
+
"spread": {
|
|
10735
|
+
"value": 0,
|
|
10736
|
+
"unit": "px"
|
|
10737
|
+
},
|
|
10422
10738
|
"inset": true
|
|
10423
10739
|
}
|
|
10424
10740
|
],
|
|
@@ -10431,10 +10747,22 @@
|
|
|
10431
10747
|
{
|
|
10432
10748
|
"color": "#00000000",
|
|
10433
10749
|
"alpha": 0,
|
|
10434
|
-
"offsetX":
|
|
10435
|
-
|
|
10436
|
-
|
|
10437
|
-
|
|
10750
|
+
"offsetX": {
|
|
10751
|
+
"value": 0,
|
|
10752
|
+
"unit": "px"
|
|
10753
|
+
},
|
|
10754
|
+
"offsetY": {
|
|
10755
|
+
"value": 0,
|
|
10756
|
+
"unit": "px"
|
|
10757
|
+
},
|
|
10758
|
+
"blur": {
|
|
10759
|
+
"value": 0,
|
|
10760
|
+
"unit": "px"
|
|
10761
|
+
},
|
|
10762
|
+
"spread": {
|
|
10763
|
+
"value": 0,
|
|
10764
|
+
"unit": "px"
|
|
10765
|
+
},
|
|
10438
10766
|
"inset": false
|
|
10439
10767
|
}
|
|
10440
10768
|
],
|
|
@@ -10451,10 +10779,22 @@
|
|
|
10451
10779
|
{
|
|
10452
10780
|
"color": "{base.color.transparent}",
|
|
10453
10781
|
"alpha": 0,
|
|
10454
|
-
"offsetX":
|
|
10455
|
-
|
|
10456
|
-
|
|
10457
|
-
|
|
10782
|
+
"offsetX": {
|
|
10783
|
+
"value": 0,
|
|
10784
|
+
"unit": "px"
|
|
10785
|
+
},
|
|
10786
|
+
"offsetY": {
|
|
10787
|
+
"value": 0,
|
|
10788
|
+
"unit": "px"
|
|
10789
|
+
},
|
|
10790
|
+
"blur": {
|
|
10791
|
+
"value": 0,
|
|
10792
|
+
"unit": "px"
|
|
10793
|
+
},
|
|
10794
|
+
"spread": {
|
|
10795
|
+
"value": 0,
|
|
10796
|
+
"unit": "px"
|
|
10797
|
+
},
|
|
10458
10798
|
"inset": false
|
|
10459
10799
|
}
|
|
10460
10800
|
],
|
|
@@ -10470,10 +10810,22 @@
|
|
|
10470
10810
|
{
|
|
10471
10811
|
"color": "{base.color.blue.9}",
|
|
10472
10812
|
"alpha": 0.3,
|
|
10473
|
-
"offsetX":
|
|
10474
|
-
|
|
10475
|
-
|
|
10476
|
-
|
|
10813
|
+
"offsetX": {
|
|
10814
|
+
"value": 0,
|
|
10815
|
+
"unit": "px"
|
|
10816
|
+
},
|
|
10817
|
+
"offsetY": {
|
|
10818
|
+
"value": 1,
|
|
10819
|
+
"unit": "px"
|
|
10820
|
+
},
|
|
10821
|
+
"blur": {
|
|
10822
|
+
"value": 0,
|
|
10823
|
+
"unit": "px"
|
|
10824
|
+
},
|
|
10825
|
+
"spread": {
|
|
10826
|
+
"value": 0,
|
|
10827
|
+
"unit": "px"
|
|
10828
|
+
},
|
|
10477
10829
|
"inset": true
|
|
10478
10830
|
}
|
|
10479
10831
|
],
|
|
@@ -10486,10 +10838,22 @@
|
|
|
10486
10838
|
{
|
|
10487
10839
|
"color": "{base.color.blue.9}",
|
|
10488
10840
|
"alpha": 0.3,
|
|
10489
|
-
"offsetX":
|
|
10490
|
-
|
|
10491
|
-
|
|
10492
|
-
|
|
10841
|
+
"offsetX": {
|
|
10842
|
+
"value": 0,
|
|
10843
|
+
"unit": "px"
|
|
10844
|
+
},
|
|
10845
|
+
"offsetY": {
|
|
10846
|
+
"value": 1,
|
|
10847
|
+
"unit": "px"
|
|
10848
|
+
},
|
|
10849
|
+
"blur": {
|
|
10850
|
+
"value": 0,
|
|
10851
|
+
"unit": "px"
|
|
10852
|
+
},
|
|
10853
|
+
"spread": {
|
|
10854
|
+
"value": 0,
|
|
10855
|
+
"unit": "px"
|
|
10856
|
+
},
|
|
10493
10857
|
"inset": true
|
|
10494
10858
|
}
|
|
10495
10859
|
],
|
|
@@ -10502,10 +10866,22 @@
|
|
|
10502
10866
|
{
|
|
10503
10867
|
"color": "{base.color.transparent}",
|
|
10504
10868
|
"alpha": 0,
|
|
10505
|
-
"offsetX":
|
|
10506
|
-
|
|
10507
|
-
|
|
10508
|
-
|
|
10869
|
+
"offsetX": {
|
|
10870
|
+
"value": 0,
|
|
10871
|
+
"unit": "px"
|
|
10872
|
+
},
|
|
10873
|
+
"offsetY": {
|
|
10874
|
+
"value": 0,
|
|
10875
|
+
"unit": "px"
|
|
10876
|
+
},
|
|
10877
|
+
"blur": {
|
|
10878
|
+
"value": 0,
|
|
10879
|
+
"unit": "px"
|
|
10880
|
+
},
|
|
10881
|
+
"spread": {
|
|
10882
|
+
"value": 0,
|
|
10883
|
+
"unit": "px"
|
|
10884
|
+
},
|
|
10509
10885
|
"inset": false
|
|
10510
10886
|
}
|
|
10511
10887
|
],
|
|
@@ -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}"
|