@primer/primitives 11.4.0 → 11.4.1-rc.14fb4bb1
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 +61 -5
- package/dist/build/schemas/borderToken.js +2 -1
- package/dist/build/schemas/colorToken.d.ts +639 -30
- package/dist/build/schemas/colorToken.js +3 -2
- package/dist/build/schemas/colorW3cValue.d.ts +28 -0
- package/dist/build/schemas/colorW3cValue.js +42 -0
- 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 +23 -2
- package/dist/build/schemas/gradientToken.js +2 -1
- package/dist/build/schemas/numberToken.d.ts +1 -1
- package/dist/build/schemas/shadowToken.d.ts +1751 -127
- package/dist/build/schemas/shadowToken.js +8 -2
- 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 +19 -1
- package/dist/build/transformers/colorAlphaToCss.js +6 -3
- package/dist/build/transformers/colorToHex.js +5 -2
- package/dist/build/transformers/colorToRgbAlpha.js +5 -2
- package/dist/build/transformers/colorToRgbaFloat.js +5 -0
- 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/gradientToCss.js +2 -1
- package/dist/build/transformers/shadowToCss.js +15 -1
- package/dist/build/transformers/utilities/normalizeColorValue.d.ts +23 -0
- package/dist/build/transformers/utilities/normalizeColorValue.js +74 -0
- 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 +5 -2
- package/dist/build/types/dimensionTokenValue.d.ts +9 -0
- package/dist/build/types/shadowTokenValue.d.ts +8 -5
- 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 +2629 -346
- package/dist/docs/functional/themes/dark-colorblind.json +2629 -346
- package/dist/docs/functional/themes/dark-dimmed-high-contrast.json +2629 -346
- package/dist/docs/functional/themes/dark-dimmed.json +2629 -346
- package/dist/docs/functional/themes/dark-high-contrast.json +2629 -346
- package/dist/docs/functional/themes/dark-tritanopia-high-contrast.json +2629 -346
- package/dist/docs/functional/themes/dark-tritanopia.json +2629 -346
- package/dist/docs/functional/themes/dark.json +2629 -346
- package/dist/docs/functional/themes/light-colorblind-high-contrast.json +2635 -352
- package/dist/docs/functional/themes/light-colorblind.json +2632 -349
- package/dist/docs/functional/themes/light-high-contrast.json +2635 -352
- package/dist/docs/functional/themes/light-tritanopia-high-contrast.json +2635 -352
- package/dist/docs/functional/themes/light-tritanopia.json +2632 -349
- package/dist/docs/functional/themes/light.json +2632 -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 +2757 -366
- package/dist/styleLint/functional/themes/dark-colorblind.json +2757 -366
- package/dist/styleLint/functional/themes/dark-dimmed-high-contrast.json +2757 -366
- package/dist/styleLint/functional/themes/dark-dimmed.json +2757 -366
- package/dist/styleLint/functional/themes/dark-high-contrast.json +2757 -366
- package/dist/styleLint/functional/themes/dark-tritanopia-high-contrast.json +2757 -366
- package/dist/styleLint/functional/themes/dark-tritanopia.json +2757 -366
- package/dist/styleLint/functional/themes/dark.json +2757 -366
- package/dist/styleLint/functional/themes/light-colorblind-high-contrast.json +2763 -372
- package/dist/styleLint/functional/themes/light-colorblind.json +2760 -369
- package/dist/styleLint/functional/themes/light-high-contrast.json +2763 -372
- package/dist/styleLint/functional/themes/light-tritanopia-high-contrast.json +2763 -372
- package/dist/styleLint/functional/themes/light-tritanopia.json +2760 -369
- package/dist/styleLint/functional/themes/light.json +2760 -369
- package/dist/styleLint/functional/typography/typography.json +28 -22
- package/package.json +9 -7
- package/src/tokens/base/motion/timing.json5 +12 -12
- package/src/tokens/base/size/size.json5 +194 -194
- 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 +1254 -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
|
@@ -647,7 +647,10 @@
|
|
|
647
647
|
"filePath": "src/tokens/functional/typography/typography.json5",
|
|
648
648
|
"isSource": true,
|
|
649
649
|
"original": {
|
|
650
|
-
"$value":
|
|
650
|
+
"$value": {
|
|
651
|
+
"value": 13,
|
|
652
|
+
"unit": "px"
|
|
653
|
+
},
|
|
651
654
|
"$type": "dimension",
|
|
652
655
|
"$extensions": {
|
|
653
656
|
"org.primer.figma": {
|
|
@@ -734,7 +737,10 @@
|
|
|
734
737
|
"filePath": "src/tokens/functional/typography/typography.json5",
|
|
735
738
|
"isSource": true,
|
|
736
739
|
"original": {
|
|
737
|
-
"$value":
|
|
740
|
+
"$value": {
|
|
741
|
+
"value": 0.9285,
|
|
742
|
+
"unit": "em"
|
|
743
|
+
},
|
|
738
744
|
"$type": "dimension",
|
|
739
745
|
"$extensions": {
|
|
740
746
|
"org.primer.figma": {
|
|
@@ -4,16 +4,52 @@
|
|
|
4
4
|
"--base-easing-easeIn": [0.7, 0.1, 0.75, 0.9],
|
|
5
5
|
"--base-easing-easeOut": [0.3, 0.8, 0.6, 1],
|
|
6
6
|
"--base-easing-easeInOut": [0.6, 0, 0.2, 1],
|
|
7
|
-
"--base-duration-0":
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"--base-duration-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"--base-duration-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
7
|
+
"--base-duration-0": {
|
|
8
|
+
"value": 0,
|
|
9
|
+
"unit": "ms"
|
|
10
|
+
},
|
|
11
|
+
"--base-duration-50": {
|
|
12
|
+
"value": 50,
|
|
13
|
+
"unit": "ms"
|
|
14
|
+
},
|
|
15
|
+
"--base-duration-100": {
|
|
16
|
+
"value": 100,
|
|
17
|
+
"unit": "ms"
|
|
18
|
+
},
|
|
19
|
+
"--base-duration-200": {
|
|
20
|
+
"value": 200,
|
|
21
|
+
"unit": "ms"
|
|
22
|
+
},
|
|
23
|
+
"--base-duration-300": {
|
|
24
|
+
"value": 300,
|
|
25
|
+
"unit": "ms"
|
|
26
|
+
},
|
|
27
|
+
"--base-duration-400": {
|
|
28
|
+
"value": 400,
|
|
29
|
+
"unit": "ms"
|
|
30
|
+
},
|
|
31
|
+
"--base-duration-500": {
|
|
32
|
+
"value": 500,
|
|
33
|
+
"unit": "ms"
|
|
34
|
+
},
|
|
35
|
+
"--base-duration-600": {
|
|
36
|
+
"value": 600,
|
|
37
|
+
"unit": "ms"
|
|
38
|
+
},
|
|
39
|
+
"--base-duration-700": {
|
|
40
|
+
"value": 700,
|
|
41
|
+
"unit": "ms"
|
|
42
|
+
},
|
|
43
|
+
"--base-duration-800": {
|
|
44
|
+
"value": 800,
|
|
45
|
+
"unit": "ms"
|
|
46
|
+
},
|
|
47
|
+
"--base-duration-900": {
|
|
48
|
+
"value": 900,
|
|
49
|
+
"unit": "ms"
|
|
50
|
+
},
|
|
51
|
+
"--base-duration-1000": {
|
|
52
|
+
"value": 1000,
|
|
53
|
+
"unit": "ms"
|
|
54
|
+
}
|
|
19
55
|
}
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"r": 0.12156862745098039,
|
|
92
92
|
"g": 0.13725490196078433,
|
|
93
93
|
"b": 0.1568627450980392,
|
|
94
|
-
"a": 0.
|
|
94
|
+
"a": 0.05
|
|
95
95
|
},
|
|
96
96
|
"type": "COLOR",
|
|
97
97
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"r": 0.12156862745098039,
|
|
142
142
|
"g": 0.13725490196078433,
|
|
143
143
|
"b": 0.1568627450980392,
|
|
144
|
-
"a": 0.
|
|
144
|
+
"a": 0.04
|
|
145
145
|
},
|
|
146
146
|
"type": "COLOR",
|
|
147
147
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"name": "shadow/resting/small/2/blur",
|
|
172
|
-
"value":
|
|
172
|
+
"value": 2,
|
|
173
173
|
"type": "FLOAT",
|
|
174
174
|
"scopes": ["EFFECT_FLOAT"],
|
|
175
175
|
"mode": "light protanopia deuteranopia",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"r": 0.12156862745098039,
|
|
192
192
|
"g": 0.13725490196078433,
|
|
193
193
|
"b": 0.1568627450980392,
|
|
194
|
-
"a": 0.
|
|
194
|
+
"a": 0.03
|
|
195
195
|
},
|
|
196
196
|
"type": "COLOR",
|
|
197
197
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"r": 0.00392156862745098,
|
|
92
92
|
"g": 0.01568627450980392,
|
|
93
93
|
"b": 0.03529411764705882,
|
|
94
|
-
"a": 0.
|
|
94
|
+
"a": 0.05
|
|
95
95
|
},
|
|
96
96
|
"type": "COLOR",
|
|
97
97
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"r": 0.00392156862745098,
|
|
142
142
|
"g": 0.01568627450980392,
|
|
143
143
|
"b": 0.03529411764705882,
|
|
144
|
-
"a": 0.
|
|
144
|
+
"a": 0.04
|
|
145
145
|
},
|
|
146
146
|
"type": "COLOR",
|
|
147
147
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"name": "shadow/resting/small/2/blur",
|
|
172
|
-
"value":
|
|
172
|
+
"value": 2,
|
|
173
173
|
"type": "FLOAT",
|
|
174
174
|
"scopes": ["EFFECT_FLOAT"],
|
|
175
175
|
"mode": "light high contrast",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"r": 0.00392156862745098,
|
|
192
192
|
"g": 0.01568627450980392,
|
|
193
193
|
"b": 0.03529411764705882,
|
|
194
|
-
"a": 0.
|
|
194
|
+
"a": 0.03
|
|
195
195
|
},
|
|
196
196
|
"type": "COLOR",
|
|
197
197
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"r": 0.12156862745098039,
|
|
92
92
|
"g": 0.13725490196078433,
|
|
93
93
|
"b": 0.1568627450980392,
|
|
94
|
-
"a": 0.
|
|
94
|
+
"a": 0.05
|
|
95
95
|
},
|
|
96
96
|
"type": "COLOR",
|
|
97
97
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"r": 0.12156862745098039,
|
|
142
142
|
"g": 0.13725490196078433,
|
|
143
143
|
"b": 0.1568627450980392,
|
|
144
|
-
"a": 0.
|
|
144
|
+
"a": 0.04
|
|
145
145
|
},
|
|
146
146
|
"type": "COLOR",
|
|
147
147
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"name": "shadow/resting/small/2/blur",
|
|
172
|
-
"value":
|
|
172
|
+
"value": 2,
|
|
173
173
|
"type": "FLOAT",
|
|
174
174
|
"scopes": ["EFFECT_FLOAT"],
|
|
175
175
|
"mode": "light tritanopia",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"r": 0.12156862745098039,
|
|
192
192
|
"g": 0.13725490196078433,
|
|
193
193
|
"b": 0.1568627450980392,
|
|
194
|
-
"a": 0.
|
|
194
|
+
"a": 0.03
|
|
195
195
|
},
|
|
196
196
|
"type": "COLOR",
|
|
197
197
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"r": 0.12156862745098039,
|
|
92
92
|
"g": 0.13725490196078433,
|
|
93
93
|
"b": 0.1568627450980392,
|
|
94
|
-
"a": 0.
|
|
94
|
+
"a": 0.05
|
|
95
95
|
},
|
|
96
96
|
"type": "COLOR",
|
|
97
97
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"r": 0.12156862745098039,
|
|
142
142
|
"g": 0.13725490196078433,
|
|
143
143
|
"b": 0.1568627450980392,
|
|
144
|
-
"a": 0.
|
|
144
|
+
"a": 0.04
|
|
145
145
|
},
|
|
146
146
|
"type": "COLOR",
|
|
147
147
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"name": "shadow/resting/small/2/blur",
|
|
172
|
-
"value":
|
|
172
|
+
"value": 2,
|
|
173
173
|
"type": "FLOAT",
|
|
174
174
|
"scopes": ["EFFECT_FLOAT"],
|
|
175
175
|
"mode": "light",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"r": 0.12156862745098039,
|
|
192
192
|
"g": 0.13725490196078433,
|
|
193
193
|
"b": 0.1568627450980392,
|
|
194
|
-
"a": 0.
|
|
194
|
+
"a": 0.03
|
|
195
195
|
},
|
|
196
196
|
"type": "COLOR",
|
|
197
197
|
"scopes": ["EFFECT_COLOR"],
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
304
304
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
305
305
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
306
|
-
--avatar-shadow:
|
|
306
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
307
307
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
308
308
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
309
309
|
--base-color-inset: var(--base-color-black);
|
|
@@ -358,8 +358,8 @@
|
|
|
358
358
|
--button-danger-bgColor-hover: var(--base-color-orange-9);
|
|
359
359
|
--button-danger-borderColor-hover: var(--base-color-orange-2);
|
|
360
360
|
--button-danger-fgColor-rest: var(--base-color-orange-2);
|
|
361
|
-
--button-danger-shadow-selected:
|
|
362
|
-
--button-default-shadow-resting:
|
|
361
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
362
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
363
363
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
364
364
|
--button-inactive-fgColor: var(--base-color-neutral-10);
|
|
365
365
|
--button-invisible-bgColor-active: var(--base-color-neutral-3);
|
|
@@ -373,10 +373,10 @@
|
|
|
373
373
|
--button-outline-fgColor-disabled: #74b9ff80;
|
|
374
374
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
375
375
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
376
|
-
--button-outline-shadow-selected:
|
|
376
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
377
377
|
--button-primary-bgColor-disabled: var(--base-color-blue-6);
|
|
378
378
|
--button-primary-borderColor-rest: var(--base-color-blue-2);
|
|
379
|
-
--button-primary-shadow-selected:
|
|
379
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
380
380
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
381
381
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
382
382
|
--buttonCounter-outline-bgColor-hover: #194fb133;
|
|
@@ -1091,11 +1091,11 @@
|
|
|
1091
1091
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
1092
1092
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
1093
1093
|
--selection-bgColor: #194fb1b3; /** Background color for text selection highlights */
|
|
1094
|
-
--shadow-floating-legacy:
|
|
1095
|
-
--shadow-inset: inset
|
|
1096
|
-
--shadow-resting-medium:
|
|
1097
|
-
--shadow-resting-small:
|
|
1098
|
-
--shadow-resting-xsmall:
|
|
1094
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
1095
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
1096
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
1097
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
1098
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
1099
1099
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
1100
1100
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
1101
1101
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -1170,10 +1170,10 @@
|
|
|
1170
1170
|
--focus-outline: 2px solid #409eff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
1171
1171
|
--page-header-bgColor: var(--bgColor-default);
|
|
1172
1172
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
1173
|
-
--shadow-floating-large:
|
|
1174
|
-
--shadow-floating-medium:
|
|
1175
|
-
--shadow-floating-small:
|
|
1176
|
-
--shadow-floating-xlarge:
|
|
1173
|
+
--shadow-floating-large: 0 0 0 1px #b7bdc8, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
1174
|
+
--shadow-floating-medium: 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; /** Medium floating shadow for popovers and action menus */
|
|
1175
|
+
--shadow-floating-small: 0 0 0 1px #b7bdc8, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
1176
|
+
--shadow-floating-xlarge: 0 0 0 1px #b7bdc8, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
1177
1177
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
1178
1178
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
1179
1179
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
@@ -1499,7 +1499,7 @@
|
|
|
1499
1499
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
1500
1500
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
1501
1501
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
1502
|
-
--avatar-shadow:
|
|
1502
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
1503
1503
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
1504
1504
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
1505
1505
|
--base-color-inset: var(--base-color-black);
|
|
@@ -1554,8 +1554,8 @@
|
|
|
1554
1554
|
--button-danger-bgColor-hover: var(--base-color-orange-9);
|
|
1555
1555
|
--button-danger-borderColor-hover: var(--base-color-orange-2);
|
|
1556
1556
|
--button-danger-fgColor-rest: var(--base-color-orange-2);
|
|
1557
|
-
--button-danger-shadow-selected:
|
|
1558
|
-
--button-default-shadow-resting:
|
|
1557
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
1558
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
1559
1559
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
1560
1560
|
--button-inactive-fgColor: var(--base-color-neutral-10);
|
|
1561
1561
|
--button-invisible-bgColor-active: var(--base-color-neutral-3);
|
|
@@ -1569,10 +1569,10 @@
|
|
|
1569
1569
|
--button-outline-fgColor-disabled: #74b9ff80;
|
|
1570
1570
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
1571
1571
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
1572
|
-
--button-outline-shadow-selected:
|
|
1572
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
1573
1573
|
--button-primary-bgColor-disabled: var(--base-color-blue-6);
|
|
1574
1574
|
--button-primary-borderColor-rest: var(--base-color-blue-2);
|
|
1575
|
-
--button-primary-shadow-selected:
|
|
1575
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
1576
1576
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
1577
1577
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
1578
1578
|
--buttonCounter-outline-bgColor-hover: #194fb133;
|
|
@@ -2287,11 +2287,11 @@
|
|
|
2287
2287
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
2288
2288
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
2289
2289
|
--selection-bgColor: #194fb1b3; /** Background color for text selection highlights */
|
|
2290
|
-
--shadow-floating-legacy:
|
|
2291
|
-
--shadow-inset: inset
|
|
2292
|
-
--shadow-resting-medium:
|
|
2293
|
-
--shadow-resting-small:
|
|
2294
|
-
--shadow-resting-xsmall:
|
|
2290
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
2291
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
2292
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
2293
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
2294
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
2295
2295
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
2296
2296
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
2297
2297
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -2366,10 +2366,10 @@
|
|
|
2366
2366
|
--focus-outline: 2px solid #409eff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
2367
2367
|
--page-header-bgColor: var(--bgColor-default);
|
|
2368
2368
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
2369
|
-
--shadow-floating-large:
|
|
2370
|
-
--shadow-floating-medium:
|
|
2371
|
-
--shadow-floating-small:
|
|
2372
|
-
--shadow-floating-xlarge:
|
|
2369
|
+
--shadow-floating-large: 0 0 0 1px #b7bdc8, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
2370
|
+
--shadow-floating-medium: 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; /** Medium floating shadow for popovers and action menus */
|
|
2371
|
+
--shadow-floating-small: 0 0 0 1px #b7bdc8, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
2372
|
+
--shadow-floating-xlarge: 0 0 0 1px #b7bdc8, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
2373
2373
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
2374
2374
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
2375
2375
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
302
302
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
303
303
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
304
|
-
--avatar-shadow:
|
|
304
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
305
305
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
306
306
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
307
307
|
--base-color-inset: var(--base-color-black);
|
|
@@ -355,8 +355,8 @@
|
|
|
355
355
|
--boxShadow-thicker: inset 0 0 0 var(--borderWidth-thicker); /** Thickest shadow (4px) used for high emphasis borders without layout shift. Use sparingly for maximum visual impact */
|
|
356
356
|
--boxShadow-thin: inset 0 0 0 var(--borderWidth-thin); /** Thin shadow used instead of a border to prevent layout shift */
|
|
357
357
|
--button-danger-bgColor-hover: var(--base-color-orange-6);
|
|
358
|
-
--button-danger-shadow-selected:
|
|
359
|
-
--button-default-shadow-resting:
|
|
358
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
359
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
360
360
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
361
361
|
--button-inactive-fgColor: var(--base-color-neutral-9);
|
|
362
362
|
--button-invisible-bgColor-disabled: var(--base-color-transparent);
|
|
@@ -366,9 +366,9 @@
|
|
|
366
366
|
--button-outline-fgColor-disabled: #4493f880;
|
|
367
367
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
368
368
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
369
|
-
--button-outline-shadow-selected:
|
|
369
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
370
370
|
--button-primary-bgColor-disabled: var(--base-color-blue-6);
|
|
371
|
-
--button-primary-shadow-selected:
|
|
371
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
372
372
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
373
373
|
--buttonCounter-danger-bgColor-rest: #49020233;
|
|
374
374
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
@@ -1114,11 +1114,11 @@
|
|
|
1114
1114
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
1115
1115
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
1116
1116
|
--selection-bgColor: #1f6febb3; /** Background color for text selection highlights */
|
|
1117
|
-
--shadow-floating-legacy:
|
|
1118
|
-
--shadow-inset: inset
|
|
1119
|
-
--shadow-resting-medium:
|
|
1120
|
-
--shadow-resting-small:
|
|
1121
|
-
--shadow-resting-xsmall:
|
|
1117
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
1118
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
1119
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
1120
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
1121
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
1122
1122
|
--tooltip-bgColor: var(--bgColor-emphasis);
|
|
1123
1123
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
1124
1124
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -1185,10 +1185,10 @@
|
|
|
1185
1185
|
--buttonKeybindingHint-danger-borderColor-disabled: var(--buttonKeybindingHint-default-borderColor-disabled);
|
|
1186
1186
|
--buttonKeybindingHint-danger-borderColor-rest: var(--buttonKeybindingHint-default-borderColor-rest);
|
|
1187
1187
|
--buttonKeybindingHint-danger-fgColor-disabled: var(--buttonKeybindingHint-default-fgColor-disabled);
|
|
1188
|
-
--shadow-floating-large:
|
|
1189
|
-
--shadow-floating-medium:
|
|
1190
|
-
--shadow-floating-small:
|
|
1191
|
-
--shadow-floating-xlarge:
|
|
1188
|
+
--shadow-floating-large: 0 0 0 1px #3d444d, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
1189
|
+
--shadow-floating-medium: 0 0 0 1px #3d444d, 0 8px 16px -4px #01040966, 0 4px 32px -4px #01040966, 0 24px 48px -12px #01040966, 0 48px 96px -24px #01040966; /** Medium floating shadow for popovers and action menus */
|
|
1190
|
+
--shadow-floating-small: 0 0 0 1px #3d444d, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
1191
|
+
--shadow-floating-xlarge: 0 0 0 1px #3d444d, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
1192
1192
|
--underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
|
|
1193
1193
|
--button-danger-borderColor-active: var(--button-danger-borderColor-hover);
|
|
1194
1194
|
--button-outline-borderColor-hover: var(--button-default-borderColor-hover);
|
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
1498
1498
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
1499
1499
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
1500
|
-
--avatar-shadow:
|
|
1500
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
1501
1501
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
1502
1502
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
1503
1503
|
--base-color-inset: var(--base-color-black);
|
|
@@ -1551,8 +1551,8 @@
|
|
|
1551
1551
|
--boxShadow-thicker: inset 0 0 0 var(--borderWidth-thicker); /** Thickest shadow (4px) used for high emphasis borders without layout shift. Use sparingly for maximum visual impact */
|
|
1552
1552
|
--boxShadow-thin: inset 0 0 0 var(--borderWidth-thin); /** Thin shadow used instead of a border to prevent layout shift */
|
|
1553
1553
|
--button-danger-bgColor-hover: var(--base-color-orange-6);
|
|
1554
|
-
--button-danger-shadow-selected:
|
|
1555
|
-
--button-default-shadow-resting:
|
|
1554
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
1555
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
1556
1556
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
1557
1557
|
--button-inactive-fgColor: var(--base-color-neutral-9);
|
|
1558
1558
|
--button-invisible-bgColor-disabled: var(--base-color-transparent);
|
|
@@ -1562,9 +1562,9 @@
|
|
|
1562
1562
|
--button-outline-fgColor-disabled: #4493f880;
|
|
1563
1563
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
1564
1564
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
1565
|
-
--button-outline-shadow-selected:
|
|
1565
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
1566
1566
|
--button-primary-bgColor-disabled: var(--base-color-blue-6);
|
|
1567
|
-
--button-primary-shadow-selected:
|
|
1567
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
1568
1568
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
1569
1569
|
--buttonCounter-danger-bgColor-rest: #49020233;
|
|
1570
1570
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
@@ -2310,11 +2310,11 @@
|
|
|
2310
2310
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
2311
2311
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
2312
2312
|
--selection-bgColor: #1f6febb3; /** Background color for text selection highlights */
|
|
2313
|
-
--shadow-floating-legacy:
|
|
2314
|
-
--shadow-inset: inset
|
|
2315
|
-
--shadow-resting-medium:
|
|
2316
|
-
--shadow-resting-small:
|
|
2317
|
-
--shadow-resting-xsmall:
|
|
2313
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
2314
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
2315
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
2316
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
2317
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
2318
2318
|
--tooltip-bgColor: var(--bgColor-emphasis);
|
|
2319
2319
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
2320
2320
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -2381,10 +2381,10 @@
|
|
|
2381
2381
|
--buttonKeybindingHint-danger-borderColor-disabled: var(--buttonKeybindingHint-default-borderColor-disabled);
|
|
2382
2382
|
--buttonKeybindingHint-danger-borderColor-rest: var(--buttonKeybindingHint-default-borderColor-rest);
|
|
2383
2383
|
--buttonKeybindingHint-danger-fgColor-disabled: var(--buttonKeybindingHint-default-fgColor-disabled);
|
|
2384
|
-
--shadow-floating-large:
|
|
2385
|
-
--shadow-floating-medium:
|
|
2386
|
-
--shadow-floating-small:
|
|
2387
|
-
--shadow-floating-xlarge:
|
|
2384
|
+
--shadow-floating-large: 0 0 0 1px #3d444d, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
2385
|
+
--shadow-floating-medium: 0 0 0 1px #3d444d, 0 8px 16px -4px #01040966, 0 4px 32px -4px #01040966, 0 24px 48px -12px #01040966, 0 48px 96px -24px #01040966; /** Medium floating shadow for popovers and action menus */
|
|
2386
|
+
--shadow-floating-small: 0 0 0 1px #3d444d, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
2387
|
+
--shadow-floating-xlarge: 0 0 0 1px #3d444d, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
2388
2388
|
--underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
|
|
2389
2389
|
--button-danger-borderColor-active: var(--button-danger-borderColor-hover);
|
|
2390
2390
|
--button-outline-borderColor-hover: var(--button-default-borderColor-hover);
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
307
307
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
308
308
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
309
|
-
--avatar-shadow:
|
|
309
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
310
310
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
311
311
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
312
312
|
--base-color-inset: var(--base-color-black);
|
|
@@ -359,8 +359,8 @@
|
|
|
359
359
|
--button-danger-bgColor-hover: var(--base-color-red-7);
|
|
360
360
|
--button-danger-borderColor-hover: var(--base-color-red-1);
|
|
361
361
|
--button-danger-fgColor-rest: var(--base-color-red-1);
|
|
362
|
-
--button-danger-shadow-selected:
|
|
363
|
-
--button-default-shadow-resting:
|
|
362
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
363
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
364
364
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
365
365
|
--button-inactive-fgColor: var(--base-color-neutral-9);
|
|
366
366
|
--button-invisible-bgColor-disabled: var(--base-color-transparent);
|
|
@@ -371,11 +371,11 @@
|
|
|
371
371
|
--button-outline-bgColor-rest: var(--base-color-neutral-12);
|
|
372
372
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
373
373
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
374
|
-
--button-outline-shadow-selected:
|
|
374
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
375
375
|
--button-primary-bgColor-active: var(--base-color-green-5);
|
|
376
376
|
--button-primary-bgColor-hover: var(--base-color-green-6);
|
|
377
377
|
--button-primary-borderColor-rest: var(--base-color-green-2);
|
|
378
|
-
--button-primary-shadow-selected:
|
|
378
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
379
379
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
380
380
|
--buttonCounter-danger-bgColor-rest: #5d0f1233;
|
|
381
381
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
@@ -1122,11 +1122,11 @@
|
|
|
1122
1122
|
--progressBar-bgColor-success: var(--bgColor-success-emphasis);
|
|
1123
1123
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
1124
1124
|
--selection-bgColor: #1b4b91b3; /** Background color for text selection highlights */
|
|
1125
|
-
--shadow-floating-legacy:
|
|
1126
|
-
--shadow-inset: inset
|
|
1127
|
-
--shadow-resting-medium:
|
|
1128
|
-
--shadow-resting-small:
|
|
1129
|
-
--shadow-resting-xsmall:
|
|
1125
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
1126
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
1127
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
1128
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
1129
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
1130
1130
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
1131
1131
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
1132
1132
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -1173,10 +1173,10 @@
|
|
|
1173
1173
|
--focus-outline: 2px solid #6cb6ff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
1174
1174
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
1175
1175
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
1176
|
-
--shadow-floating-large:
|
|
1177
|
-
--shadow-floating-medium:
|
|
1178
|
-
--shadow-floating-small:
|
|
1179
|
-
--shadow-floating-xlarge:
|
|
1176
|
+
--shadow-floating-large: 0 0 0 1px #b7bdc8, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
1177
|
+
--shadow-floating-medium: 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; /** Medium floating shadow for popovers and action menus */
|
|
1178
|
+
--shadow-floating-small: 0 0 0 1px #b7bdc8, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
1179
|
+
--shadow-floating-xlarge: 0 0 0 1px #b7bdc8, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
1180
1180
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
1181
1181
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
1182
1182
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
@@ -1502,7 +1502,7 @@
|
|
|
1502
1502
|
--outline-focus-offset: -0.125rem; /** Focus outline offset (-2px). Negative value creates an inset outline for keyboard focus indicators, ensuring the focus ring stays within the element bounds */
|
|
1503
1503
|
--outline-focus-width: 0.125rem; /** Focus outline width (2px). Standard width for keyboard focus indicators to meet WCAG 2.4.7 accessibility requirements */
|
|
1504
1504
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
1505
|
-
--avatar-shadow:
|
|
1505
|
+
--avatar-shadow: 0 0 0 2px #0d1117;
|
|
1506
1506
|
--avatarStack-fade-bgColor-default: var(--base-color-neutral-7);
|
|
1507
1507
|
--avatarStack-fade-bgColor-muted: var(--base-color-neutral-5);
|
|
1508
1508
|
--base-color-inset: var(--base-color-black);
|
|
@@ -1555,8 +1555,8 @@
|
|
|
1555
1555
|
--button-danger-bgColor-hover: var(--base-color-red-7);
|
|
1556
1556
|
--button-danger-borderColor-hover: var(--base-color-red-1);
|
|
1557
1557
|
--button-danger-fgColor-rest: var(--base-color-red-1);
|
|
1558
|
-
--button-danger-shadow-selected:
|
|
1559
|
-
--button-default-shadow-resting:
|
|
1558
|
+
--button-danger-shadow-selected: 0 0 0 0 #00000000;
|
|
1559
|
+
--button-default-shadow-resting: 0 0 0 0 #00000000;
|
|
1560
1560
|
--button-inactive-bgColor: var(--base-color-neutral-4);
|
|
1561
1561
|
--button-inactive-fgColor: var(--base-color-neutral-9);
|
|
1562
1562
|
--button-invisible-bgColor-disabled: var(--base-color-transparent);
|
|
@@ -1567,11 +1567,11 @@
|
|
|
1567
1567
|
--button-outline-bgColor-rest: var(--base-color-neutral-12);
|
|
1568
1568
|
--button-outline-fgColor-hover: var(--base-color-blue-3);
|
|
1569
1569
|
--button-outline-fgColor-rest: var(--base-color-blue-4);
|
|
1570
|
-
--button-outline-shadow-selected:
|
|
1570
|
+
--button-outline-shadow-selected: 0 0 0 0 #00000000;
|
|
1571
1571
|
--button-primary-bgColor-active: var(--base-color-green-5);
|
|
1572
1572
|
--button-primary-bgColor-hover: var(--base-color-green-6);
|
|
1573
1573
|
--button-primary-borderColor-rest: var(--base-color-green-2);
|
|
1574
|
-
--button-primary-shadow-selected:
|
|
1574
|
+
--button-primary-shadow-selected: 0 0 0 0 #00000000;
|
|
1575
1575
|
--button-star-iconColor: var(--base-color-yellow-2);
|
|
1576
1576
|
--buttonCounter-danger-bgColor-rest: #5d0f1233;
|
|
1577
1577
|
--buttonCounter-default-bgColor-rest: var(--base-color-neutral-6);
|
|
@@ -2318,11 +2318,11 @@
|
|
|
2318
2318
|
--progressBar-bgColor-success: var(--bgColor-success-emphasis);
|
|
2319
2319
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
2320
2320
|
--selection-bgColor: #1b4b91b3; /** Background color for text selection highlights */
|
|
2321
|
-
--shadow-floating-legacy:
|
|
2322
|
-
--shadow-inset: inset
|
|
2323
|
-
--shadow-resting-medium:
|
|
2324
|
-
--shadow-resting-small:
|
|
2325
|
-
--shadow-resting-xsmall:
|
|
2321
|
+
--shadow-floating-legacy: 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Legacy floating shadow for backward compatibility */
|
|
2322
|
+
--shadow-inset: inset 0 1px 0 0 #0104093d; /** Inset shadow for recessed elements */
|
|
2323
|
+
--shadow-resting-medium: 0 1px 1px 0 #01040966, 0 3px 6px 0 #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
2324
|
+
--shadow-resting-small: 0 1px 1px 0 #01040999, 0 1px 3px 0 #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
2325
|
+
--shadow-resting-xsmall: 0 1px 1px 0 #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
2326
2326
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
2327
2327
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
2328
2328
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -2369,10 +2369,10 @@
|
|
|
2369
2369
|
--focus-outline: 2px solid #6cb6ff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
2370
2370
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
2371
2371
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
2372
|
-
--shadow-floating-large:
|
|
2373
|
-
--shadow-floating-medium:
|
|
2374
|
-
--shadow-floating-small:
|
|
2375
|
-
--shadow-floating-xlarge:
|
|
2372
|
+
--shadow-floating-large: 0 0 0 1px #b7bdc8, 0 24px 48px 0 #010409; /** Large floating shadow for modals and dialogs */
|
|
2373
|
+
--shadow-floating-medium: 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; /** Medium floating shadow for popovers and action menus */
|
|
2374
|
+
--shadow-floating-small: 0 0 0 1px #b7bdc8, 0 6px 12px -3px #01040966, 0 6px 18px 0 #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
2375
|
+
--shadow-floating-xlarge: 0 0 0 1px #b7bdc8, 0 32px 64px 0 #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
2376
2376
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
2377
2377
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
2378
2378
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|