@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
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
},
|
|
166
166
|
"avatar-shadow": {
|
|
167
167
|
"key": "{avatar.shadow}",
|
|
168
|
-
"$value": "
|
|
168
|
+
"$value": "0 0 0 2px #ffffffcc",
|
|
169
169
|
"$type": "shadow",
|
|
170
170
|
"$extensions": {
|
|
171
171
|
"org.primer.figma": {
|
|
@@ -178,10 +178,22 @@
|
|
|
178
178
|
{
|
|
179
179
|
"color": "#f6f8fa",
|
|
180
180
|
"alpha": 1,
|
|
181
|
-
"offsetX":
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
181
|
+
"offsetX": {
|
|
182
|
+
"value": 0,
|
|
183
|
+
"unit": "px"
|
|
184
|
+
},
|
|
185
|
+
"offsetY": {
|
|
186
|
+
"value": 0,
|
|
187
|
+
"unit": "px"
|
|
188
|
+
},
|
|
189
|
+
"blur": {
|
|
190
|
+
"value": 0,
|
|
191
|
+
"unit": "px"
|
|
192
|
+
},
|
|
193
|
+
"spread": {
|
|
194
|
+
"value": 2,
|
|
195
|
+
"unit": "px"
|
|
196
|
+
}
|
|
185
197
|
}
|
|
186
198
|
],
|
|
187
199
|
"filePath": "src/tokens/component/avatar.json5",
|
|
@@ -197,10 +209,22 @@
|
|
|
197
209
|
{
|
|
198
210
|
"color": "{base.color.neutral.0}",
|
|
199
211
|
"alpha": 0.8,
|
|
200
|
-
"offsetX":
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
212
|
+
"offsetX": {
|
|
213
|
+
"value": 0,
|
|
214
|
+
"unit": "px"
|
|
215
|
+
},
|
|
216
|
+
"offsetY": {
|
|
217
|
+
"value": 0,
|
|
218
|
+
"unit": "px"
|
|
219
|
+
},
|
|
220
|
+
"blur": {
|
|
221
|
+
"value": 0,
|
|
222
|
+
"unit": "px"
|
|
223
|
+
},
|
|
224
|
+
"spread": {
|
|
225
|
+
"value": 2,
|
|
226
|
+
"unit": "px"
|
|
227
|
+
}
|
|
204
228
|
}
|
|
205
229
|
],
|
|
206
230
|
"$type": "shadow",
|
|
@@ -215,10 +239,22 @@
|
|
|
215
239
|
{
|
|
216
240
|
"color": "{base.color.neutral.1}",
|
|
217
241
|
"alpha": 1,
|
|
218
|
-
"offsetX":
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
242
|
+
"offsetX": {
|
|
243
|
+
"value": 0,
|
|
244
|
+
"unit": "px"
|
|
245
|
+
},
|
|
246
|
+
"offsetY": {
|
|
247
|
+
"value": 0,
|
|
248
|
+
"unit": "px"
|
|
249
|
+
},
|
|
250
|
+
"blur": {
|
|
251
|
+
"value": 0,
|
|
252
|
+
"unit": "px"
|
|
253
|
+
},
|
|
254
|
+
"spread": {
|
|
255
|
+
"value": 2,
|
|
256
|
+
"unit": "px"
|
|
257
|
+
}
|
|
222
258
|
}
|
|
223
259
|
],
|
|
224
260
|
"filePath": "src/tokens/component/avatar.json5",
|
|
@@ -546,6 +582,10 @@
|
|
|
546
582
|
},
|
|
547
583
|
"org.primer.overrides": {
|
|
548
584
|
"dark": "#ffffff"
|
|
585
|
+
},
|
|
586
|
+
"org.primer.llm": {
|
|
587
|
+
"doNotUse": true,
|
|
588
|
+
"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."
|
|
549
589
|
}
|
|
550
590
|
},
|
|
551
591
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -562,6 +602,10 @@
|
|
|
562
602
|
},
|
|
563
603
|
"org.primer.overrides": {
|
|
564
604
|
"dark": "{base.color.neutral.0}"
|
|
605
|
+
},
|
|
606
|
+
"org.primer.llm": {
|
|
607
|
+
"doNotUse": true,
|
|
608
|
+
"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."
|
|
565
609
|
}
|
|
566
610
|
},
|
|
567
611
|
"key": "{bgColor.black}"
|
|
@@ -2438,6 +2482,10 @@
|
|
|
2438
2482
|
},
|
|
2439
2483
|
"org.primer.overrides": {
|
|
2440
2484
|
"dark": "#1f2328"
|
|
2485
|
+
},
|
|
2486
|
+
"org.primer.llm": {
|
|
2487
|
+
"doNotUse": true,
|
|
2488
|
+
"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."
|
|
2441
2489
|
}
|
|
2442
2490
|
},
|
|
2443
2491
|
"filePath": "src/tokens/functional/color/bgColor.json5",
|
|
@@ -2454,6 +2502,10 @@
|
|
|
2454
2502
|
},
|
|
2455
2503
|
"org.primer.overrides": {
|
|
2456
2504
|
"dark": "{base.color.neutral.13}"
|
|
2505
|
+
},
|
|
2506
|
+
"org.primer.llm": {
|
|
2507
|
+
"doNotUse": true,
|
|
2508
|
+
"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
2509
|
}
|
|
2458
2510
|
},
|
|
2459
2511
|
"key": "{bgColor.white}"
|
|
@@ -2464,7 +2516,11 @@
|
|
|
2464
2516
|
},
|
|
2465
2517
|
"border-accent-emphasis": {
|
|
2466
2518
|
"key": "{border.accent.emphasis}",
|
|
2467
|
-
"$value":
|
|
2519
|
+
"$value": {
|
|
2520
|
+
"color": "#0969da",
|
|
2521
|
+
"style": "solid",
|
|
2522
|
+
"width": ["0.0625rem", "1px"]
|
|
2523
|
+
},
|
|
2468
2524
|
"$type": "border",
|
|
2469
2525
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2470
2526
|
"isSource": true,
|
|
@@ -2483,7 +2539,11 @@
|
|
|
2483
2539
|
},
|
|
2484
2540
|
"border-accent-muted": {
|
|
2485
2541
|
"key": "{border.accent.muted}",
|
|
2486
|
-
"$value":
|
|
2542
|
+
"$value": {
|
|
2543
|
+
"color": "#54aeff66",
|
|
2544
|
+
"style": "solid",
|
|
2545
|
+
"width": ["0.0625rem", "1px"]
|
|
2546
|
+
},
|
|
2487
2547
|
"$type": "border",
|
|
2488
2548
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2489
2549
|
"isSource": true,
|
|
@@ -2502,7 +2562,11 @@
|
|
|
2502
2562
|
},
|
|
2503
2563
|
"border-attention-emphasis": {
|
|
2504
2564
|
"key": "{border.attention.emphasis}",
|
|
2505
|
-
"$value":
|
|
2565
|
+
"$value": {
|
|
2566
|
+
"color": "#9a6700",
|
|
2567
|
+
"style": "solid",
|
|
2568
|
+
"width": ["0.0625rem", "1px"]
|
|
2569
|
+
},
|
|
2506
2570
|
"$type": "border",
|
|
2507
2571
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2508
2572
|
"isSource": true,
|
|
@@ -2521,7 +2585,11 @@
|
|
|
2521
2585
|
},
|
|
2522
2586
|
"border-attention-muted": {
|
|
2523
2587
|
"key": "{border.attention.muted}",
|
|
2524
|
-
"$value":
|
|
2588
|
+
"$value": {
|
|
2589
|
+
"color": "#d4a72c66",
|
|
2590
|
+
"style": "solid",
|
|
2591
|
+
"width": ["0.0625rem", "1px"]
|
|
2592
|
+
},
|
|
2525
2593
|
"$type": "border",
|
|
2526
2594
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2527
2595
|
"isSource": true,
|
|
@@ -2540,7 +2608,11 @@
|
|
|
2540
2608
|
},
|
|
2541
2609
|
"border-closed-emphasis": {
|
|
2542
2610
|
"key": "{border.closed.emphasis}",
|
|
2543
|
-
"$value":
|
|
2611
|
+
"$value": {
|
|
2612
|
+
"color": "#cf222e",
|
|
2613
|
+
"style": "solid",
|
|
2614
|
+
"width": ["0.0625rem", "1px"]
|
|
2615
|
+
},
|
|
2544
2616
|
"$type": "border",
|
|
2545
2617
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2546
2618
|
"isSource": true,
|
|
@@ -2555,7 +2627,11 @@
|
|
|
2555
2627
|
},
|
|
2556
2628
|
"border-closed-muted": {
|
|
2557
2629
|
"key": "{border.closed.muted}",
|
|
2558
|
-
"$value":
|
|
2630
|
+
"$value": {
|
|
2631
|
+
"color": "#ff818266",
|
|
2632
|
+
"style": "solid",
|
|
2633
|
+
"width": ["0.0625rem", "1px"]
|
|
2634
|
+
},
|
|
2559
2635
|
"$type": "border",
|
|
2560
2636
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2561
2637
|
"isSource": true,
|
|
@@ -2570,7 +2646,11 @@
|
|
|
2570
2646
|
},
|
|
2571
2647
|
"border-danger-emphasis": {
|
|
2572
2648
|
"key": "{border.danger.emphasis}",
|
|
2573
|
-
"$value":
|
|
2649
|
+
"$value": {
|
|
2650
|
+
"color": "#cf222e",
|
|
2651
|
+
"style": "solid",
|
|
2652
|
+
"width": ["0.0625rem", "1px"]
|
|
2653
|
+
},
|
|
2574
2654
|
"$type": "border",
|
|
2575
2655
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2576
2656
|
"isSource": true,
|
|
@@ -2589,7 +2669,11 @@
|
|
|
2589
2669
|
},
|
|
2590
2670
|
"border-danger-muted": {
|
|
2591
2671
|
"key": "{border.danger.muted}",
|
|
2592
|
-
"$value":
|
|
2672
|
+
"$value": {
|
|
2673
|
+
"color": "#ff818266",
|
|
2674
|
+
"style": "solid",
|
|
2675
|
+
"width": ["0.0625rem", "1px"]
|
|
2676
|
+
},
|
|
2593
2677
|
"$type": "border",
|
|
2594
2678
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2595
2679
|
"isSource": true,
|
|
@@ -2608,7 +2692,11 @@
|
|
|
2608
2692
|
},
|
|
2609
2693
|
"border-default": {
|
|
2610
2694
|
"key": "{border.default}",
|
|
2611
|
-
"$value":
|
|
2695
|
+
"$value": {
|
|
2696
|
+
"color": "#d1d9e0",
|
|
2697
|
+
"style": "solid",
|
|
2698
|
+
"width": ["0.0625rem", "1px"]
|
|
2699
|
+
},
|
|
2612
2700
|
"$type": "border",
|
|
2613
2701
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2614
2702
|
"isSource": true,
|
|
@@ -2627,7 +2715,11 @@
|
|
|
2627
2715
|
},
|
|
2628
2716
|
"border-disabled": {
|
|
2629
2717
|
"key": "{border.disabled}",
|
|
2630
|
-
"$value":
|
|
2718
|
+
"$value": {
|
|
2719
|
+
"color": "#818b981a",
|
|
2720
|
+
"style": "solid",
|
|
2721
|
+
"width": ["0.0625rem", "1px"]
|
|
2722
|
+
},
|
|
2631
2723
|
"$type": "border",
|
|
2632
2724
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2633
2725
|
"isSource": true,
|
|
@@ -2646,7 +2738,11 @@
|
|
|
2646
2738
|
},
|
|
2647
2739
|
"border-done-emphasis": {
|
|
2648
2740
|
"key": "{border.done.emphasis}",
|
|
2649
|
-
"$value":
|
|
2741
|
+
"$value": {
|
|
2742
|
+
"color": "#8250df",
|
|
2743
|
+
"style": "solid",
|
|
2744
|
+
"width": ["0.0625rem", "1px"]
|
|
2745
|
+
},
|
|
2650
2746
|
"$type": "border",
|
|
2651
2747
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2652
2748
|
"isSource": true,
|
|
@@ -2665,7 +2761,11 @@
|
|
|
2665
2761
|
},
|
|
2666
2762
|
"border-done-muted": {
|
|
2667
2763
|
"key": "{border.done.muted}",
|
|
2668
|
-
"$value":
|
|
2764
|
+
"$value": {
|
|
2765
|
+
"color": "#c297ff66",
|
|
2766
|
+
"style": "solid",
|
|
2767
|
+
"width": ["0.0625rem", "1px"]
|
|
2768
|
+
},
|
|
2669
2769
|
"$type": "border",
|
|
2670
2770
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2671
2771
|
"isSource": true,
|
|
@@ -2684,7 +2784,11 @@
|
|
|
2684
2784
|
},
|
|
2685
2785
|
"border-emphasis": {
|
|
2686
2786
|
"key": "{border.emphasis}",
|
|
2687
|
-
"$value":
|
|
2787
|
+
"$value": {
|
|
2788
|
+
"color": "#818b98",
|
|
2789
|
+
"style": "solid",
|
|
2790
|
+
"width": ["0.0625rem", "1px"]
|
|
2791
|
+
},
|
|
2688
2792
|
"$type": "border",
|
|
2689
2793
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2690
2794
|
"isSource": true,
|
|
@@ -2703,7 +2807,11 @@
|
|
|
2703
2807
|
},
|
|
2704
2808
|
"border-muted": {
|
|
2705
2809
|
"key": "{border.muted}",
|
|
2706
|
-
"$value":
|
|
2810
|
+
"$value": {
|
|
2811
|
+
"color": "#d1d9e0b3",
|
|
2812
|
+
"style": "solid",
|
|
2813
|
+
"width": ["0.0625rem", "1px"]
|
|
2814
|
+
},
|
|
2707
2815
|
"$type": "border",
|
|
2708
2816
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2709
2817
|
"isSource": true,
|
|
@@ -2722,7 +2830,11 @@
|
|
|
2722
2830
|
},
|
|
2723
2831
|
"border-neutral-emphasis": {
|
|
2724
2832
|
"key": "{border.neutral.emphasis}",
|
|
2725
|
-
"$value":
|
|
2833
|
+
"$value": {
|
|
2834
|
+
"color": "#59636e",
|
|
2835
|
+
"style": "solid",
|
|
2836
|
+
"width": ["0.0625rem", "1px"]
|
|
2837
|
+
},
|
|
2726
2838
|
"$type": "border",
|
|
2727
2839
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2728
2840
|
"isSource": true,
|
|
@@ -2741,7 +2853,11 @@
|
|
|
2741
2853
|
},
|
|
2742
2854
|
"border-neutral-muted": {
|
|
2743
2855
|
"key": "{border.neutral.muted}",
|
|
2744
|
-
"$value":
|
|
2856
|
+
"$value": {
|
|
2857
|
+
"color": "#d1d9e0b3",
|
|
2858
|
+
"style": "solid",
|
|
2859
|
+
"width": ["0.0625rem", "1px"]
|
|
2860
|
+
},
|
|
2745
2861
|
"$type": "border",
|
|
2746
2862
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2747
2863
|
"isSource": true,
|
|
@@ -2760,7 +2876,11 @@
|
|
|
2760
2876
|
},
|
|
2761
2877
|
"border-open-emphasis": {
|
|
2762
2878
|
"key": "{border.open.emphasis}",
|
|
2763
|
-
"$value":
|
|
2879
|
+
"$value": {
|
|
2880
|
+
"color": "#0969da",
|
|
2881
|
+
"style": "solid",
|
|
2882
|
+
"width": ["0.0625rem", "1px"]
|
|
2883
|
+
},
|
|
2764
2884
|
"$type": "border",
|
|
2765
2885
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2766
2886
|
"isSource": true,
|
|
@@ -2775,7 +2895,11 @@
|
|
|
2775
2895
|
},
|
|
2776
2896
|
"border-open-muted": {
|
|
2777
2897
|
"key": "{border.open.muted}",
|
|
2778
|
-
"$value":
|
|
2898
|
+
"$value": {
|
|
2899
|
+
"color": "#54aeff66",
|
|
2900
|
+
"style": "solid",
|
|
2901
|
+
"width": ["0.0625rem", "1px"]
|
|
2902
|
+
},
|
|
2779
2903
|
"$type": "border",
|
|
2780
2904
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2781
2905
|
"isSource": true,
|
|
@@ -2790,7 +2914,11 @@
|
|
|
2790
2914
|
},
|
|
2791
2915
|
"border-severe-emphasis": {
|
|
2792
2916
|
"key": "{border.severe.emphasis}",
|
|
2793
|
-
"$value":
|
|
2917
|
+
"$value": {
|
|
2918
|
+
"color": "#cf222e",
|
|
2919
|
+
"style": "solid",
|
|
2920
|
+
"width": ["0.0625rem", "1px"]
|
|
2921
|
+
},
|
|
2794
2922
|
"$type": "border",
|
|
2795
2923
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2796
2924
|
"isSource": true,
|
|
@@ -2809,7 +2937,11 @@
|
|
|
2809
2937
|
},
|
|
2810
2938
|
"border-severe-muted": {
|
|
2811
2939
|
"key": "{border.severe.muted}",
|
|
2812
|
-
"$value":
|
|
2940
|
+
"$value": {
|
|
2941
|
+
"color": "#ff818266",
|
|
2942
|
+
"style": "solid",
|
|
2943
|
+
"width": ["0.0625rem", "1px"]
|
|
2944
|
+
},
|
|
2813
2945
|
"$type": "border",
|
|
2814
2946
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2815
2947
|
"isSource": true,
|
|
@@ -2828,7 +2960,11 @@
|
|
|
2828
2960
|
},
|
|
2829
2961
|
"border-sponsors-emphasis": {
|
|
2830
2962
|
"key": "{border.sponsors.emphasis}",
|
|
2831
|
-
"$value":
|
|
2963
|
+
"$value": {
|
|
2964
|
+
"color": "#bf3989",
|
|
2965
|
+
"style": "solid",
|
|
2966
|
+
"width": ["0.0625rem", "1px"]
|
|
2967
|
+
},
|
|
2832
2968
|
"$type": "border",
|
|
2833
2969
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2834
2970
|
"isSource": true,
|
|
@@ -2847,7 +2983,11 @@
|
|
|
2847
2983
|
},
|
|
2848
2984
|
"border-sponsors-muted": {
|
|
2849
2985
|
"key": "{border.sponsors.muted}",
|
|
2850
|
-
"$value":
|
|
2986
|
+
"$value": {
|
|
2987
|
+
"color": "#ff80c866",
|
|
2988
|
+
"style": "solid",
|
|
2989
|
+
"width": ["0.0625rem", "1px"]
|
|
2990
|
+
},
|
|
2851
2991
|
"$type": "border",
|
|
2852
2992
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2853
2993
|
"isSource": true,
|
|
@@ -2866,7 +3006,11 @@
|
|
|
2866
3006
|
},
|
|
2867
3007
|
"border-success-emphasis": {
|
|
2868
3008
|
"key": "{border.success.emphasis}",
|
|
2869
|
-
"$value":
|
|
3009
|
+
"$value": {
|
|
3010
|
+
"color": "#0969da",
|
|
3011
|
+
"style": "solid",
|
|
3012
|
+
"width": ["0.0625rem", "1px"]
|
|
3013
|
+
},
|
|
2870
3014
|
"$type": "border",
|
|
2871
3015
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2872
3016
|
"isSource": true,
|
|
@@ -2885,7 +3029,11 @@
|
|
|
2885
3029
|
},
|
|
2886
3030
|
"border-success-muted": {
|
|
2887
3031
|
"key": "{border.success.muted}",
|
|
2888
|
-
"$value":
|
|
3032
|
+
"$value": {
|
|
3033
|
+
"color": "#54aeff66",
|
|
3034
|
+
"style": "solid",
|
|
3035
|
+
"width": ["0.0625rem", "1px"]
|
|
3036
|
+
},
|
|
2889
3037
|
"$type": "border",
|
|
2890
3038
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2891
3039
|
"isSource": true,
|
|
@@ -2904,7 +3052,11 @@
|
|
|
2904
3052
|
},
|
|
2905
3053
|
"border-transparent": {
|
|
2906
3054
|
"key": "{border.transparent}",
|
|
2907
|
-
"$value":
|
|
3055
|
+
"$value": {
|
|
3056
|
+
"color": "#ffffff00",
|
|
3057
|
+
"style": "solid",
|
|
3058
|
+
"width": ["0.0625rem", "1px"]
|
|
3059
|
+
},
|
|
2908
3060
|
"$type": "border",
|
|
2909
3061
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2910
3062
|
"isSource": true,
|
|
@@ -2923,7 +3075,11 @@
|
|
|
2923
3075
|
},
|
|
2924
3076
|
"border-upsell-emphasis": {
|
|
2925
3077
|
"key": "{border.upsell.emphasis}",
|
|
2926
|
-
"$value":
|
|
3078
|
+
"$value": {
|
|
3079
|
+
"color": "#8250df",
|
|
3080
|
+
"style": "solid",
|
|
3081
|
+
"width": ["0.0625rem", "1px"]
|
|
3082
|
+
},
|
|
2927
3083
|
"$type": "border",
|
|
2928
3084
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2929
3085
|
"isSource": true,
|
|
@@ -2942,7 +3098,11 @@
|
|
|
2942
3098
|
},
|
|
2943
3099
|
"border-upsell-muted": {
|
|
2944
3100
|
"key": "{border.upsell.muted}",
|
|
2945
|
-
"$value":
|
|
3101
|
+
"$value": {
|
|
3102
|
+
"color": "#c297ff66",
|
|
3103
|
+
"style": "solid",
|
|
3104
|
+
"width": ["0.0625rem", "1px"]
|
|
3105
|
+
},
|
|
2946
3106
|
"$type": "border",
|
|
2947
3107
|
"filePath": "src/tokens/functional/border/border.json5",
|
|
2948
3108
|
"isSource": true,
|
|
@@ -6934,7 +7094,7 @@
|
|
|
6934
7094
|
},
|
|
6935
7095
|
"button-danger-shadow-selected": {
|
|
6936
7096
|
"key": "{button.danger.shadow.selected}",
|
|
6937
|
-
"$value": "inset
|
|
7097
|
+
"$value": "inset 0 1px 0 0 #4c001433",
|
|
6938
7098
|
"$type": "shadow",
|
|
6939
7099
|
"$extensions": {
|
|
6940
7100
|
"org.primer.figma": {
|
|
@@ -6947,10 +7107,22 @@
|
|
|
6947
7107
|
{
|
|
6948
7108
|
"color": "#471700",
|
|
6949
7109
|
"alpha": 0.2,
|
|
6950
|
-
"offsetX":
|
|
6951
|
-
|
|
6952
|
-
|
|
6953
|
-
|
|
7110
|
+
"offsetX": {
|
|
7111
|
+
"value": 0,
|
|
7112
|
+
"unit": "px"
|
|
7113
|
+
},
|
|
7114
|
+
"offsetY": {
|
|
7115
|
+
"value": 1,
|
|
7116
|
+
"unit": "px"
|
|
7117
|
+
},
|
|
7118
|
+
"blur": {
|
|
7119
|
+
"value": 0,
|
|
7120
|
+
"unit": "px"
|
|
7121
|
+
},
|
|
7122
|
+
"spread": {
|
|
7123
|
+
"value": 0,
|
|
7124
|
+
"unit": "px"
|
|
7125
|
+
},
|
|
6954
7126
|
"inset": true
|
|
6955
7127
|
}
|
|
6956
7128
|
],
|
|
@@ -6963,10 +7135,22 @@
|
|
|
6963
7135
|
{
|
|
6964
7136
|
"color": "#ffffff00",
|
|
6965
7137
|
"alpha": 0,
|
|
6966
|
-
"offsetX":
|
|
6967
|
-
|
|
6968
|
-
|
|
6969
|
-
|
|
7138
|
+
"offsetX": {
|
|
7139
|
+
"value": 0,
|
|
7140
|
+
"unit": "px"
|
|
7141
|
+
},
|
|
7142
|
+
"offsetY": {
|
|
7143
|
+
"value": 0,
|
|
7144
|
+
"unit": "px"
|
|
7145
|
+
},
|
|
7146
|
+
"blur": {
|
|
7147
|
+
"value": 0,
|
|
7148
|
+
"unit": "px"
|
|
7149
|
+
},
|
|
7150
|
+
"spread": {
|
|
7151
|
+
"value": 0,
|
|
7152
|
+
"unit": "px"
|
|
7153
|
+
},
|
|
6970
7154
|
"inset": false
|
|
6971
7155
|
}
|
|
6972
7156
|
],
|
|
@@ -6983,10 +7167,22 @@
|
|
|
6983
7167
|
{
|
|
6984
7168
|
"color": "{base.color.red.9}",
|
|
6985
7169
|
"alpha": 0.2,
|
|
6986
|
-
"offsetX":
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
7170
|
+
"offsetX": {
|
|
7171
|
+
"value": 0,
|
|
7172
|
+
"unit": "px"
|
|
7173
|
+
},
|
|
7174
|
+
"offsetY": {
|
|
7175
|
+
"value": 1,
|
|
7176
|
+
"unit": "px"
|
|
7177
|
+
},
|
|
7178
|
+
"blur": {
|
|
7179
|
+
"value": 0,
|
|
7180
|
+
"unit": "px"
|
|
7181
|
+
},
|
|
7182
|
+
"spread": {
|
|
7183
|
+
"value": 0,
|
|
7184
|
+
"unit": "px"
|
|
7185
|
+
},
|
|
6990
7186
|
"inset": true
|
|
6991
7187
|
}
|
|
6992
7188
|
],
|
|
@@ -7002,10 +7198,22 @@
|
|
|
7002
7198
|
{
|
|
7003
7199
|
"color": "{base.color.orange.9}",
|
|
7004
7200
|
"alpha": 0.2,
|
|
7005
|
-
"offsetX":
|
|
7006
|
-
|
|
7007
|
-
|
|
7008
|
-
|
|
7201
|
+
"offsetX": {
|
|
7202
|
+
"value": 0,
|
|
7203
|
+
"unit": "px"
|
|
7204
|
+
},
|
|
7205
|
+
"offsetY": {
|
|
7206
|
+
"value": 1,
|
|
7207
|
+
"unit": "px"
|
|
7208
|
+
},
|
|
7209
|
+
"blur": {
|
|
7210
|
+
"value": 0,
|
|
7211
|
+
"unit": "px"
|
|
7212
|
+
},
|
|
7213
|
+
"spread": {
|
|
7214
|
+
"value": 0,
|
|
7215
|
+
"unit": "px"
|
|
7216
|
+
},
|
|
7009
7217
|
"inset": true
|
|
7010
7218
|
}
|
|
7011
7219
|
],
|
|
@@ -7018,10 +7226,22 @@
|
|
|
7018
7226
|
{
|
|
7019
7227
|
"color": "{base.color.transparent}",
|
|
7020
7228
|
"alpha": 0,
|
|
7021
|
-
"offsetX":
|
|
7022
|
-
|
|
7023
|
-
|
|
7024
|
-
|
|
7229
|
+
"offsetX": {
|
|
7230
|
+
"value": 0,
|
|
7231
|
+
"unit": "px"
|
|
7232
|
+
},
|
|
7233
|
+
"offsetY": {
|
|
7234
|
+
"value": 0,
|
|
7235
|
+
"unit": "px"
|
|
7236
|
+
},
|
|
7237
|
+
"blur": {
|
|
7238
|
+
"value": 0,
|
|
7239
|
+
"unit": "px"
|
|
7240
|
+
},
|
|
7241
|
+
"spread": {
|
|
7242
|
+
"value": 0,
|
|
7243
|
+
"unit": "px"
|
|
7244
|
+
},
|
|
7025
7245
|
"inset": false
|
|
7026
7246
|
}
|
|
7027
7247
|
],
|
|
@@ -7397,7 +7617,7 @@
|
|
|
7397
7617
|
},
|
|
7398
7618
|
"button-default-shadow-resting": {
|
|
7399
7619
|
"key": "{button.default.shadow.resting}",
|
|
7400
|
-
"$value": "
|
|
7620
|
+
"$value": "0 1px 0 0 #1f23280a",
|
|
7401
7621
|
"$type": "shadow",
|
|
7402
7622
|
"$extensions": {
|
|
7403
7623
|
"org.primer.figma": {
|
|
@@ -7410,10 +7630,22 @@
|
|
|
7410
7630
|
{
|
|
7411
7631
|
"color": "#ffffff00",
|
|
7412
7632
|
"alpha": 0,
|
|
7413
|
-
"offsetX":
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7633
|
+
"offsetX": {
|
|
7634
|
+
"value": 0,
|
|
7635
|
+
"unit": "px"
|
|
7636
|
+
},
|
|
7637
|
+
"offsetY": {
|
|
7638
|
+
"value": 0,
|
|
7639
|
+
"unit": "px"
|
|
7640
|
+
},
|
|
7641
|
+
"blur": {
|
|
7642
|
+
"value": 0,
|
|
7643
|
+
"unit": "px"
|
|
7644
|
+
},
|
|
7645
|
+
"spread": {
|
|
7646
|
+
"value": 0,
|
|
7647
|
+
"unit": "px"
|
|
7648
|
+
},
|
|
7417
7649
|
"inset": false
|
|
7418
7650
|
}
|
|
7419
7651
|
],
|
|
@@ -7430,10 +7662,22 @@
|
|
|
7430
7662
|
{
|
|
7431
7663
|
"color": "{base.color.neutral.13}",
|
|
7432
7664
|
"alpha": 0.04,
|
|
7433
|
-
"offsetX":
|
|
7434
|
-
|
|
7435
|
-
|
|
7436
|
-
|
|
7665
|
+
"offsetX": {
|
|
7666
|
+
"value": 0,
|
|
7667
|
+
"unit": "px"
|
|
7668
|
+
},
|
|
7669
|
+
"offsetY": {
|
|
7670
|
+
"value": 1,
|
|
7671
|
+
"unit": "px"
|
|
7672
|
+
},
|
|
7673
|
+
"blur": {
|
|
7674
|
+
"value": 0,
|
|
7675
|
+
"unit": "px"
|
|
7676
|
+
},
|
|
7677
|
+
"spread": {
|
|
7678
|
+
"value": 0,
|
|
7679
|
+
"unit": "px"
|
|
7680
|
+
},
|
|
7437
7681
|
"inset": false
|
|
7438
7682
|
}
|
|
7439
7683
|
],
|
|
@@ -7449,10 +7693,22 @@
|
|
|
7449
7693
|
{
|
|
7450
7694
|
"color": "{base.color.transparent}",
|
|
7451
7695
|
"alpha": 0,
|
|
7452
|
-
"offsetX":
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7696
|
+
"offsetX": {
|
|
7697
|
+
"value": 0,
|
|
7698
|
+
"unit": "px"
|
|
7699
|
+
},
|
|
7700
|
+
"offsetY": {
|
|
7701
|
+
"value": 0,
|
|
7702
|
+
"unit": "px"
|
|
7703
|
+
},
|
|
7704
|
+
"blur": {
|
|
7705
|
+
"value": 0,
|
|
7706
|
+
"unit": "px"
|
|
7707
|
+
},
|
|
7708
|
+
"spread": {
|
|
7709
|
+
"value": 0,
|
|
7710
|
+
"unit": "px"
|
|
7711
|
+
},
|
|
7456
7712
|
"inset": false
|
|
7457
7713
|
}
|
|
7458
7714
|
],
|
|
@@ -9156,7 +9412,7 @@
|
|
|
9156
9412
|
},
|
|
9157
9413
|
"button-outline-shadow-selected": {
|
|
9158
9414
|
"key": "{button.outline.shadow.selected}",
|
|
9159
|
-
"$value": "inset
|
|
9415
|
+
"$value": "inset 0 1px 0 0 #00215533",
|
|
9160
9416
|
"$type": "shadow",
|
|
9161
9417
|
"$extensions": {
|
|
9162
9418
|
"org.primer.figma": {
|
|
@@ -9169,10 +9425,22 @@
|
|
|
9169
9425
|
{
|
|
9170
9426
|
"color": "#ffffff00",
|
|
9171
9427
|
"alpha": 0,
|
|
9172
|
-
"offsetX":
|
|
9173
|
-
|
|
9174
|
-
|
|
9175
|
-
|
|
9428
|
+
"offsetX": {
|
|
9429
|
+
"value": 0,
|
|
9430
|
+
"unit": "px"
|
|
9431
|
+
},
|
|
9432
|
+
"offsetY": {
|
|
9433
|
+
"value": 0,
|
|
9434
|
+
"unit": "px"
|
|
9435
|
+
},
|
|
9436
|
+
"blur": {
|
|
9437
|
+
"value": 0,
|
|
9438
|
+
"unit": "px"
|
|
9439
|
+
},
|
|
9440
|
+
"spread": {
|
|
9441
|
+
"value": 0,
|
|
9442
|
+
"unit": "px"
|
|
9443
|
+
},
|
|
9176
9444
|
"inset": false
|
|
9177
9445
|
}
|
|
9178
9446
|
],
|
|
@@ -9189,10 +9457,22 @@
|
|
|
9189
9457
|
{
|
|
9190
9458
|
"color": "{base.color.blue.9}",
|
|
9191
9459
|
"alpha": 0.2,
|
|
9192
|
-
"offsetX":
|
|
9193
|
-
|
|
9194
|
-
|
|
9195
|
-
|
|
9460
|
+
"offsetX": {
|
|
9461
|
+
"value": 0,
|
|
9462
|
+
"unit": "px"
|
|
9463
|
+
},
|
|
9464
|
+
"offsetY": {
|
|
9465
|
+
"value": 1,
|
|
9466
|
+
"unit": "px"
|
|
9467
|
+
},
|
|
9468
|
+
"blur": {
|
|
9469
|
+
"value": 0,
|
|
9470
|
+
"unit": "px"
|
|
9471
|
+
},
|
|
9472
|
+
"spread": {
|
|
9473
|
+
"value": 0,
|
|
9474
|
+
"unit": "px"
|
|
9475
|
+
},
|
|
9196
9476
|
"inset": true
|
|
9197
9477
|
}
|
|
9198
9478
|
],
|
|
@@ -9208,10 +9488,22 @@
|
|
|
9208
9488
|
{
|
|
9209
9489
|
"color": "{base.color.transparent}",
|
|
9210
9490
|
"alpha": 0,
|
|
9211
|
-
"offsetX":
|
|
9212
|
-
|
|
9213
|
-
|
|
9214
|
-
|
|
9491
|
+
"offsetX": {
|
|
9492
|
+
"value": 0,
|
|
9493
|
+
"unit": "px"
|
|
9494
|
+
},
|
|
9495
|
+
"offsetY": {
|
|
9496
|
+
"value": 0,
|
|
9497
|
+
"unit": "px"
|
|
9498
|
+
},
|
|
9499
|
+
"blur": {
|
|
9500
|
+
"value": 0,
|
|
9501
|
+
"unit": "px"
|
|
9502
|
+
},
|
|
9503
|
+
"spread": {
|
|
9504
|
+
"value": 0,
|
|
9505
|
+
"unit": "px"
|
|
9506
|
+
},
|
|
9215
9507
|
"inset": false
|
|
9216
9508
|
}
|
|
9217
9509
|
],
|
|
@@ -10364,7 +10656,7 @@
|
|
|
10364
10656
|
},
|
|
10365
10657
|
"button-primary-shadow-selected": {
|
|
10366
10658
|
"key": "{button.primary.shadow.selected}",
|
|
10367
|
-
"$value": "inset
|
|
10659
|
+
"$value": "inset 0 1px 0 0 #0021554d",
|
|
10368
10660
|
"$type": "shadow",
|
|
10369
10661
|
"$extensions": {
|
|
10370
10662
|
"org.primer.figma": {
|
|
@@ -10377,10 +10669,22 @@
|
|
|
10377
10669
|
{
|
|
10378
10670
|
"color": "#002155",
|
|
10379
10671
|
"alpha": 0.3,
|
|
10380
|
-
"offsetX":
|
|
10381
|
-
|
|
10382
|
-
|
|
10383
|
-
|
|
10672
|
+
"offsetX": {
|
|
10673
|
+
"value": 0,
|
|
10674
|
+
"unit": "px"
|
|
10675
|
+
},
|
|
10676
|
+
"offsetY": {
|
|
10677
|
+
"value": 1,
|
|
10678
|
+
"unit": "px"
|
|
10679
|
+
},
|
|
10680
|
+
"blur": {
|
|
10681
|
+
"value": 0,
|
|
10682
|
+
"unit": "px"
|
|
10683
|
+
},
|
|
10684
|
+
"spread": {
|
|
10685
|
+
"value": 0,
|
|
10686
|
+
"unit": "px"
|
|
10687
|
+
},
|
|
10384
10688
|
"inset": true
|
|
10385
10689
|
}
|
|
10386
10690
|
],
|
|
@@ -10393,10 +10697,22 @@
|
|
|
10393
10697
|
{
|
|
10394
10698
|
"color": "#002155",
|
|
10395
10699
|
"alpha": 0.3,
|
|
10396
|
-
"offsetX":
|
|
10397
|
-
|
|
10398
|
-
|
|
10399
|
-
|
|
10700
|
+
"offsetX": {
|
|
10701
|
+
"value": 0,
|
|
10702
|
+
"unit": "px"
|
|
10703
|
+
},
|
|
10704
|
+
"offsetY": {
|
|
10705
|
+
"value": 1,
|
|
10706
|
+
"unit": "px"
|
|
10707
|
+
},
|
|
10708
|
+
"blur": {
|
|
10709
|
+
"value": 0,
|
|
10710
|
+
"unit": "px"
|
|
10711
|
+
},
|
|
10712
|
+
"spread": {
|
|
10713
|
+
"value": 0,
|
|
10714
|
+
"unit": "px"
|
|
10715
|
+
},
|
|
10400
10716
|
"inset": true
|
|
10401
10717
|
}
|
|
10402
10718
|
],
|
|
@@ -10409,10 +10725,22 @@
|
|
|
10409
10725
|
{
|
|
10410
10726
|
"color": "#ffffff00",
|
|
10411
10727
|
"alpha": 0,
|
|
10412
|
-
"offsetX":
|
|
10413
|
-
|
|
10414
|
-
|
|
10415
|
-
|
|
10728
|
+
"offsetX": {
|
|
10729
|
+
"value": 0,
|
|
10730
|
+
"unit": "px"
|
|
10731
|
+
},
|
|
10732
|
+
"offsetY": {
|
|
10733
|
+
"value": 0,
|
|
10734
|
+
"unit": "px"
|
|
10735
|
+
},
|
|
10736
|
+
"blur": {
|
|
10737
|
+
"value": 0,
|
|
10738
|
+
"unit": "px"
|
|
10739
|
+
},
|
|
10740
|
+
"spread": {
|
|
10741
|
+
"value": 0,
|
|
10742
|
+
"unit": "px"
|
|
10743
|
+
},
|
|
10416
10744
|
"inset": false
|
|
10417
10745
|
}
|
|
10418
10746
|
],
|
|
@@ -10429,10 +10757,22 @@
|
|
|
10429
10757
|
{
|
|
10430
10758
|
"color": "{base.color.blue.9}",
|
|
10431
10759
|
"alpha": 0.3,
|
|
10432
|
-
"offsetX":
|
|
10433
|
-
|
|
10434
|
-
|
|
10435
|
-
|
|
10760
|
+
"offsetX": {
|
|
10761
|
+
"value": 0,
|
|
10762
|
+
"unit": "px"
|
|
10763
|
+
},
|
|
10764
|
+
"offsetY": {
|
|
10765
|
+
"value": 1,
|
|
10766
|
+
"unit": "px"
|
|
10767
|
+
},
|
|
10768
|
+
"blur": {
|
|
10769
|
+
"value": 0,
|
|
10770
|
+
"unit": "px"
|
|
10771
|
+
},
|
|
10772
|
+
"spread": {
|
|
10773
|
+
"value": 0,
|
|
10774
|
+
"unit": "px"
|
|
10775
|
+
},
|
|
10436
10776
|
"inset": true
|
|
10437
10777
|
}
|
|
10438
10778
|
],
|
|
@@ -10448,10 +10788,22 @@
|
|
|
10448
10788
|
{
|
|
10449
10789
|
"color": "{base.color.blue.9}",
|
|
10450
10790
|
"alpha": 0.3,
|
|
10451
|
-
"offsetX":
|
|
10452
|
-
|
|
10453
|
-
|
|
10454
|
-
|
|
10791
|
+
"offsetX": {
|
|
10792
|
+
"value": 0,
|
|
10793
|
+
"unit": "px"
|
|
10794
|
+
},
|
|
10795
|
+
"offsetY": {
|
|
10796
|
+
"value": 1,
|
|
10797
|
+
"unit": "px"
|
|
10798
|
+
},
|
|
10799
|
+
"blur": {
|
|
10800
|
+
"value": 0,
|
|
10801
|
+
"unit": "px"
|
|
10802
|
+
},
|
|
10803
|
+
"spread": {
|
|
10804
|
+
"value": 0,
|
|
10805
|
+
"unit": "px"
|
|
10806
|
+
},
|
|
10455
10807
|
"inset": true
|
|
10456
10808
|
}
|
|
10457
10809
|
],
|
|
@@ -10464,10 +10816,22 @@
|
|
|
10464
10816
|
{
|
|
10465
10817
|
"color": "{base.color.blue.9}",
|
|
10466
10818
|
"alpha": 0.3,
|
|
10467
|
-
"offsetX":
|
|
10468
|
-
|
|
10469
|
-
|
|
10470
|
-
|
|
10819
|
+
"offsetX": {
|
|
10820
|
+
"value": 0,
|
|
10821
|
+
"unit": "px"
|
|
10822
|
+
},
|
|
10823
|
+
"offsetY": {
|
|
10824
|
+
"value": 1,
|
|
10825
|
+
"unit": "px"
|
|
10826
|
+
},
|
|
10827
|
+
"blur": {
|
|
10828
|
+
"value": 0,
|
|
10829
|
+
"unit": "px"
|
|
10830
|
+
},
|
|
10831
|
+
"spread": {
|
|
10832
|
+
"value": 0,
|
|
10833
|
+
"unit": "px"
|
|
10834
|
+
},
|
|
10471
10835
|
"inset": true
|
|
10472
10836
|
}
|
|
10473
10837
|
],
|
|
@@ -10480,10 +10844,22 @@
|
|
|
10480
10844
|
{
|
|
10481
10845
|
"color": "{base.color.transparent}",
|
|
10482
10846
|
"alpha": 0,
|
|
10483
|
-
"offsetX":
|
|
10484
|
-
|
|
10485
|
-
|
|
10486
|
-
|
|
10847
|
+
"offsetX": {
|
|
10848
|
+
"value": 0,
|
|
10849
|
+
"unit": "px"
|
|
10850
|
+
},
|
|
10851
|
+
"offsetY": {
|
|
10852
|
+
"value": 0,
|
|
10853
|
+
"unit": "px"
|
|
10854
|
+
},
|
|
10855
|
+
"blur": {
|
|
10856
|
+
"value": 0,
|
|
10857
|
+
"unit": "px"
|
|
10858
|
+
},
|
|
10859
|
+
"spread": {
|
|
10860
|
+
"value": 0,
|
|
10861
|
+
"unit": "px"
|
|
10862
|
+
},
|
|
10487
10863
|
"inset": false
|
|
10488
10864
|
}
|
|
10489
10865
|
],
|
|
@@ -37220,6 +37596,10 @@
|
|
|
37220
37596
|
},
|
|
37221
37597
|
"org.primer.overrides": {
|
|
37222
37598
|
"dark": "#ffffff"
|
|
37599
|
+
},
|
|
37600
|
+
"org.primer.llm": {
|
|
37601
|
+
"doNotUse": true,
|
|
37602
|
+
"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."
|
|
37223
37603
|
}
|
|
37224
37604
|
},
|
|
37225
37605
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -37236,6 +37616,10 @@
|
|
|
37236
37616
|
},
|
|
37237
37617
|
"org.primer.overrides": {
|
|
37238
37618
|
"dark": "{base.color.neutral.0}"
|
|
37619
|
+
},
|
|
37620
|
+
"org.primer.llm": {
|
|
37621
|
+
"doNotUse": true,
|
|
37622
|
+
"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."
|
|
37239
37623
|
}
|
|
37240
37624
|
},
|
|
37241
37625
|
"key": "{fgColor.black}"
|
|
@@ -38209,6 +38593,10 @@
|
|
|
38209
38593
|
},
|
|
38210
38594
|
"org.primer.overrides": {
|
|
38211
38595
|
"dark": "#1f2328"
|
|
38596
|
+
},
|
|
38597
|
+
"org.primer.llm": {
|
|
38598
|
+
"doNotUse": true,
|
|
38599
|
+
"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."
|
|
38212
38600
|
}
|
|
38213
38601
|
},
|
|
38214
38602
|
"filePath": "src/tokens/functional/color/fgColor.json5",
|
|
@@ -38225,6 +38613,10 @@
|
|
|
38225
38613
|
},
|
|
38226
38614
|
"org.primer.overrides": {
|
|
38227
38615
|
"dark": "{base.color.neutral.13}"
|
|
38616
|
+
},
|
|
38617
|
+
"org.primer.llm": {
|
|
38618
|
+
"doNotUse": true,
|
|
38619
|
+
"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."
|
|
38228
38620
|
}
|
|
38229
38621
|
},
|
|
38230
38622
|
"key": "{fgColor.white}"
|
|
@@ -38250,7 +38642,10 @@
|
|
|
38250
38642
|
"$value": {
|
|
38251
38643
|
"color": "{focus.outlineColor}",
|
|
38252
38644
|
"style": "solid",
|
|
38253
|
-
"width":
|
|
38645
|
+
"width": {
|
|
38646
|
+
"value": 2,
|
|
38647
|
+
"unit": "px"
|
|
38648
|
+
}
|
|
38254
38649
|
},
|
|
38255
38650
|
"$type": "border",
|
|
38256
38651
|
"$description": "Focus ring outline for keyboard navigation and accessibility.",
|
|
@@ -47401,7 +47796,7 @@
|
|
|
47401
47796
|
},
|
|
47402
47797
|
"shadow-floating-large": {
|
|
47403
47798
|
"key": "{shadow.floating.large}",
|
|
47404
|
-
"$value": "
|
|
47799
|
+
"$value": "0 0 0 1px #d1d9e0, 0 40px 80px 0 #25292e3d",
|
|
47405
47800
|
"$type": "shadow",
|
|
47406
47801
|
"$description": "Large floating shadow for modals and dialogs",
|
|
47407
47802
|
"$extensions": {
|
|
@@ -47415,18 +47810,42 @@
|
|
|
47415
47810
|
{
|
|
47416
47811
|
"color": "#d1d9e080",
|
|
47417
47812
|
"alpha": 1,
|
|
47418
|
-
"offsetX":
|
|
47419
|
-
|
|
47420
|
-
|
|
47421
|
-
|
|
47813
|
+
"offsetX": {
|
|
47814
|
+
"value": 0,
|
|
47815
|
+
"unit": "px"
|
|
47816
|
+
},
|
|
47817
|
+
"offsetY": {
|
|
47818
|
+
"value": 0,
|
|
47819
|
+
"unit": "px"
|
|
47820
|
+
},
|
|
47821
|
+
"blur": {
|
|
47822
|
+
"value": 0,
|
|
47823
|
+
"unit": "px"
|
|
47824
|
+
},
|
|
47825
|
+
"spread": {
|
|
47826
|
+
"value": 1,
|
|
47827
|
+
"unit": "px"
|
|
47828
|
+
}
|
|
47422
47829
|
},
|
|
47423
47830
|
{
|
|
47424
47831
|
"color": "#ffffff",
|
|
47425
47832
|
"alpha": 1,
|
|
47426
|
-
"offsetX":
|
|
47427
|
-
|
|
47428
|
-
|
|
47429
|
-
|
|
47833
|
+
"offsetX": {
|
|
47834
|
+
"value": 0,
|
|
47835
|
+
"unit": "px"
|
|
47836
|
+
},
|
|
47837
|
+
"offsetY": {
|
|
47838
|
+
"value": 24,
|
|
47839
|
+
"unit": "px"
|
|
47840
|
+
},
|
|
47841
|
+
"blur": {
|
|
47842
|
+
"value": 48,
|
|
47843
|
+
"unit": "px"
|
|
47844
|
+
},
|
|
47845
|
+
"spread": {
|
|
47846
|
+
"value": 0,
|
|
47847
|
+
"unit": "px"
|
|
47848
|
+
}
|
|
47430
47849
|
}
|
|
47431
47850
|
],
|
|
47432
47851
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47446,18 +47865,42 @@
|
|
|
47446
47865
|
{
|
|
47447
47866
|
"color": "{overlay.borderColor}",
|
|
47448
47867
|
"alpha": 0,
|
|
47449
|
-
"offsetX":
|
|
47450
|
-
|
|
47451
|
-
|
|
47452
|
-
|
|
47868
|
+
"offsetX": {
|
|
47869
|
+
"value": 0,
|
|
47870
|
+
"unit": "px"
|
|
47871
|
+
},
|
|
47872
|
+
"offsetY": {
|
|
47873
|
+
"value": 0,
|
|
47874
|
+
"unit": "px"
|
|
47875
|
+
},
|
|
47876
|
+
"blur": {
|
|
47877
|
+
"value": 0,
|
|
47878
|
+
"unit": "px"
|
|
47879
|
+
},
|
|
47880
|
+
"spread": {
|
|
47881
|
+
"value": 1,
|
|
47882
|
+
"unit": "px"
|
|
47883
|
+
}
|
|
47453
47884
|
},
|
|
47454
47885
|
{
|
|
47455
47886
|
"color": "{base.color.neutral.12}",
|
|
47456
47887
|
"alpha": 0.24,
|
|
47457
|
-
"offsetX":
|
|
47458
|
-
|
|
47459
|
-
|
|
47460
|
-
|
|
47888
|
+
"offsetX": {
|
|
47889
|
+
"value": 0,
|
|
47890
|
+
"unit": "px"
|
|
47891
|
+
},
|
|
47892
|
+
"offsetY": {
|
|
47893
|
+
"value": 40,
|
|
47894
|
+
"unit": "px"
|
|
47895
|
+
},
|
|
47896
|
+
"blur": {
|
|
47897
|
+
"value": 80,
|
|
47898
|
+
"unit": "px"
|
|
47899
|
+
},
|
|
47900
|
+
"spread": {
|
|
47901
|
+
"value": 0,
|
|
47902
|
+
"unit": "px"
|
|
47903
|
+
}
|
|
47461
47904
|
}
|
|
47462
47905
|
],
|
|
47463
47906
|
"$type": "shadow",
|
|
@@ -47473,18 +47916,42 @@
|
|
|
47473
47916
|
{
|
|
47474
47917
|
"color": "{overlay.borderColor}",
|
|
47475
47918
|
"alpha": 1,
|
|
47476
|
-
"offsetX":
|
|
47477
|
-
|
|
47478
|
-
|
|
47479
|
-
|
|
47919
|
+
"offsetX": {
|
|
47920
|
+
"value": 0,
|
|
47921
|
+
"unit": "px"
|
|
47922
|
+
},
|
|
47923
|
+
"offsetY": {
|
|
47924
|
+
"value": 0,
|
|
47925
|
+
"unit": "px"
|
|
47926
|
+
},
|
|
47927
|
+
"blur": {
|
|
47928
|
+
"value": 0,
|
|
47929
|
+
"unit": "px"
|
|
47930
|
+
},
|
|
47931
|
+
"spread": {
|
|
47932
|
+
"value": 1,
|
|
47933
|
+
"unit": "px"
|
|
47934
|
+
}
|
|
47480
47935
|
},
|
|
47481
47936
|
{
|
|
47482
47937
|
"color": "{base.color.neutral.0}",
|
|
47483
47938
|
"alpha": 1,
|
|
47484
|
-
"offsetX":
|
|
47485
|
-
|
|
47486
|
-
|
|
47487
|
-
|
|
47939
|
+
"offsetX": {
|
|
47940
|
+
"value": 0,
|
|
47941
|
+
"unit": "px"
|
|
47942
|
+
},
|
|
47943
|
+
"offsetY": {
|
|
47944
|
+
"value": 24,
|
|
47945
|
+
"unit": "px"
|
|
47946
|
+
},
|
|
47947
|
+
"blur": {
|
|
47948
|
+
"value": 48,
|
|
47949
|
+
"unit": "px"
|
|
47950
|
+
},
|
|
47951
|
+
"spread": {
|
|
47952
|
+
"value": 0,
|
|
47953
|
+
"unit": "px"
|
|
47954
|
+
}
|
|
47488
47955
|
}
|
|
47489
47956
|
],
|
|
47490
47957
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47505,8 +47972,9 @@
|
|
|
47505
47972
|
},
|
|
47506
47973
|
"shadow-floating-legacy": {
|
|
47507
47974
|
"key": "{shadow.floating.legacy}",
|
|
47508
|
-
"$value": "
|
|
47975
|
+
"$value": "0 6px 12px -3px #25292e0a, 0 6px 18px 0 #25292e1f",
|
|
47509
47976
|
"$type": "shadow",
|
|
47977
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47510
47978
|
"$extensions": {
|
|
47511
47979
|
"org.primer.figma": {},
|
|
47512
47980
|
"org.primer.overrides": {
|
|
@@ -47515,24 +47983,52 @@
|
|
|
47515
47983
|
{
|
|
47516
47984
|
"color": "#ffffff",
|
|
47517
47985
|
"alpha": 0.4,
|
|
47518
|
-
"offsetX":
|
|
47519
|
-
|
|
47520
|
-
|
|
47521
|
-
|
|
47986
|
+
"offsetX": {
|
|
47987
|
+
"value": 0,
|
|
47988
|
+
"unit": "px"
|
|
47989
|
+
},
|
|
47990
|
+
"offsetY": {
|
|
47991
|
+
"value": 6,
|
|
47992
|
+
"unit": "px"
|
|
47993
|
+
},
|
|
47994
|
+
"blur": {
|
|
47995
|
+
"value": 12,
|
|
47996
|
+
"unit": "px"
|
|
47997
|
+
},
|
|
47998
|
+
"spread": {
|
|
47999
|
+
"value": -3,
|
|
48000
|
+
"unit": "px"
|
|
48001
|
+
}
|
|
47522
48002
|
},
|
|
47523
48003
|
{
|
|
47524
48004
|
"color": "#ffffff",
|
|
47525
48005
|
"alpha": 0.4,
|
|
47526
|
-
"offsetX":
|
|
47527
|
-
|
|
47528
|
-
|
|
47529
|
-
|
|
48006
|
+
"offsetX": {
|
|
48007
|
+
"value": 0,
|
|
48008
|
+
"unit": "px"
|
|
48009
|
+
},
|
|
48010
|
+
"offsetY": {
|
|
48011
|
+
"value": 6,
|
|
48012
|
+
"unit": "px"
|
|
48013
|
+
},
|
|
48014
|
+
"blur": {
|
|
48015
|
+
"value": 18,
|
|
48016
|
+
"unit": "px"
|
|
48017
|
+
},
|
|
48018
|
+
"spread": {
|
|
48019
|
+
"value": 0,
|
|
48020
|
+
"unit": "px"
|
|
48021
|
+
}
|
|
47530
48022
|
}
|
|
47531
48023
|
],
|
|
47532
48024
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47533
48025
|
"isSource": true,
|
|
47534
48026
|
"$type": "shadow"
|
|
47535
48027
|
}
|
|
48028
|
+
},
|
|
48029
|
+
"org.primer.llm": {
|
|
48030
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48031
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47536
48032
|
}
|
|
47537
48033
|
},
|
|
47538
48034
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47542,21 +48038,46 @@
|
|
|
47542
48038
|
{
|
|
47543
48039
|
"color": "{base.color.neutral.12}",
|
|
47544
48040
|
"alpha": 0.04,
|
|
47545
|
-
"offsetX":
|
|
47546
|
-
|
|
47547
|
-
|
|
47548
|
-
|
|
48041
|
+
"offsetX": {
|
|
48042
|
+
"value": 0,
|
|
48043
|
+
"unit": "px"
|
|
48044
|
+
},
|
|
48045
|
+
"offsetY": {
|
|
48046
|
+
"value": 6,
|
|
48047
|
+
"unit": "px"
|
|
48048
|
+
},
|
|
48049
|
+
"blur": {
|
|
48050
|
+
"value": 12,
|
|
48051
|
+
"unit": "px"
|
|
48052
|
+
},
|
|
48053
|
+
"spread": {
|
|
48054
|
+
"value": -3,
|
|
48055
|
+
"unit": "px"
|
|
48056
|
+
}
|
|
47549
48057
|
},
|
|
47550
48058
|
{
|
|
47551
48059
|
"color": "{base.color.neutral.12}",
|
|
47552
48060
|
"alpha": 0.12,
|
|
47553
|
-
"offsetX":
|
|
47554
|
-
|
|
47555
|
-
|
|
47556
|
-
|
|
48061
|
+
"offsetX": {
|
|
48062
|
+
"value": 0,
|
|
48063
|
+
"unit": "px"
|
|
48064
|
+
},
|
|
48065
|
+
"offsetY": {
|
|
48066
|
+
"value": 6,
|
|
48067
|
+
"unit": "px"
|
|
48068
|
+
},
|
|
48069
|
+
"blur": {
|
|
48070
|
+
"value": 18,
|
|
48071
|
+
"unit": "px"
|
|
48072
|
+
},
|
|
48073
|
+
"spread": {
|
|
48074
|
+
"value": 0,
|
|
48075
|
+
"unit": "px"
|
|
48076
|
+
}
|
|
47557
48077
|
}
|
|
47558
48078
|
],
|
|
47559
48079
|
"$type": "shadow",
|
|
48080
|
+
"$description": "Legacy floating shadow for backward compatibility",
|
|
47560
48081
|
"$extensions": {
|
|
47561
48082
|
"org.primer.figma": {},
|
|
47562
48083
|
"org.primer.overrides": {
|
|
@@ -47565,24 +48086,52 @@
|
|
|
47565
48086
|
{
|
|
47566
48087
|
"color": "{base.color.neutral.0}",
|
|
47567
48088
|
"alpha": 0.4,
|
|
47568
|
-
"offsetX":
|
|
47569
|
-
|
|
47570
|
-
|
|
47571
|
-
|
|
48089
|
+
"offsetX": {
|
|
48090
|
+
"value": 0,
|
|
48091
|
+
"unit": "px"
|
|
48092
|
+
},
|
|
48093
|
+
"offsetY": {
|
|
48094
|
+
"value": 6,
|
|
48095
|
+
"unit": "px"
|
|
48096
|
+
},
|
|
48097
|
+
"blur": {
|
|
48098
|
+
"value": 12,
|
|
48099
|
+
"unit": "px"
|
|
48100
|
+
},
|
|
48101
|
+
"spread": {
|
|
48102
|
+
"value": -3,
|
|
48103
|
+
"unit": "px"
|
|
48104
|
+
}
|
|
47572
48105
|
},
|
|
47573
48106
|
{
|
|
47574
48107
|
"color": "{base.color.neutral.0}",
|
|
47575
48108
|
"alpha": 0.4,
|
|
47576
|
-
"offsetX":
|
|
47577
|
-
|
|
47578
|
-
|
|
47579
|
-
|
|
48109
|
+
"offsetX": {
|
|
48110
|
+
"value": 0,
|
|
48111
|
+
"unit": "px"
|
|
48112
|
+
},
|
|
48113
|
+
"offsetY": {
|
|
48114
|
+
"value": 6,
|
|
48115
|
+
"unit": "px"
|
|
48116
|
+
},
|
|
48117
|
+
"blur": {
|
|
48118
|
+
"value": 18,
|
|
48119
|
+
"unit": "px"
|
|
48120
|
+
},
|
|
48121
|
+
"spread": {
|
|
48122
|
+
"value": 0,
|
|
48123
|
+
"unit": "px"
|
|
48124
|
+
}
|
|
47580
48125
|
}
|
|
47581
48126
|
],
|
|
47582
48127
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47583
48128
|
"isSource": true,
|
|
47584
48129
|
"$type": "shadow"
|
|
47585
48130
|
}
|
|
48131
|
+
},
|
|
48132
|
+
"org.primer.llm": {
|
|
48133
|
+
"usage": ["legacy-component", "backward-compatibility"],
|
|
48134
|
+
"rules": "DEPRECATED: Use shadow-floating-small instead. Only use for maintaining backward compatibility with existing implementations."
|
|
47586
48135
|
}
|
|
47587
48136
|
},
|
|
47588
48137
|
"key": "{shadow.floating.legacy}"
|
|
@@ -47593,8 +48142,9 @@
|
|
|
47593
48142
|
},
|
|
47594
48143
|
"shadow-floating-medium": {
|
|
47595
48144
|
"key": "{shadow.floating.medium}",
|
|
47596
|
-
"$value": "
|
|
48145
|
+
"$value": "0 0 0 1px #d1d9e0, 0 8px 16px -4px #25292e14, 0 4px 32px -4px #25292e14, 0 24px 48px -12px #25292e14, 0 48px 96px -24px #25292e14",
|
|
47597
48146
|
"$type": "shadow",
|
|
48147
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47598
48148
|
"$extensions": {
|
|
47599
48149
|
"org.primer.figma": {
|
|
47600
48150
|
"collection": "mode",
|
|
@@ -47606,48 +48156,112 @@
|
|
|
47606
48156
|
{
|
|
47607
48157
|
"color": "#d1d9e080",
|
|
47608
48158
|
"alpha": 1,
|
|
47609
|
-
"offsetX":
|
|
47610
|
-
|
|
47611
|
-
|
|
47612
|
-
|
|
48159
|
+
"offsetX": {
|
|
48160
|
+
"value": 0,
|
|
48161
|
+
"unit": "px"
|
|
48162
|
+
},
|
|
48163
|
+
"offsetY": {
|
|
48164
|
+
"value": 0,
|
|
48165
|
+
"unit": "px"
|
|
48166
|
+
},
|
|
48167
|
+
"blur": {
|
|
48168
|
+
"value": 0,
|
|
48169
|
+
"unit": "px"
|
|
48170
|
+
},
|
|
48171
|
+
"spread": {
|
|
48172
|
+
"value": 1,
|
|
48173
|
+
"unit": "px"
|
|
48174
|
+
}
|
|
47613
48175
|
},
|
|
47614
48176
|
{
|
|
47615
48177
|
"color": "#ffffff",
|
|
47616
48178
|
"alpha": 0.4,
|
|
47617
|
-
"offsetX":
|
|
47618
|
-
|
|
47619
|
-
|
|
47620
|
-
|
|
48179
|
+
"offsetX": {
|
|
48180
|
+
"value": 0,
|
|
48181
|
+
"unit": "px"
|
|
48182
|
+
},
|
|
48183
|
+
"offsetY": {
|
|
48184
|
+
"value": 8,
|
|
48185
|
+
"unit": "px"
|
|
48186
|
+
},
|
|
48187
|
+
"blur": {
|
|
48188
|
+
"value": 16,
|
|
48189
|
+
"unit": "px"
|
|
48190
|
+
},
|
|
48191
|
+
"spread": {
|
|
48192
|
+
"value": -4,
|
|
48193
|
+
"unit": "px"
|
|
48194
|
+
}
|
|
47621
48195
|
},
|
|
47622
48196
|
{
|
|
47623
48197
|
"color": "#ffffff",
|
|
47624
48198
|
"alpha": 0.4,
|
|
47625
|
-
"offsetX":
|
|
47626
|
-
|
|
47627
|
-
|
|
47628
|
-
|
|
48199
|
+
"offsetX": {
|
|
48200
|
+
"value": 0,
|
|
48201
|
+
"unit": "px"
|
|
48202
|
+
},
|
|
48203
|
+
"offsetY": {
|
|
48204
|
+
"value": 4,
|
|
48205
|
+
"unit": "px"
|
|
48206
|
+
},
|
|
48207
|
+
"blur": {
|
|
48208
|
+
"value": 32,
|
|
48209
|
+
"unit": "px"
|
|
48210
|
+
},
|
|
48211
|
+
"spread": {
|
|
48212
|
+
"value": -4,
|
|
48213
|
+
"unit": "px"
|
|
48214
|
+
}
|
|
47629
48215
|
},
|
|
47630
48216
|
{
|
|
47631
48217
|
"color": "#ffffff",
|
|
47632
48218
|
"alpha": 0.4,
|
|
47633
|
-
"offsetX":
|
|
47634
|
-
|
|
47635
|
-
|
|
47636
|
-
|
|
48219
|
+
"offsetX": {
|
|
48220
|
+
"value": 0,
|
|
48221
|
+
"unit": "px"
|
|
48222
|
+
},
|
|
48223
|
+
"offsetY": {
|
|
48224
|
+
"value": 24,
|
|
48225
|
+
"unit": "px"
|
|
48226
|
+
},
|
|
48227
|
+
"blur": {
|
|
48228
|
+
"value": 48,
|
|
48229
|
+
"unit": "px"
|
|
48230
|
+
},
|
|
48231
|
+
"spread": {
|
|
48232
|
+
"value": -12,
|
|
48233
|
+
"unit": "px"
|
|
48234
|
+
}
|
|
47637
48235
|
},
|
|
47638
48236
|
{
|
|
47639
48237
|
"color": "#ffffff",
|
|
47640
48238
|
"alpha": 0.4,
|
|
47641
|
-
"offsetX":
|
|
47642
|
-
|
|
47643
|
-
|
|
47644
|
-
|
|
48239
|
+
"offsetX": {
|
|
48240
|
+
"value": 0,
|
|
48241
|
+
"unit": "px"
|
|
48242
|
+
},
|
|
48243
|
+
"offsetY": {
|
|
48244
|
+
"value": 48,
|
|
48245
|
+
"unit": "px"
|
|
48246
|
+
},
|
|
48247
|
+
"blur": {
|
|
48248
|
+
"value": 96,
|
|
48249
|
+
"unit": "px"
|
|
48250
|
+
},
|
|
48251
|
+
"spread": {
|
|
48252
|
+
"value": -24,
|
|
48253
|
+
"unit": "px"
|
|
48254
|
+
}
|
|
47645
48255
|
}
|
|
47646
48256
|
],
|
|
47647
48257
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47648
48258
|
"isSource": true,
|
|
47649
48259
|
"$type": "shadow"
|
|
47650
48260
|
}
|
|
48261
|
+
},
|
|
48262
|
+
"org.primer.llm": {
|
|
48263
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48264
|
+
"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."
|
|
47651
48265
|
}
|
|
47652
48266
|
},
|
|
47653
48267
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47657,45 +48271,106 @@
|
|
|
47657
48271
|
{
|
|
47658
48272
|
"color": "{overlay.borderColor}",
|
|
47659
48273
|
"alpha": 0,
|
|
47660
|
-
"offsetX":
|
|
47661
|
-
|
|
47662
|
-
|
|
47663
|
-
|
|
48274
|
+
"offsetX": {
|
|
48275
|
+
"value": 0,
|
|
48276
|
+
"unit": "px"
|
|
48277
|
+
},
|
|
48278
|
+
"offsetY": {
|
|
48279
|
+
"value": 0,
|
|
48280
|
+
"unit": "px"
|
|
48281
|
+
},
|
|
48282
|
+
"blur": {
|
|
48283
|
+
"value": 0,
|
|
48284
|
+
"unit": "px"
|
|
48285
|
+
},
|
|
48286
|
+
"spread": {
|
|
48287
|
+
"value": 1,
|
|
48288
|
+
"unit": "px"
|
|
48289
|
+
}
|
|
47664
48290
|
},
|
|
47665
48291
|
{
|
|
47666
48292
|
"color": "{base.color.neutral.12}",
|
|
47667
48293
|
"alpha": 0.08,
|
|
47668
|
-
"offsetX":
|
|
47669
|
-
|
|
47670
|
-
|
|
47671
|
-
|
|
48294
|
+
"offsetX": {
|
|
48295
|
+
"value": 0,
|
|
48296
|
+
"unit": "px"
|
|
48297
|
+
},
|
|
48298
|
+
"offsetY": {
|
|
48299
|
+
"value": 8,
|
|
48300
|
+
"unit": "px"
|
|
48301
|
+
},
|
|
48302
|
+
"blur": {
|
|
48303
|
+
"value": 16,
|
|
48304
|
+
"unit": "px"
|
|
48305
|
+
},
|
|
48306
|
+
"spread": {
|
|
48307
|
+
"value": -4,
|
|
48308
|
+
"unit": "px"
|
|
48309
|
+
}
|
|
47672
48310
|
},
|
|
47673
48311
|
{
|
|
47674
48312
|
"color": "{base.color.neutral.12}",
|
|
47675
48313
|
"alpha": 0.08,
|
|
47676
|
-
"offsetX":
|
|
47677
|
-
|
|
47678
|
-
|
|
47679
|
-
|
|
48314
|
+
"offsetX": {
|
|
48315
|
+
"value": 0,
|
|
48316
|
+
"unit": "px"
|
|
48317
|
+
},
|
|
48318
|
+
"offsetY": {
|
|
48319
|
+
"value": 4,
|
|
48320
|
+
"unit": "px"
|
|
48321
|
+
},
|
|
48322
|
+
"blur": {
|
|
48323
|
+
"value": 32,
|
|
48324
|
+
"unit": "px"
|
|
48325
|
+
},
|
|
48326
|
+
"spread": {
|
|
48327
|
+
"value": -4,
|
|
48328
|
+
"unit": "px"
|
|
48329
|
+
}
|
|
47680
48330
|
},
|
|
47681
48331
|
{
|
|
47682
48332
|
"color": "{base.color.neutral.12}",
|
|
47683
48333
|
"alpha": 0.08,
|
|
47684
|
-
"offsetX":
|
|
47685
|
-
|
|
47686
|
-
|
|
47687
|
-
|
|
48334
|
+
"offsetX": {
|
|
48335
|
+
"value": 0,
|
|
48336
|
+
"unit": "px"
|
|
48337
|
+
},
|
|
48338
|
+
"offsetY": {
|
|
48339
|
+
"value": 24,
|
|
48340
|
+
"unit": "px"
|
|
48341
|
+
},
|
|
48342
|
+
"blur": {
|
|
48343
|
+
"value": 48,
|
|
48344
|
+
"unit": "px"
|
|
48345
|
+
},
|
|
48346
|
+
"spread": {
|
|
48347
|
+
"value": -12,
|
|
48348
|
+
"unit": "px"
|
|
48349
|
+
}
|
|
47688
48350
|
},
|
|
47689
48351
|
{
|
|
47690
48352
|
"color": "{base.color.neutral.12}",
|
|
47691
48353
|
"alpha": 0.08,
|
|
47692
|
-
"offsetX":
|
|
47693
|
-
|
|
47694
|
-
|
|
47695
|
-
|
|
48354
|
+
"offsetX": {
|
|
48355
|
+
"value": 0,
|
|
48356
|
+
"unit": "px"
|
|
48357
|
+
},
|
|
48358
|
+
"offsetY": {
|
|
48359
|
+
"value": 48,
|
|
48360
|
+
"unit": "px"
|
|
48361
|
+
},
|
|
48362
|
+
"blur": {
|
|
48363
|
+
"value": 96,
|
|
48364
|
+
"unit": "px"
|
|
48365
|
+
},
|
|
48366
|
+
"spread": {
|
|
48367
|
+
"value": -24,
|
|
48368
|
+
"unit": "px"
|
|
48369
|
+
}
|
|
47696
48370
|
}
|
|
47697
48371
|
],
|
|
47698
48372
|
"$type": "shadow",
|
|
48373
|
+
"$description": "Medium floating shadow for popovers and action menus",
|
|
47699
48374
|
"$extensions": {
|
|
47700
48375
|
"org.primer.figma": {
|
|
47701
48376
|
"collection": "mode",
|
|
@@ -47707,48 +48382,112 @@
|
|
|
47707
48382
|
{
|
|
47708
48383
|
"color": "{overlay.borderColor}",
|
|
47709
48384
|
"alpha": 1,
|
|
47710
|
-
"offsetX":
|
|
47711
|
-
|
|
47712
|
-
|
|
47713
|
-
|
|
48385
|
+
"offsetX": {
|
|
48386
|
+
"value": 0,
|
|
48387
|
+
"unit": "px"
|
|
48388
|
+
},
|
|
48389
|
+
"offsetY": {
|
|
48390
|
+
"value": 0,
|
|
48391
|
+
"unit": "px"
|
|
48392
|
+
},
|
|
48393
|
+
"blur": {
|
|
48394
|
+
"value": 0,
|
|
48395
|
+
"unit": "px"
|
|
48396
|
+
},
|
|
48397
|
+
"spread": {
|
|
48398
|
+
"value": 1,
|
|
48399
|
+
"unit": "px"
|
|
48400
|
+
}
|
|
47714
48401
|
},
|
|
47715
48402
|
{
|
|
47716
48403
|
"color": "{base.color.neutral.0}",
|
|
47717
48404
|
"alpha": 0.4,
|
|
47718
|
-
"offsetX":
|
|
47719
|
-
|
|
47720
|
-
|
|
47721
|
-
|
|
48405
|
+
"offsetX": {
|
|
48406
|
+
"value": 0,
|
|
48407
|
+
"unit": "px"
|
|
48408
|
+
},
|
|
48409
|
+
"offsetY": {
|
|
48410
|
+
"value": 8,
|
|
48411
|
+
"unit": "px"
|
|
48412
|
+
},
|
|
48413
|
+
"blur": {
|
|
48414
|
+
"value": 16,
|
|
48415
|
+
"unit": "px"
|
|
48416
|
+
},
|
|
48417
|
+
"spread": {
|
|
48418
|
+
"value": -4,
|
|
48419
|
+
"unit": "px"
|
|
48420
|
+
}
|
|
47722
48421
|
},
|
|
47723
48422
|
{
|
|
47724
48423
|
"color": "{base.color.neutral.0}",
|
|
47725
48424
|
"alpha": 0.4,
|
|
47726
|
-
"offsetX":
|
|
47727
|
-
|
|
47728
|
-
|
|
47729
|
-
|
|
48425
|
+
"offsetX": {
|
|
48426
|
+
"value": 0,
|
|
48427
|
+
"unit": "px"
|
|
48428
|
+
},
|
|
48429
|
+
"offsetY": {
|
|
48430
|
+
"value": 4,
|
|
48431
|
+
"unit": "px"
|
|
48432
|
+
},
|
|
48433
|
+
"blur": {
|
|
48434
|
+
"value": 32,
|
|
48435
|
+
"unit": "px"
|
|
48436
|
+
},
|
|
48437
|
+
"spread": {
|
|
48438
|
+
"value": -4,
|
|
48439
|
+
"unit": "px"
|
|
48440
|
+
}
|
|
47730
48441
|
},
|
|
47731
48442
|
{
|
|
47732
48443
|
"color": "{base.color.neutral.0}",
|
|
47733
48444
|
"alpha": 0.4,
|
|
47734
|
-
"offsetX":
|
|
47735
|
-
|
|
47736
|
-
|
|
47737
|
-
|
|
48445
|
+
"offsetX": {
|
|
48446
|
+
"value": 0,
|
|
48447
|
+
"unit": "px"
|
|
48448
|
+
},
|
|
48449
|
+
"offsetY": {
|
|
48450
|
+
"value": 24,
|
|
48451
|
+
"unit": "px"
|
|
48452
|
+
},
|
|
48453
|
+
"blur": {
|
|
48454
|
+
"value": 48,
|
|
48455
|
+
"unit": "px"
|
|
48456
|
+
},
|
|
48457
|
+
"spread": {
|
|
48458
|
+
"value": -12,
|
|
48459
|
+
"unit": "px"
|
|
48460
|
+
}
|
|
47738
48461
|
},
|
|
47739
48462
|
{
|
|
47740
48463
|
"color": "{base.color.neutral.0}",
|
|
47741
48464
|
"alpha": 0.4,
|
|
47742
|
-
"offsetX":
|
|
47743
|
-
|
|
47744
|
-
|
|
47745
|
-
|
|
48465
|
+
"offsetX": {
|
|
48466
|
+
"value": 0,
|
|
48467
|
+
"unit": "px"
|
|
48468
|
+
},
|
|
48469
|
+
"offsetY": {
|
|
48470
|
+
"value": 48,
|
|
48471
|
+
"unit": "px"
|
|
48472
|
+
},
|
|
48473
|
+
"blur": {
|
|
48474
|
+
"value": 96,
|
|
48475
|
+
"unit": "px"
|
|
48476
|
+
},
|
|
48477
|
+
"spread": {
|
|
48478
|
+
"value": -24,
|
|
48479
|
+
"unit": "px"
|
|
48480
|
+
}
|
|
47746
48481
|
}
|
|
47747
48482
|
],
|
|
47748
48483
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47749
48484
|
"isSource": true,
|
|
47750
48485
|
"$type": "shadow"
|
|
47751
48486
|
}
|
|
48487
|
+
},
|
|
48488
|
+
"org.primer.llm": {
|
|
48489
|
+
"usage": ["popover", "action-menu", "select-panel", "autocomplete"],
|
|
48490
|
+
"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."
|
|
47752
48491
|
}
|
|
47753
48492
|
},
|
|
47754
48493
|
"key": "{shadow.floating.medium}"
|
|
@@ -47759,7 +48498,7 @@
|
|
|
47759
48498
|
},
|
|
47760
48499
|
"shadow-floating-small": {
|
|
47761
48500
|
"key": "{shadow.floating.small}",
|
|
47762
|
-
"$value": "
|
|
48501
|
+
"$value": "0 0 0 1px #d1d9e080, 0 6px 12px -3px #25292e0a, 0 6px 18px 0 #25292e1f",
|
|
47763
48502
|
"$type": "shadow",
|
|
47764
48503
|
"$description": "Small floating shadow for dropdowns, tooltips, and small overlays",
|
|
47765
48504
|
"$extensions": {
|
|
@@ -47773,26 +48512,62 @@
|
|
|
47773
48512
|
{
|
|
47774
48513
|
"color": "#d1d9e080",
|
|
47775
48514
|
"alpha": 1,
|
|
47776
|
-
"offsetX":
|
|
47777
|
-
|
|
47778
|
-
|
|
47779
|
-
|
|
48515
|
+
"offsetX": {
|
|
48516
|
+
"value": 0,
|
|
48517
|
+
"unit": "px"
|
|
48518
|
+
},
|
|
48519
|
+
"offsetY": {
|
|
48520
|
+
"value": 0,
|
|
48521
|
+
"unit": "px"
|
|
48522
|
+
},
|
|
48523
|
+
"blur": {
|
|
48524
|
+
"value": 0,
|
|
48525
|
+
"unit": "px"
|
|
48526
|
+
},
|
|
48527
|
+
"spread": {
|
|
48528
|
+
"value": 1,
|
|
48529
|
+
"unit": "px"
|
|
48530
|
+
}
|
|
47780
48531
|
},
|
|
47781
48532
|
{
|
|
47782
48533
|
"color": "#ffffff",
|
|
47783
48534
|
"alpha": 0.4,
|
|
47784
|
-
"offsetX":
|
|
47785
|
-
|
|
47786
|
-
|
|
47787
|
-
|
|
48535
|
+
"offsetX": {
|
|
48536
|
+
"value": 0,
|
|
48537
|
+
"unit": "px"
|
|
48538
|
+
},
|
|
48539
|
+
"offsetY": {
|
|
48540
|
+
"value": 6,
|
|
48541
|
+
"unit": "px"
|
|
48542
|
+
},
|
|
48543
|
+
"blur": {
|
|
48544
|
+
"value": 12,
|
|
48545
|
+
"unit": "px"
|
|
48546
|
+
},
|
|
48547
|
+
"spread": {
|
|
48548
|
+
"value": -3,
|
|
48549
|
+
"unit": "px"
|
|
48550
|
+
}
|
|
47788
48551
|
},
|
|
47789
48552
|
{
|
|
47790
48553
|
"color": "#ffffff",
|
|
47791
48554
|
"alpha": 0.4,
|
|
47792
|
-
"offsetX":
|
|
47793
|
-
|
|
47794
|
-
|
|
47795
|
-
|
|
48555
|
+
"offsetX": {
|
|
48556
|
+
"value": 0,
|
|
48557
|
+
"unit": "px"
|
|
48558
|
+
},
|
|
48559
|
+
"offsetY": {
|
|
48560
|
+
"value": 6,
|
|
48561
|
+
"unit": "px"
|
|
48562
|
+
},
|
|
48563
|
+
"blur": {
|
|
48564
|
+
"value": 18,
|
|
48565
|
+
"unit": "px"
|
|
48566
|
+
},
|
|
48567
|
+
"spread": {
|
|
48568
|
+
"value": 0,
|
|
48569
|
+
"unit": "px"
|
|
48570
|
+
}
|
|
47796
48571
|
}
|
|
47797
48572
|
],
|
|
47798
48573
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47812,26 +48587,62 @@
|
|
|
47812
48587
|
{
|
|
47813
48588
|
"color": "{overlay.borderColor}",
|
|
47814
48589
|
"alpha": 0.5,
|
|
47815
|
-
"offsetX":
|
|
47816
|
-
|
|
47817
|
-
|
|
47818
|
-
|
|
48590
|
+
"offsetX": {
|
|
48591
|
+
"value": 0,
|
|
48592
|
+
"unit": "px"
|
|
48593
|
+
},
|
|
48594
|
+
"offsetY": {
|
|
48595
|
+
"value": 0,
|
|
48596
|
+
"unit": "px"
|
|
48597
|
+
},
|
|
48598
|
+
"blur": {
|
|
48599
|
+
"value": 0,
|
|
48600
|
+
"unit": "px"
|
|
48601
|
+
},
|
|
48602
|
+
"spread": {
|
|
48603
|
+
"value": 1,
|
|
48604
|
+
"unit": "px"
|
|
48605
|
+
}
|
|
47819
48606
|
},
|
|
47820
48607
|
{
|
|
47821
48608
|
"color": "{base.color.neutral.12}",
|
|
47822
48609
|
"alpha": 0.04,
|
|
47823
|
-
"offsetX":
|
|
47824
|
-
|
|
47825
|
-
|
|
47826
|
-
|
|
48610
|
+
"offsetX": {
|
|
48611
|
+
"value": 0,
|
|
48612
|
+
"unit": "px"
|
|
48613
|
+
},
|
|
48614
|
+
"offsetY": {
|
|
48615
|
+
"value": 6,
|
|
48616
|
+
"unit": "px"
|
|
48617
|
+
},
|
|
48618
|
+
"blur": {
|
|
48619
|
+
"value": 12,
|
|
48620
|
+
"unit": "px"
|
|
48621
|
+
},
|
|
48622
|
+
"spread": {
|
|
48623
|
+
"value": -3,
|
|
48624
|
+
"unit": "px"
|
|
48625
|
+
}
|
|
47827
48626
|
},
|
|
47828
48627
|
{
|
|
47829
48628
|
"color": "{base.color.neutral.12}",
|
|
47830
48629
|
"alpha": 0.12,
|
|
47831
|
-
"offsetX":
|
|
47832
|
-
|
|
47833
|
-
|
|
47834
|
-
|
|
48630
|
+
"offsetX": {
|
|
48631
|
+
"value": 0,
|
|
48632
|
+
"unit": "px"
|
|
48633
|
+
},
|
|
48634
|
+
"offsetY": {
|
|
48635
|
+
"value": 6,
|
|
48636
|
+
"unit": "px"
|
|
48637
|
+
},
|
|
48638
|
+
"blur": {
|
|
48639
|
+
"value": 18,
|
|
48640
|
+
"unit": "px"
|
|
48641
|
+
},
|
|
48642
|
+
"spread": {
|
|
48643
|
+
"value": 0,
|
|
48644
|
+
"unit": "px"
|
|
48645
|
+
}
|
|
47835
48646
|
}
|
|
47836
48647
|
],
|
|
47837
48648
|
"$type": "shadow",
|
|
@@ -47847,26 +48658,62 @@
|
|
|
47847
48658
|
{
|
|
47848
48659
|
"color": "{overlay.borderColor}",
|
|
47849
48660
|
"alpha": 1,
|
|
47850
|
-
"offsetX":
|
|
47851
|
-
|
|
47852
|
-
|
|
47853
|
-
|
|
48661
|
+
"offsetX": {
|
|
48662
|
+
"value": 0,
|
|
48663
|
+
"unit": "px"
|
|
48664
|
+
},
|
|
48665
|
+
"offsetY": {
|
|
48666
|
+
"value": 0,
|
|
48667
|
+
"unit": "px"
|
|
48668
|
+
},
|
|
48669
|
+
"blur": {
|
|
48670
|
+
"value": 0,
|
|
48671
|
+
"unit": "px"
|
|
48672
|
+
},
|
|
48673
|
+
"spread": {
|
|
48674
|
+
"value": 1,
|
|
48675
|
+
"unit": "px"
|
|
48676
|
+
}
|
|
47854
48677
|
},
|
|
47855
48678
|
{
|
|
47856
48679
|
"color": "{base.color.neutral.0}",
|
|
47857
48680
|
"alpha": 0.4,
|
|
47858
|
-
"offsetX":
|
|
47859
|
-
|
|
47860
|
-
|
|
47861
|
-
|
|
48681
|
+
"offsetX": {
|
|
48682
|
+
"value": 0,
|
|
48683
|
+
"unit": "px"
|
|
48684
|
+
},
|
|
48685
|
+
"offsetY": {
|
|
48686
|
+
"value": 6,
|
|
48687
|
+
"unit": "px"
|
|
48688
|
+
},
|
|
48689
|
+
"blur": {
|
|
48690
|
+
"value": 12,
|
|
48691
|
+
"unit": "px"
|
|
48692
|
+
},
|
|
48693
|
+
"spread": {
|
|
48694
|
+
"value": -3,
|
|
48695
|
+
"unit": "px"
|
|
48696
|
+
}
|
|
47862
48697
|
},
|
|
47863
48698
|
{
|
|
47864
48699
|
"color": "{base.color.neutral.0}",
|
|
47865
48700
|
"alpha": 0.4,
|
|
47866
|
-
"offsetX":
|
|
47867
|
-
|
|
47868
|
-
|
|
47869
|
-
|
|
48701
|
+
"offsetX": {
|
|
48702
|
+
"value": 0,
|
|
48703
|
+
"unit": "px"
|
|
48704
|
+
},
|
|
48705
|
+
"offsetY": {
|
|
48706
|
+
"value": 6,
|
|
48707
|
+
"unit": "px"
|
|
48708
|
+
},
|
|
48709
|
+
"blur": {
|
|
48710
|
+
"value": 18,
|
|
48711
|
+
"unit": "px"
|
|
48712
|
+
},
|
|
48713
|
+
"spread": {
|
|
48714
|
+
"value": 0,
|
|
48715
|
+
"unit": "px"
|
|
48716
|
+
}
|
|
47870
48717
|
}
|
|
47871
48718
|
],
|
|
47872
48719
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47887,8 +48734,9 @@
|
|
|
47887
48734
|
},
|
|
47888
48735
|
"shadow-floating-xlarge": {
|
|
47889
48736
|
"key": "{shadow.floating.xlarge}",
|
|
47890
|
-
"$value": "
|
|
48737
|
+
"$value": "0 0 0 1px #d1d9e0, 0 56px 112px 0 #25292e52",
|
|
47891
48738
|
"$type": "shadow",
|
|
48739
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47892
48740
|
"$extensions": {
|
|
47893
48741
|
"org.primer.figma": {
|
|
47894
48742
|
"collection": "mode",
|
|
@@ -47900,24 +48748,52 @@
|
|
|
47900
48748
|
{
|
|
47901
48749
|
"color": "#d1d9e080",
|
|
47902
48750
|
"alpha": 1,
|
|
47903
|
-
"offsetX":
|
|
47904
|
-
|
|
47905
|
-
|
|
47906
|
-
|
|
48751
|
+
"offsetX": {
|
|
48752
|
+
"value": 0,
|
|
48753
|
+
"unit": "px"
|
|
48754
|
+
},
|
|
48755
|
+
"offsetY": {
|
|
48756
|
+
"value": 0,
|
|
48757
|
+
"unit": "px"
|
|
48758
|
+
},
|
|
48759
|
+
"blur": {
|
|
48760
|
+
"value": 0,
|
|
48761
|
+
"unit": "px"
|
|
48762
|
+
},
|
|
48763
|
+
"spread": {
|
|
48764
|
+
"value": 1,
|
|
48765
|
+
"unit": "px"
|
|
48766
|
+
}
|
|
47907
48767
|
},
|
|
47908
48768
|
{
|
|
47909
48769
|
"color": "#ffffff",
|
|
47910
48770
|
"alpha": 1,
|
|
47911
|
-
"offsetX":
|
|
47912
|
-
|
|
47913
|
-
|
|
47914
|
-
|
|
48771
|
+
"offsetX": {
|
|
48772
|
+
"value": 0,
|
|
48773
|
+
"unit": "px"
|
|
48774
|
+
},
|
|
48775
|
+
"offsetY": {
|
|
48776
|
+
"value": 32,
|
|
48777
|
+
"unit": "px"
|
|
48778
|
+
},
|
|
48779
|
+
"blur": {
|
|
48780
|
+
"value": 64,
|
|
48781
|
+
"unit": "px"
|
|
48782
|
+
},
|
|
48783
|
+
"spread": {
|
|
48784
|
+
"value": 0,
|
|
48785
|
+
"unit": "px"
|
|
48786
|
+
}
|
|
47915
48787
|
}
|
|
47916
48788
|
],
|
|
47917
48789
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47918
48790
|
"isSource": true,
|
|
47919
48791
|
"$type": "shadow"
|
|
47920
48792
|
}
|
|
48793
|
+
},
|
|
48794
|
+
"org.primer.llm": {
|
|
48795
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48796
|
+
"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."
|
|
47921
48797
|
}
|
|
47922
48798
|
},
|
|
47923
48799
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -47927,21 +48803,46 @@
|
|
|
47927
48803
|
{
|
|
47928
48804
|
"color": "{overlay.borderColor}",
|
|
47929
48805
|
"alpha": 0,
|
|
47930
|
-
"offsetX":
|
|
47931
|
-
|
|
47932
|
-
|
|
47933
|
-
|
|
48806
|
+
"offsetX": {
|
|
48807
|
+
"value": 0,
|
|
48808
|
+
"unit": "px"
|
|
48809
|
+
},
|
|
48810
|
+
"offsetY": {
|
|
48811
|
+
"value": 0,
|
|
48812
|
+
"unit": "px"
|
|
48813
|
+
},
|
|
48814
|
+
"blur": {
|
|
48815
|
+
"value": 0,
|
|
48816
|
+
"unit": "px"
|
|
48817
|
+
},
|
|
48818
|
+
"spread": {
|
|
48819
|
+
"value": 1,
|
|
48820
|
+
"unit": "px"
|
|
48821
|
+
}
|
|
47934
48822
|
},
|
|
47935
48823
|
{
|
|
47936
48824
|
"color": "{base.color.neutral.12}",
|
|
47937
48825
|
"alpha": 0.32,
|
|
47938
|
-
"offsetX":
|
|
47939
|
-
|
|
47940
|
-
|
|
47941
|
-
|
|
48826
|
+
"offsetX": {
|
|
48827
|
+
"value": 0,
|
|
48828
|
+
"unit": "px"
|
|
48829
|
+
},
|
|
48830
|
+
"offsetY": {
|
|
48831
|
+
"value": 56,
|
|
48832
|
+
"unit": "px"
|
|
48833
|
+
},
|
|
48834
|
+
"blur": {
|
|
48835
|
+
"value": 112,
|
|
48836
|
+
"unit": "px"
|
|
48837
|
+
},
|
|
48838
|
+
"spread": {
|
|
48839
|
+
"value": 0,
|
|
48840
|
+
"unit": "px"
|
|
48841
|
+
}
|
|
47942
48842
|
}
|
|
47943
48843
|
],
|
|
47944
48844
|
"$type": "shadow",
|
|
48845
|
+
"$description": "Extra large floating shadow for full-screen overlays and sheets",
|
|
47945
48846
|
"$extensions": {
|
|
47946
48847
|
"org.primer.figma": {
|
|
47947
48848
|
"collection": "mode",
|
|
@@ -47953,24 +48854,52 @@
|
|
|
47953
48854
|
{
|
|
47954
48855
|
"color": "{overlay.borderColor}",
|
|
47955
48856
|
"alpha": 1,
|
|
47956
|
-
"offsetX":
|
|
47957
|
-
|
|
47958
|
-
|
|
47959
|
-
|
|
48857
|
+
"offsetX": {
|
|
48858
|
+
"value": 0,
|
|
48859
|
+
"unit": "px"
|
|
48860
|
+
},
|
|
48861
|
+
"offsetY": {
|
|
48862
|
+
"value": 0,
|
|
48863
|
+
"unit": "px"
|
|
48864
|
+
},
|
|
48865
|
+
"blur": {
|
|
48866
|
+
"value": 0,
|
|
48867
|
+
"unit": "px"
|
|
48868
|
+
},
|
|
48869
|
+
"spread": {
|
|
48870
|
+
"value": 1,
|
|
48871
|
+
"unit": "px"
|
|
48872
|
+
}
|
|
47960
48873
|
},
|
|
47961
48874
|
{
|
|
47962
48875
|
"color": "{base.color.neutral.0}",
|
|
47963
48876
|
"alpha": 1,
|
|
47964
|
-
"offsetX":
|
|
47965
|
-
|
|
47966
|
-
|
|
47967
|
-
|
|
48877
|
+
"offsetX": {
|
|
48878
|
+
"value": 0,
|
|
48879
|
+
"unit": "px"
|
|
48880
|
+
},
|
|
48881
|
+
"offsetY": {
|
|
48882
|
+
"value": 32,
|
|
48883
|
+
"unit": "px"
|
|
48884
|
+
},
|
|
48885
|
+
"blur": {
|
|
48886
|
+
"value": 64,
|
|
48887
|
+
"unit": "px"
|
|
48888
|
+
},
|
|
48889
|
+
"spread": {
|
|
48890
|
+
"value": 0,
|
|
48891
|
+
"unit": "px"
|
|
48892
|
+
}
|
|
47968
48893
|
}
|
|
47969
48894
|
],
|
|
47970
48895
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
47971
48896
|
"isSource": true,
|
|
47972
48897
|
"$type": "shadow"
|
|
47973
48898
|
}
|
|
48899
|
+
},
|
|
48900
|
+
"org.primer.llm": {
|
|
48901
|
+
"usage": ["full-screen-overlay", "side-sheet", "drawer", "large-modal"],
|
|
48902
|
+
"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."
|
|
47974
48903
|
}
|
|
47975
48904
|
},
|
|
47976
48905
|
"key": "{shadow.floating.xlarge}"
|
|
@@ -47981,8 +48910,9 @@
|
|
|
47981
48910
|
},
|
|
47982
48911
|
"shadow-inset": {
|
|
47983
48912
|
"key": "{shadow.inset}",
|
|
47984
|
-
"$value": "inset
|
|
48913
|
+
"$value": "inset 0 1px 0 0 #1f23280a",
|
|
47985
48914
|
"$type": "shadow",
|
|
48915
|
+
"$description": "Inset shadow for recessed elements",
|
|
47986
48916
|
"$extensions": {
|
|
47987
48917
|
"org.primer.figma": {
|
|
47988
48918
|
"collection": "mode",
|
|
@@ -47993,16 +48923,32 @@
|
|
|
47993
48923
|
"$value": {
|
|
47994
48924
|
"color": "#ffffff",
|
|
47995
48925
|
"alpha": 0.24,
|
|
47996
|
-
"offsetX":
|
|
47997
|
-
|
|
47998
|
-
|
|
47999
|
-
|
|
48926
|
+
"offsetX": {
|
|
48927
|
+
"value": 0,
|
|
48928
|
+
"unit": "px"
|
|
48929
|
+
},
|
|
48930
|
+
"offsetY": {
|
|
48931
|
+
"value": 1,
|
|
48932
|
+
"unit": "px"
|
|
48933
|
+
},
|
|
48934
|
+
"blur": {
|
|
48935
|
+
"value": 0,
|
|
48936
|
+
"unit": "px"
|
|
48937
|
+
},
|
|
48938
|
+
"spread": {
|
|
48939
|
+
"value": 0,
|
|
48940
|
+
"unit": "px"
|
|
48941
|
+
},
|
|
48000
48942
|
"inset": true
|
|
48001
48943
|
},
|
|
48002
48944
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48003
48945
|
"isSource": true,
|
|
48004
48946
|
"$type": "shadow"
|
|
48005
48947
|
}
|
|
48948
|
+
},
|
|
48949
|
+
"org.primer.llm": {
|
|
48950
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
48951
|
+
"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."
|
|
48006
48952
|
}
|
|
48007
48953
|
},
|
|
48008
48954
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48011,13 +48957,26 @@
|
|
|
48011
48957
|
"$value": {
|
|
48012
48958
|
"color": "{base.color.neutral.13}",
|
|
48013
48959
|
"alpha": 0.04,
|
|
48014
|
-
"offsetX":
|
|
48015
|
-
|
|
48016
|
-
|
|
48017
|
-
|
|
48960
|
+
"offsetX": {
|
|
48961
|
+
"value": 0,
|
|
48962
|
+
"unit": "px"
|
|
48963
|
+
},
|
|
48964
|
+
"offsetY": {
|
|
48965
|
+
"value": 1,
|
|
48966
|
+
"unit": "px"
|
|
48967
|
+
},
|
|
48968
|
+
"blur": {
|
|
48969
|
+
"value": 0,
|
|
48970
|
+
"unit": "px"
|
|
48971
|
+
},
|
|
48972
|
+
"spread": {
|
|
48973
|
+
"value": 0,
|
|
48974
|
+
"unit": "px"
|
|
48975
|
+
},
|
|
48018
48976
|
"inset": true
|
|
48019
48977
|
},
|
|
48020
48978
|
"$type": "shadow",
|
|
48979
|
+
"$description": "Inset shadow for recessed elements",
|
|
48021
48980
|
"$extensions": {
|
|
48022
48981
|
"org.primer.figma": {
|
|
48023
48982
|
"collection": "mode",
|
|
@@ -48028,16 +48987,32 @@
|
|
|
48028
48987
|
"$value": {
|
|
48029
48988
|
"color": "{base.color.neutral.0}",
|
|
48030
48989
|
"alpha": 0.24,
|
|
48031
|
-
"offsetX":
|
|
48032
|
-
|
|
48033
|
-
|
|
48034
|
-
|
|
48990
|
+
"offsetX": {
|
|
48991
|
+
"value": 0,
|
|
48992
|
+
"unit": "px"
|
|
48993
|
+
},
|
|
48994
|
+
"offsetY": {
|
|
48995
|
+
"value": 1,
|
|
48996
|
+
"unit": "px"
|
|
48997
|
+
},
|
|
48998
|
+
"blur": {
|
|
48999
|
+
"value": 0,
|
|
49000
|
+
"unit": "px"
|
|
49001
|
+
},
|
|
49002
|
+
"spread": {
|
|
49003
|
+
"value": 0,
|
|
49004
|
+
"unit": "px"
|
|
49005
|
+
},
|
|
48035
49006
|
"inset": true
|
|
48036
49007
|
},
|
|
48037
49008
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48038
49009
|
"isSource": true,
|
|
48039
49010
|
"$type": "shadow"
|
|
48040
49011
|
}
|
|
49012
|
+
},
|
|
49013
|
+
"org.primer.llm": {
|
|
49014
|
+
"usage": ["input-field", "pressed-button", "recessed-area", "well"],
|
|
49015
|
+
"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."
|
|
48041
49016
|
}
|
|
48042
49017
|
},
|
|
48043
49018
|
"key": "{shadow.inset}"
|
|
@@ -48048,8 +49023,9 @@
|
|
|
48048
49023
|
},
|
|
48049
49024
|
"shadow-resting-medium": {
|
|
48050
49025
|
"key": "{shadow.resting.medium}",
|
|
48051
|
-
"$value": "
|
|
49026
|
+
"$value": "0 1px 1px 0 #25292e1a, 0 3px 6px 0 #25292e1f",
|
|
48052
49027
|
"$type": "shadow",
|
|
49028
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48053
49029
|
"$extensions": {
|
|
48054
49030
|
"org.primer.figma": {
|
|
48055
49031
|
"collection": "mode",
|
|
@@ -48061,24 +49037,52 @@
|
|
|
48061
49037
|
{
|
|
48062
49038
|
"color": "#ffffff",
|
|
48063
49039
|
"alpha": 0.4,
|
|
48064
|
-
"offsetX":
|
|
48065
|
-
|
|
48066
|
-
|
|
48067
|
-
|
|
49040
|
+
"offsetX": {
|
|
49041
|
+
"value": 0,
|
|
49042
|
+
"unit": "px"
|
|
49043
|
+
},
|
|
49044
|
+
"offsetY": {
|
|
49045
|
+
"value": 1,
|
|
49046
|
+
"unit": "px"
|
|
49047
|
+
},
|
|
49048
|
+
"blur": {
|
|
49049
|
+
"value": 1,
|
|
49050
|
+
"unit": "px"
|
|
49051
|
+
},
|
|
49052
|
+
"spread": {
|
|
49053
|
+
"value": 0,
|
|
49054
|
+
"unit": "px"
|
|
49055
|
+
}
|
|
48068
49056
|
},
|
|
48069
49057
|
{
|
|
48070
49058
|
"color": "#ffffff",
|
|
48071
49059
|
"alpha": 0.8,
|
|
48072
|
-
"offsetX":
|
|
48073
|
-
|
|
48074
|
-
|
|
48075
|
-
|
|
49060
|
+
"offsetX": {
|
|
49061
|
+
"value": 0,
|
|
49062
|
+
"unit": "px"
|
|
49063
|
+
},
|
|
49064
|
+
"offsetY": {
|
|
49065
|
+
"value": 3,
|
|
49066
|
+
"unit": "px"
|
|
49067
|
+
},
|
|
49068
|
+
"blur": {
|
|
49069
|
+
"value": 6,
|
|
49070
|
+
"unit": "px"
|
|
49071
|
+
},
|
|
49072
|
+
"spread": {
|
|
49073
|
+
"value": 0,
|
|
49074
|
+
"unit": "px"
|
|
49075
|
+
}
|
|
48076
49076
|
}
|
|
48077
49077
|
],
|
|
48078
49078
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48079
49079
|
"isSource": true,
|
|
48080
49080
|
"$type": "shadow"
|
|
48081
49081
|
}
|
|
49082
|
+
},
|
|
49083
|
+
"org.primer.llm": {
|
|
49084
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49085
|
+
"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."
|
|
48082
49086
|
}
|
|
48083
49087
|
},
|
|
48084
49088
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48088,21 +49092,46 @@
|
|
|
48088
49092
|
{
|
|
48089
49093
|
"color": "{base.color.neutral.12}",
|
|
48090
49094
|
"alpha": 0.1,
|
|
48091
|
-
"offsetX":
|
|
48092
|
-
|
|
48093
|
-
|
|
48094
|
-
|
|
49095
|
+
"offsetX": {
|
|
49096
|
+
"value": 0,
|
|
49097
|
+
"unit": "px"
|
|
49098
|
+
},
|
|
49099
|
+
"offsetY": {
|
|
49100
|
+
"value": 1,
|
|
49101
|
+
"unit": "px"
|
|
49102
|
+
},
|
|
49103
|
+
"blur": {
|
|
49104
|
+
"value": 1,
|
|
49105
|
+
"unit": "px"
|
|
49106
|
+
},
|
|
49107
|
+
"spread": {
|
|
49108
|
+
"value": 0,
|
|
49109
|
+
"unit": "px"
|
|
49110
|
+
}
|
|
48095
49111
|
},
|
|
48096
49112
|
{
|
|
48097
49113
|
"color": "{base.color.neutral.12}",
|
|
48098
49114
|
"alpha": 0.12,
|
|
48099
|
-
"offsetX":
|
|
48100
|
-
|
|
48101
|
-
|
|
48102
|
-
|
|
49115
|
+
"offsetX": {
|
|
49116
|
+
"value": 0,
|
|
49117
|
+
"unit": "px"
|
|
49118
|
+
},
|
|
49119
|
+
"offsetY": {
|
|
49120
|
+
"value": 3,
|
|
49121
|
+
"unit": "px"
|
|
49122
|
+
},
|
|
49123
|
+
"blur": {
|
|
49124
|
+
"value": 6,
|
|
49125
|
+
"unit": "px"
|
|
49126
|
+
},
|
|
49127
|
+
"spread": {
|
|
49128
|
+
"value": 0,
|
|
49129
|
+
"unit": "px"
|
|
49130
|
+
}
|
|
48103
49131
|
}
|
|
48104
49132
|
],
|
|
48105
49133
|
"$type": "shadow",
|
|
49134
|
+
"$description": "Medium resting shadow for cards and elevated surfaces",
|
|
48106
49135
|
"$extensions": {
|
|
48107
49136
|
"org.primer.figma": {
|
|
48108
49137
|
"collection": "mode",
|
|
@@ -48114,24 +49143,52 @@
|
|
|
48114
49143
|
{
|
|
48115
49144
|
"color": "{base.color.neutral.0}",
|
|
48116
49145
|
"alpha": 0.4,
|
|
48117
|
-
"offsetX":
|
|
48118
|
-
|
|
48119
|
-
|
|
48120
|
-
|
|
49146
|
+
"offsetX": {
|
|
49147
|
+
"value": 0,
|
|
49148
|
+
"unit": "px"
|
|
49149
|
+
},
|
|
49150
|
+
"offsetY": {
|
|
49151
|
+
"value": 1,
|
|
49152
|
+
"unit": "px"
|
|
49153
|
+
},
|
|
49154
|
+
"blur": {
|
|
49155
|
+
"value": 1,
|
|
49156
|
+
"unit": "px"
|
|
49157
|
+
},
|
|
49158
|
+
"spread": {
|
|
49159
|
+
"value": 0,
|
|
49160
|
+
"unit": "px"
|
|
49161
|
+
}
|
|
48121
49162
|
},
|
|
48122
49163
|
{
|
|
48123
49164
|
"color": "{base.color.neutral.0}",
|
|
48124
49165
|
"alpha": 0.8,
|
|
48125
|
-
"offsetX":
|
|
48126
|
-
|
|
48127
|
-
|
|
48128
|
-
|
|
49166
|
+
"offsetX": {
|
|
49167
|
+
"value": 0,
|
|
49168
|
+
"unit": "px"
|
|
49169
|
+
},
|
|
49170
|
+
"offsetY": {
|
|
49171
|
+
"value": 3,
|
|
49172
|
+
"unit": "px"
|
|
49173
|
+
},
|
|
49174
|
+
"blur": {
|
|
49175
|
+
"value": 6,
|
|
49176
|
+
"unit": "px"
|
|
49177
|
+
},
|
|
49178
|
+
"spread": {
|
|
49179
|
+
"value": 0,
|
|
49180
|
+
"unit": "px"
|
|
49181
|
+
}
|
|
48129
49182
|
}
|
|
48130
49183
|
],
|
|
48131
49184
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48132
49185
|
"isSource": true,
|
|
48133
49186
|
"$type": "shadow"
|
|
48134
49187
|
}
|
|
49188
|
+
},
|
|
49189
|
+
"org.primer.llm": {
|
|
49190
|
+
"usage": ["card", "panel", "elevated-surface", "elevated-sidebar"],
|
|
49191
|
+
"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."
|
|
48135
49192
|
}
|
|
48136
49193
|
},
|
|
48137
49194
|
"key": "{shadow.resting.medium}"
|
|
@@ -48142,8 +49199,9 @@
|
|
|
48142
49199
|
},
|
|
48143
49200
|
"shadow-resting-small": {
|
|
48144
49201
|
"key": "{shadow.resting.small}",
|
|
48145
|
-
"$value": "
|
|
49202
|
+
"$value": "0 1px 1px 0 #1f23280a, 0 1px 2px 0 #1f232808",
|
|
48146
49203
|
"$type": "shadow",
|
|
49204
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48147
49205
|
"$extensions": {
|
|
48148
49206
|
"org.primer.figma": {
|
|
48149
49207
|
"collection": "mode",
|
|
@@ -48155,19 +49213,43 @@
|
|
|
48155
49213
|
{
|
|
48156
49214
|
"color": "#ffffff",
|
|
48157
49215
|
"alpha": 0.6,
|
|
48158
|
-
"offsetX":
|
|
48159
|
-
|
|
48160
|
-
|
|
48161
|
-
|
|
49216
|
+
"offsetX": {
|
|
49217
|
+
"value": 0,
|
|
49218
|
+
"unit": "px"
|
|
49219
|
+
},
|
|
49220
|
+
"offsetY": {
|
|
49221
|
+
"value": 1,
|
|
49222
|
+
"unit": "px"
|
|
49223
|
+
},
|
|
49224
|
+
"blur": {
|
|
49225
|
+
"value": 1,
|
|
49226
|
+
"unit": "px"
|
|
49227
|
+
},
|
|
49228
|
+
"spread": {
|
|
49229
|
+
"value": 0,
|
|
49230
|
+
"unit": "px"
|
|
49231
|
+
},
|
|
48162
49232
|
"inset": false
|
|
48163
49233
|
},
|
|
48164
49234
|
{
|
|
48165
49235
|
"color": "#ffffff",
|
|
48166
49236
|
"alpha": 0.6,
|
|
48167
|
-
"offsetX":
|
|
48168
|
-
|
|
48169
|
-
|
|
48170
|
-
|
|
49237
|
+
"offsetX": {
|
|
49238
|
+
"value": 0,
|
|
49239
|
+
"unit": "px"
|
|
49240
|
+
},
|
|
49241
|
+
"offsetY": {
|
|
49242
|
+
"value": 1,
|
|
49243
|
+
"unit": "px"
|
|
49244
|
+
},
|
|
49245
|
+
"blur": {
|
|
49246
|
+
"value": 3,
|
|
49247
|
+
"unit": "px"
|
|
49248
|
+
},
|
|
49249
|
+
"spread": {
|
|
49250
|
+
"value": 0,
|
|
49251
|
+
"unit": "px"
|
|
49252
|
+
},
|
|
48171
49253
|
"inset": false
|
|
48172
49254
|
}
|
|
48173
49255
|
],
|
|
@@ -48175,6 +49257,10 @@
|
|
|
48175
49257
|
"isSource": true,
|
|
48176
49258
|
"$type": "shadow"
|
|
48177
49259
|
}
|
|
49260
|
+
},
|
|
49261
|
+
"org.primer.llm": {
|
|
49262
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49263
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48178
49264
|
}
|
|
48179
49265
|
},
|
|
48180
49266
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48183,24 +49269,49 @@
|
|
|
48183
49269
|
"$value": [
|
|
48184
49270
|
{
|
|
48185
49271
|
"color": "{base.color.neutral.13}",
|
|
48186
|
-
"alpha": 0.
|
|
48187
|
-
"offsetX":
|
|
48188
|
-
|
|
48189
|
-
|
|
48190
|
-
|
|
49272
|
+
"alpha": 0.04,
|
|
49273
|
+
"offsetX": {
|
|
49274
|
+
"value": 0,
|
|
49275
|
+
"unit": "px"
|
|
49276
|
+
},
|
|
49277
|
+
"offsetY": {
|
|
49278
|
+
"value": 1,
|
|
49279
|
+
"unit": "px"
|
|
49280
|
+
},
|
|
49281
|
+
"blur": {
|
|
49282
|
+
"value": 1,
|
|
49283
|
+
"unit": "px"
|
|
49284
|
+
},
|
|
49285
|
+
"spread": {
|
|
49286
|
+
"value": 0,
|
|
49287
|
+
"unit": "px"
|
|
49288
|
+
},
|
|
48191
49289
|
"inset": false
|
|
48192
49290
|
},
|
|
48193
49291
|
{
|
|
48194
49292
|
"color": "{base.color.neutral.13}",
|
|
48195
|
-
"alpha": 0.
|
|
48196
|
-
"offsetX":
|
|
48197
|
-
|
|
48198
|
-
|
|
48199
|
-
|
|
49293
|
+
"alpha": 0.03,
|
|
49294
|
+
"offsetX": {
|
|
49295
|
+
"value": 0,
|
|
49296
|
+
"unit": "px"
|
|
49297
|
+
},
|
|
49298
|
+
"offsetY": {
|
|
49299
|
+
"value": 1,
|
|
49300
|
+
"unit": "px"
|
|
49301
|
+
},
|
|
49302
|
+
"blur": {
|
|
49303
|
+
"value": 2,
|
|
49304
|
+
"unit": "px"
|
|
49305
|
+
},
|
|
49306
|
+
"spread": {
|
|
49307
|
+
"value": 0,
|
|
49308
|
+
"unit": "px"
|
|
49309
|
+
},
|
|
48200
49310
|
"inset": false
|
|
48201
49311
|
}
|
|
48202
49312
|
],
|
|
48203
49313
|
"$type": "shadow",
|
|
49314
|
+
"$description": "Small resting shadow for buttons and interactive elements",
|
|
48204
49315
|
"$extensions": {
|
|
48205
49316
|
"org.primer.figma": {
|
|
48206
49317
|
"collection": "mode",
|
|
@@ -48212,19 +49323,43 @@
|
|
|
48212
49323
|
{
|
|
48213
49324
|
"color": "{base.color.neutral.0}",
|
|
48214
49325
|
"alpha": 0.6,
|
|
48215
|
-
"offsetX":
|
|
48216
|
-
|
|
48217
|
-
|
|
48218
|
-
|
|
49326
|
+
"offsetX": {
|
|
49327
|
+
"value": 0,
|
|
49328
|
+
"unit": "px"
|
|
49329
|
+
},
|
|
49330
|
+
"offsetY": {
|
|
49331
|
+
"value": 1,
|
|
49332
|
+
"unit": "px"
|
|
49333
|
+
},
|
|
49334
|
+
"blur": {
|
|
49335
|
+
"value": 1,
|
|
49336
|
+
"unit": "px"
|
|
49337
|
+
},
|
|
49338
|
+
"spread": {
|
|
49339
|
+
"value": 0,
|
|
49340
|
+
"unit": "px"
|
|
49341
|
+
},
|
|
48219
49342
|
"inset": false
|
|
48220
49343
|
},
|
|
48221
49344
|
{
|
|
48222
49345
|
"color": "{base.color.neutral.0}",
|
|
48223
49346
|
"alpha": 0.6,
|
|
48224
|
-
"offsetX":
|
|
48225
|
-
|
|
48226
|
-
|
|
48227
|
-
|
|
49347
|
+
"offsetX": {
|
|
49348
|
+
"value": 0,
|
|
49349
|
+
"unit": "px"
|
|
49350
|
+
},
|
|
49351
|
+
"offsetY": {
|
|
49352
|
+
"value": 1,
|
|
49353
|
+
"unit": "px"
|
|
49354
|
+
},
|
|
49355
|
+
"blur": {
|
|
49356
|
+
"value": 3,
|
|
49357
|
+
"unit": "px"
|
|
49358
|
+
},
|
|
49359
|
+
"spread": {
|
|
49360
|
+
"value": 0,
|
|
49361
|
+
"unit": "px"
|
|
49362
|
+
},
|
|
48228
49363
|
"inset": false
|
|
48229
49364
|
}
|
|
48230
49365
|
],
|
|
@@ -48232,6 +49367,10 @@
|
|
|
48232
49367
|
"isSource": true,
|
|
48233
49368
|
"$type": "shadow"
|
|
48234
49369
|
}
|
|
49370
|
+
},
|
|
49371
|
+
"org.primer.llm": {
|
|
49372
|
+
"usage": ["button", "interactive-card", "clickable-element"],
|
|
49373
|
+
"rules": "Use for buttons and small interactive elements at rest. Provides subtle depth and clickable affordance. RECOMMENDED for default button shadows."
|
|
48235
49374
|
}
|
|
48236
49375
|
},
|
|
48237
49376
|
"key": "{shadow.resting.small}"
|
|
@@ -48242,8 +49381,9 @@
|
|
|
48242
49381
|
},
|
|
48243
49382
|
"shadow-resting-xsmall": {
|
|
48244
49383
|
"key": "{shadow.resting.xsmall}",
|
|
48245
|
-
"$value": "
|
|
49384
|
+
"$value": "0 1px 1px 0 #1f23280d",
|
|
48246
49385
|
"$type": "shadow",
|
|
49386
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48247
49387
|
"$extensions": {
|
|
48248
49388
|
"org.primer.figma": {
|
|
48249
49389
|
"collection": "mode",
|
|
@@ -48254,16 +49394,32 @@
|
|
|
48254
49394
|
"$value": {
|
|
48255
49395
|
"color": "#ffffff",
|
|
48256
49396
|
"alpha": 0.8,
|
|
48257
|
-
"offsetX":
|
|
48258
|
-
|
|
48259
|
-
|
|
48260
|
-
|
|
49397
|
+
"offsetX": {
|
|
49398
|
+
"value": 0,
|
|
49399
|
+
"unit": "px"
|
|
49400
|
+
},
|
|
49401
|
+
"offsetY": {
|
|
49402
|
+
"value": 1,
|
|
49403
|
+
"unit": "px"
|
|
49404
|
+
},
|
|
49405
|
+
"blur": {
|
|
49406
|
+
"value": 1,
|
|
49407
|
+
"unit": "px"
|
|
49408
|
+
},
|
|
49409
|
+
"spread": {
|
|
49410
|
+
"value": 0,
|
|
49411
|
+
"unit": "px"
|
|
49412
|
+
},
|
|
48261
49413
|
"inset": false
|
|
48262
49414
|
},
|
|
48263
49415
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48264
49416
|
"isSource": true,
|
|
48265
49417
|
"$type": "shadow"
|
|
48266
49418
|
}
|
|
49419
|
+
},
|
|
49420
|
+
"org.primer.llm": {
|
|
49421
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49422
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48267
49423
|
}
|
|
48268
49424
|
},
|
|
48269
49425
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
@@ -48271,14 +49427,27 @@
|
|
|
48271
49427
|
"original": {
|
|
48272
49428
|
"$value": {
|
|
48273
49429
|
"color": "{base.color.neutral.13}",
|
|
48274
|
-
"alpha": 0.
|
|
48275
|
-
"offsetX":
|
|
48276
|
-
|
|
48277
|
-
|
|
48278
|
-
|
|
49430
|
+
"alpha": 0.05,
|
|
49431
|
+
"offsetX": {
|
|
49432
|
+
"value": 0,
|
|
49433
|
+
"unit": "px"
|
|
49434
|
+
},
|
|
49435
|
+
"offsetY": {
|
|
49436
|
+
"value": 1,
|
|
49437
|
+
"unit": "px"
|
|
49438
|
+
},
|
|
49439
|
+
"blur": {
|
|
49440
|
+
"value": 1,
|
|
49441
|
+
"unit": "px"
|
|
49442
|
+
},
|
|
49443
|
+
"spread": {
|
|
49444
|
+
"value": 0,
|
|
49445
|
+
"unit": "px"
|
|
49446
|
+
},
|
|
48279
49447
|
"inset": false
|
|
48280
49448
|
},
|
|
48281
49449
|
"$type": "shadow",
|
|
49450
|
+
"$description": "Extra small resting shadow for minimal elevation",
|
|
48282
49451
|
"$extensions": {
|
|
48283
49452
|
"org.primer.figma": {
|
|
48284
49453
|
"collection": "mode",
|
|
@@ -48289,16 +49458,32 @@
|
|
|
48289
49458
|
"$value": {
|
|
48290
49459
|
"color": "{base.color.neutral.0}",
|
|
48291
49460
|
"alpha": 0.8,
|
|
48292
|
-
"offsetX":
|
|
48293
|
-
|
|
48294
|
-
|
|
48295
|
-
|
|
49461
|
+
"offsetX": {
|
|
49462
|
+
"value": 0,
|
|
49463
|
+
"unit": "px"
|
|
49464
|
+
},
|
|
49465
|
+
"offsetY": {
|
|
49466
|
+
"value": 1,
|
|
49467
|
+
"unit": "px"
|
|
49468
|
+
},
|
|
49469
|
+
"blur": {
|
|
49470
|
+
"value": 1,
|
|
49471
|
+
"unit": "px"
|
|
49472
|
+
},
|
|
49473
|
+
"spread": {
|
|
49474
|
+
"value": 0,
|
|
49475
|
+
"unit": "px"
|
|
49476
|
+
},
|
|
48296
49477
|
"inset": false
|
|
48297
49478
|
},
|
|
48298
49479
|
"filePath": "src/tokens/functional/shadow/shadow.json5",
|
|
48299
49480
|
"isSource": true,
|
|
48300
49481
|
"$type": "shadow"
|
|
48301
49482
|
}
|
|
49483
|
+
},
|
|
49484
|
+
"org.primer.llm": {
|
|
49485
|
+
"usage": ["badge", "chip", "small-card", "subtle-elevation"],
|
|
49486
|
+
"rules": "Use for very subtle elevation on small elements. Provides minimal lift from surface. Do NOT use for interactive elements needing clear affordance."
|
|
48302
49487
|
}
|
|
48303
49488
|
},
|
|
48304
49489
|
"key": "{shadow.resting.xsmall}"
|