@primer/primitives 10.1.0-rc.3e576ad9 → 10.1.0-rc.4a7e266e
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/dist/build/primerStyleDictionary.js +1 -6
- package/dist/build/transformers/borderToCss.js +2 -2
- package/dist/css/functional/size/border.css +7 -7
- package/dist/css/functional/themes/dark-colorblind.css +2 -56
- package/dist/css/functional/themes/dark-dimmed.css +2 -56
- package/dist/css/functional/themes/dark-high-contrast.css +2 -56
- package/dist/css/functional/themes/dark-tritanopia.css +2 -56
- package/dist/css/functional/themes/dark.css +2 -56
- package/dist/css/functional/themes/light-colorblind.css +2 -56
- package/dist/css/functional/themes/light-high-contrast.css +2 -56
- package/dist/css/functional/themes/light-tritanopia.css +2 -56
- package/dist/css/functional/themes/light.css +2 -56
- package/dist/css/primitives.css +7 -7
- package/dist/docs/functional/size/border.json +18 -18
- package/dist/docs/functional/themes/dark-colorblind.json +1 -444
- package/dist/docs/functional/themes/dark-dimmed.json +1 -444
- package/dist/docs/functional/themes/dark-high-contrast.json +1 -444
- package/dist/docs/functional/themes/dark-tritanopia.json +1 -444
- package/dist/docs/functional/themes/dark.json +1 -444
- package/dist/docs/functional/themes/light-colorblind.json +1 -444
- package/dist/docs/functional/themes/light-high-contrast.json +1 -444
- package/dist/docs/functional/themes/light-tritanopia.json +1 -444
- package/dist/docs/functional/themes/light.json +1 -444
- package/dist/fallbacks/functional/size/border.json +7 -7
- package/dist/internalCss/dark-colorblind.css +2 -84
- package/dist/internalCss/dark-dimmed.css +2 -84
- package/dist/internalCss/dark-high-contrast.css +2 -84
- package/dist/internalCss/dark-tritanopia.css +2 -84
- package/dist/internalCss/dark.css +2 -84
- package/dist/internalCss/light-colorblind.css +2 -84
- package/dist/internalCss/light-high-contrast.css +2 -84
- package/dist/internalCss/light-tritanopia.css +2 -84
- package/dist/internalCss/light.css +2 -84
- package/dist/styleLint/functional/size/border.json +18 -18
- package/dist/styleLint/functional/themes/dark-colorblind.json +1 -444
- package/dist/styleLint/functional/themes/dark-dimmed.json +1 -444
- package/dist/styleLint/functional/themes/dark-high-contrast.json +1 -444
- package/dist/styleLint/functional/themes/dark-tritanopia.json +1 -444
- package/dist/styleLint/functional/themes/dark.json +1 -444
- package/dist/styleLint/functional/themes/light-colorblind.json +1 -444
- package/dist/styleLint/functional/themes/light-high-contrast.json +1 -444
- package/dist/styleLint/functional/themes/light-tritanopia.json +1 -444
- package/dist/styleLint/functional/themes/light.json +1 -444
- package/package.json +1 -1
- package/src/tokens/functional/border/border.json5 +0 -224
- package/src/tokens/functional/color/dark/primitives-dark.json5 +1 -0
- package/src/tokens/functional/size/border.json5 +7 -7
|
@@ -8,12 +8,7 @@ import { themeOverrides } from './preprocessors/themeOverrides.js';
|
|
|
8
8
|
* @formats [javascript/esm](https://github.com/primer/primitives/blob/main/config/formats/javascript-esm.ts), [javascript/commonJs](https://github.com/primer/primitives/blob/main/config/formats/javascript-commonJs.ts), [typescript/export-definition](https://github.com/primer/primitives/blob/main/config/formats/typescript-export-defition.ts)
|
|
9
9
|
* @transformers [color/rgbAlpha](https://github.com/primer/primitives/blob/main/config/tranformers/color-to-rgb-alpha.ts), [color/hexAlpha](https://github.com/primer/primitives/blob/main/config/tranformers/color-to-hex-alpha.ts), [color/hex](https://github.com/primer/primitives/blob/main/config/tranformers/color-to-hex6.ts), [json/deprecated](https://github.com/primer/primitives/blob/main/config/tranformers/json-deprecated.ts), [name/pathToDotNotation](https://github.com/primer/primitives/blob/main/config/tranformers/name-path-to-dot-notation.ts)
|
|
10
10
|
*/
|
|
11
|
-
export const PrimerStyleDictionary = new StyleDictionary(
|
|
12
|
-
// these are the defaults
|
|
13
|
-
log: {
|
|
14
|
-
verbosity: 'default', // 'default' | 'silent' | 'verbose'
|
|
15
|
-
},
|
|
16
|
-
});
|
|
11
|
+
export const PrimerStyleDictionary = new StyleDictionary();
|
|
17
12
|
/**
|
|
18
13
|
* Formats
|
|
19
14
|
*
|
|
@@ -32,7 +32,7 @@ export const borderToCss = {
|
|
|
32
32
|
if (!checkForBorderTokenProperties(value)) {
|
|
33
33
|
throw new Error(`Invalid border token property ${JSON.stringify(value)}. Must be an object with color, width and style properties.`);
|
|
34
34
|
}
|
|
35
|
-
/*
|
|
36
|
-
return `${value.
|
|
35
|
+
/* color | style | width */
|
|
36
|
+
return `${value.color} ${value.style} ${value.width}`;
|
|
37
37
|
},
|
|
38
38
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--boxShadow-thin: inset 0 0 0 0.0625rem; /* Thin shadow for borders */
|
|
3
|
-
--boxShadow-thick: inset 0 0 0 0.125rem;
|
|
4
|
-
--boxShadow-thicker: inset 0 0 0 0.25rem;
|
|
5
|
-
--borderWidth-default: 0.0625rem;
|
|
6
|
-
--borderWidth-thin: 0.0625rem;
|
|
7
|
-
--borderWidth-thick: 0.125rem;
|
|
8
|
-
--borderWidth-thicker: 0.25rem;
|
|
2
|
+
--boxShadow-thin: inset 0 0 0 max(1px, 0.0625rem); /* Thin shadow for borders */
|
|
3
|
+
--boxShadow-thick: inset 0 0 0 max(2px, 0.125rem);
|
|
4
|
+
--boxShadow-thicker: inset 0 0 0 max(4px, 0.25rem);
|
|
5
|
+
--borderWidth-default: max(1px, 0.0625rem);
|
|
6
|
+
--borderWidth-thin: max(1px, 0.0625rem);
|
|
7
|
+
--borderWidth-thick: max(2px, 0.125rem);
|
|
8
|
+
--borderWidth-thicker: max(4px, 0.25rem);
|
|
9
9
|
--borderRadius-small: 0.1875rem;
|
|
10
10
|
--borderRadius-medium: 0.375rem;
|
|
11
11
|
--borderRadius-large: 0.75rem;
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
313
313
|
--focus-outlineColor: #1f6feb;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #1f6feb solid 2px;
|
|
315
315
|
--menu-bgColor-active: #151b23;
|
|
316
316
|
--overlay-bgColor: #151b23;
|
|
317
317
|
--overlay-borderColor: #3d444db3;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
580
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
581
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
583
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
584
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #1f6feb;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #388bfd66;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #1f6feb;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #388bfd66;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #bd561d;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #db6d2866;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #bd561d;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #db6d2866;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #bd561d;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #db6d2866;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="dark_colorblind"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
919
892
|
--focus-outlineColor: #1f6feb;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #1f6feb solid 2px;
|
|
921
894
|
--menu-bgColor-active: #151b23;
|
|
922
895
|
--overlay-bgColor: #151b23;
|
|
923
896
|
--overlay-borderColor: #3d444db3;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1186
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
1187
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #1f6feb;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #388bfd66;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #1f6feb;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #388bfd66;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #bd561d;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #db6d2866;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #bd561d;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #db6d2866;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #bd561d;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #db6d2866;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #478be6;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #6cb6ff;
|
|
313
313
|
--focus-outlineColor: #316dca;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #316dca solid 2px;
|
|
315
315
|
--menu-bgColor-active: #151b23;
|
|
316
316
|
--overlay-bgColor: #2a313c;
|
|
317
317
|
--overlay-borderColor: #3d444db3;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #1c2128;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #1c2128;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
|
|
580
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
581
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
583
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
584
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #316dca;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #4184e466;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #347d39;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #46954a66;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #347d39;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #46954a66;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #c93c37;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #e5534b66;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #c93c37;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #e5534b66;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #966600;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #ae7c1466;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #ae5622;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #cc6b2c66;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #8256d0;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #986ee266;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #8256d0;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #986ee266;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #ae4c82;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #c9619866;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="dark_dimmed"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #478be6;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #6cb6ff;
|
|
919
892
|
--focus-outlineColor: #316dca;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #316dca solid 2px;
|
|
921
894
|
--menu-bgColor-active: #151b23;
|
|
922
895
|
--overlay-bgColor: #2a313c;
|
|
923
896
|
--overlay-borderColor: #3d444db3;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #1c2128;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #1c2128;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
|
|
1186
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
1187
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #316dca;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #4184e466;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #347d39;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #46954a66;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #347d39;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #46954a66;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #c93c37;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #e5534b66;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #c93c37;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #e5534b66;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #966600;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #ae7c1466;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #ae5622;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #cc6b2c66;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #8256d0;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #986ee266;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #8256d0;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #986ee266;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #ae4c82;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #c9619866;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #74b9ff;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #91cbff;
|
|
313
313
|
--focus-outlineColor: #409eff;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #409eff solid 2px;
|
|
315
315
|
--menu-bgColor-active: #151b23;
|
|
316
316
|
--overlay-bgColor: #151b23;
|
|
317
317
|
--overlay-borderColor: #b7bdc8;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
580
|
-
--border-default: 0.0625rem solid #b7bdc8;
|
|
581
|
-
--border-muted: 0.0625rem solid #b7bdc8;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #b7bdc8;
|
|
583
|
-
--border-disabled: 0.0625rem solid #9198a11f;
|
|
584
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #b7bdc8;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #409eff;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #5cacff;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #09b43a;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #0ac740;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #09b43a;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #0ac740;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #ff6a69;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #ff8080;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #ff6a69;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #ff8080;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #e09b13;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #edaa27;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #e7811d;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #f48b25;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #b87fff;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #bf8fff;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #b87fff;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #bf8fff;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #ef6eb1;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #f87cbd;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="dark_high_contrast"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #74b9ff;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #91cbff;
|
|
919
892
|
--focus-outlineColor: #409eff;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #409eff solid 2px;
|
|
921
894
|
--menu-bgColor-active: #151b23;
|
|
922
895
|
--overlay-bgColor: #151b23;
|
|
923
896
|
--overlay-borderColor: #b7bdc8;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1186
|
-
--border-default: 0.0625rem solid #b7bdc8;
|
|
1187
|
-
--border-muted: 0.0625rem solid #b7bdc8;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #b7bdc8;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #9198a11f;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #b7bdc8;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #409eff;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #5cacff;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #09b43a;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #0ac740;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #09b43a;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #0ac740;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #ff6a69;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #ff8080;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #ff6a69;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #ff8080;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #e09b13;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #edaa27;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #e7811d;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #f48b25;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #b87fff;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #bf8fff;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #b87fff;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #bf8fff;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #ef6eb1;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #f87cbd;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
313
313
|
--focus-outlineColor: #1f6feb;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #1f6feb solid 2px;
|
|
315
315
|
--menu-bgColor-active: #151b23;
|
|
316
316
|
--overlay-bgColor: #151b23;
|
|
317
317
|
--overlay-borderColor: #3d444db3;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
580
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
581
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
583
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
584
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #1f6feb;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #388bfd66;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #1f6feb;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #388bfd66;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #da3633;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #f8514966;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #da3633;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #f8514966;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #da3633;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #f8514966;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="dark_tritanopia"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
919
892
|
--focus-outlineColor: #1f6feb;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #1f6feb solid 2px;
|
|
921
894
|
--menu-bgColor-active: #151b23;
|
|
922
895
|
--overlay-bgColor: #151b23;
|
|
923
896
|
--overlay-borderColor: #3d444db3;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1186
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
1187
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #1f6feb;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #388bfd66;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #1f6feb;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #388bfd66;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #da3633;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #f8514966;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #da3633;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #f8514966;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #da3633;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #f8514966;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
313
313
|
--focus-outlineColor: #1f6feb;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #1f6feb solid 2px;
|
|
315
315
|
--menu-bgColor-active: #151b23;
|
|
316
316
|
--overlay-bgColor: #151b23;
|
|
317
317
|
--overlay-borderColor: #3d444db3;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
580
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
581
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
583
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
584
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #238636;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #2ea04366;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #238636;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #2ea04366;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #da3633;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #f8514966;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #da3633;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #f8514966;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #bd561d;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #db6d2866;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="dark"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #79c0ff;
|
|
919
892
|
--focus-outlineColor: #1f6feb;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #1f6feb solid 2px;
|
|
921
894
|
--menu-bgColor-active: #151b23;
|
|
922
895
|
--overlay-bgColor: #151b23;
|
|
923
896
|
--overlay-borderColor: #3d444db3;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1186
|
-
--border-default: 0.0625rem solid #3d444d;
|
|
1187
|
-
--border-muted: 0.0625rem solid #3d444db3;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #656c76;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #656c761a;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #00000000;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #656c76;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #3d444db3;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #1f6feb;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #388bfd66;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #238636;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #2ea04366;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #238636;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #2ea04366;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #da3633;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #f8514966;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #da3633;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #f8514966;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #9e6a03;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #bb800966;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #bd561d;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #db6d2866;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #8957e5;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #ab7df866;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #8957e5;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #ab7df866;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #db61a266;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #0969da;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #0550ae;
|
|
313
313
|
--focus-outlineColor: #0969da;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #0969da solid 2px;
|
|
315
315
|
--menu-bgColor-active: #ffffff00;
|
|
316
316
|
--overlay-bgColor: #ffffff;
|
|
317
317
|
--overlay-borderColor: #d1d9e080;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
580
|
-
--border-default: 0.0625rem solid #d1d9e0;
|
|
581
|
-
--border-muted: 0.0625rem solid #d1d9e0b3;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #818b98;
|
|
583
|
-
--border-disabled: 0.0625rem solid #818b981a;
|
|
584
|
-
--border-transparent: 0.0625rem solid #ffffff00;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #59636e;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #d1d9e0b3;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #0969da;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #54aeff66;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #0969da;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #54aeff66;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #0969da;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #54aeff66;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #bc4c00;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #fb8f4466;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #bc4c00;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #fb8f4466;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #9a6700;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #d4a72c66;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #bc4c00;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #fb8f4466;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #8250df;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #c297ff66;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #8250df;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #c297ff66;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf3989;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #ff80c866;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="light_colorblind"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #0969da;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #0550ae;
|
|
919
892
|
--focus-outlineColor: #0969da;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #0969da solid 2px;
|
|
921
894
|
--menu-bgColor-active: #ffffff00;
|
|
922
895
|
--overlay-bgColor: #ffffff;
|
|
923
896
|
--overlay-borderColor: #d1d9e080;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
1186
|
-
--border-default: 0.0625rem solid #d1d9e0;
|
|
1187
|
-
--border-muted: 0.0625rem solid #d1d9e0b3;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #818b98;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #818b981a;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #ffffff00;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #59636e;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #d1d9e0b3;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #0969da;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #54aeff66;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #0969da;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #54aeff66;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #0969da;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #54aeff66;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #bc4c00;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #fb8f4466;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #bc4c00;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #fb8f4466;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #9a6700;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #d4a72c66;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #bc4c00;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #fb8f4466;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #8250df;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #c297ff66;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #8250df;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #c297ff66;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #bf3989;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #ff80c866;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
--reactionButton-selected-fgColor-rest: #023b95;
|
|
312
312
|
--reactionButton-selected-fgColor-hover: #023b95;
|
|
313
313
|
--focus-outlineColor: #0349b4;
|
|
314
|
-
--focus-outline:
|
|
314
|
+
--focus-outline: #0349b4 solid 2px;
|
|
315
315
|
--menu-bgColor-active: #ffffff00;
|
|
316
316
|
--overlay-bgColor: #ffffff;
|
|
317
317
|
--overlay-borderColor: #454c54;
|
|
@@ -577,33 +577,6 @@
|
|
|
577
577
|
--shadow-floating-large: 0px 0px 0px 1px #454c54, 0px 40px 80px 0px #25292e3d;
|
|
578
578
|
--shadow-floating-xlarge: 0px 0px 0px 1px #454c54, 0px 56px 112px 0px #25292e52;
|
|
579
579
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
580
|
-
--border-default: 0.0625rem solid #454c54;
|
|
581
|
-
--border-muted: 0.0625rem solid #454c54;
|
|
582
|
-
--border-emphasis: 0.0625rem solid #454c54;
|
|
583
|
-
--border-disabled: 0.0625rem solid #59636e1f;
|
|
584
|
-
--border-transparent: 0.0625rem solid #ffffff00;
|
|
585
|
-
--border-neutral-emphasis: 0.0625rem solid #59636e;
|
|
586
|
-
--border-neutral-muted: 0.0625rem solid #454c54;
|
|
587
|
-
--border-accent-emphasis: 0.0625rem solid #0349b4;
|
|
588
|
-
--border-accent-muted: 0.0625rem solid #368cf9;
|
|
589
|
-
--border-success-emphasis: 0.0625rem solid #055d20;
|
|
590
|
-
--border-success-muted: 0.0625rem solid #26a148;
|
|
591
|
-
--border-open-emphasis: 0.0625rem solid #055d20;
|
|
592
|
-
--border-open-muted: 0.0625rem solid #26a148;
|
|
593
|
-
--border-danger-emphasis: 0.0625rem solid #a0111f;
|
|
594
|
-
--border-danger-muted: 0.0625rem solid #ee5a5d;
|
|
595
|
-
--border-closed-emphasis: 0.0625rem solid #a0111f;
|
|
596
|
-
--border-closed-muted: 0.0625rem solid #ee5a5d;
|
|
597
|
-
--border-attention-emphasis: 0.0625rem solid #744500;
|
|
598
|
-
--border-attention-muted: 0.0625rem solid #b58407;
|
|
599
|
-
--border-severe-emphasis: 0.0625rem solid #873800;
|
|
600
|
-
--border-severe-muted: 0.0625rem solid #dc6d1a;
|
|
601
|
-
--border-done-emphasis: 0.0625rem solid #622cbc;
|
|
602
|
-
--border-done-muted: 0.0625rem solid #a371f7;
|
|
603
|
-
--border-upsell-emphasis: 0.0625rem solid #622cbc;
|
|
604
|
-
--border-upsell-muted: 0.0625rem solid #a371f7;
|
|
605
|
-
--border-sponsors-emphasis: 0.0625rem solid #971368;
|
|
606
|
-
--border-sponsors-muted: 0.0625rem solid #ed4baf;
|
|
607
580
|
}
|
|
608
581
|
@media (prefers-color-scheme: dark) {
|
|
609
582
|
[data-color-mode="auto"][data-dark-theme="light_high_contrast"],
|
|
@@ -917,7 +890,7 @@
|
|
|
917
890
|
--reactionButton-selected-fgColor-rest: #023b95;
|
|
918
891
|
--reactionButton-selected-fgColor-hover: #023b95;
|
|
919
892
|
--focus-outlineColor: #0349b4;
|
|
920
|
-
--focus-outline:
|
|
893
|
+
--focus-outline: #0349b4 solid 2px;
|
|
921
894
|
--menu-bgColor-active: #ffffff00;
|
|
922
895
|
--overlay-bgColor: #ffffff;
|
|
923
896
|
--overlay-borderColor: #454c54;
|
|
@@ -1183,32 +1156,5 @@
|
|
|
1183
1156
|
--shadow-floating-large: 0px 0px 0px 1px #454c54, 0px 40px 80px 0px #25292e3d;
|
|
1184
1157
|
--shadow-floating-xlarge: 0px 0px 0px 1px #454c54, 0px 56px 112px 0px #25292e52;
|
|
1185
1158
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
1186
|
-
--border-default: 0.0625rem solid #454c54;
|
|
1187
|
-
--border-muted: 0.0625rem solid #454c54;
|
|
1188
|
-
--border-emphasis: 0.0625rem solid #454c54;
|
|
1189
|
-
--border-disabled: 0.0625rem solid #59636e1f;
|
|
1190
|
-
--border-transparent: 0.0625rem solid #ffffff00;
|
|
1191
|
-
--border-neutral-emphasis: 0.0625rem solid #59636e;
|
|
1192
|
-
--border-neutral-muted: 0.0625rem solid #454c54;
|
|
1193
|
-
--border-accent-emphasis: 0.0625rem solid #0349b4;
|
|
1194
|
-
--border-accent-muted: 0.0625rem solid #368cf9;
|
|
1195
|
-
--border-success-emphasis: 0.0625rem solid #055d20;
|
|
1196
|
-
--border-success-muted: 0.0625rem solid #26a148;
|
|
1197
|
-
--border-open-emphasis: 0.0625rem solid #055d20;
|
|
1198
|
-
--border-open-muted: 0.0625rem solid #26a148;
|
|
1199
|
-
--border-danger-emphasis: 0.0625rem solid #a0111f;
|
|
1200
|
-
--border-danger-muted: 0.0625rem solid #ee5a5d;
|
|
1201
|
-
--border-closed-emphasis: 0.0625rem solid #a0111f;
|
|
1202
|
-
--border-closed-muted: 0.0625rem solid #ee5a5d;
|
|
1203
|
-
--border-attention-emphasis: 0.0625rem solid #744500;
|
|
1204
|
-
--border-attention-muted: 0.0625rem solid #b58407;
|
|
1205
|
-
--border-severe-emphasis: 0.0625rem solid #873800;
|
|
1206
|
-
--border-severe-muted: 0.0625rem solid #dc6d1a;
|
|
1207
|
-
--border-done-emphasis: 0.0625rem solid #622cbc;
|
|
1208
|
-
--border-done-muted: 0.0625rem solid #a371f7;
|
|
1209
|
-
--border-upsell-emphasis: 0.0625rem solid #622cbc;
|
|
1210
|
-
--border-upsell-muted: 0.0625rem solid #a371f7;
|
|
1211
|
-
--border-sponsors-emphasis: 0.0625rem solid #971368;
|
|
1212
|
-
--border-sponsors-muted: 0.0625rem solid #ed4baf;
|
|
1213
1159
|
}
|
|
1214
1160
|
}
|