@primer/primitives 10.3.0-rc.416d4297 → 10.3.0-rc.7be162ee
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/platforms/figma.js +40 -36
- package/dist/build/transformers/colorToHex.js +2 -2
- package/dist/build/transformers/colorToRgbAlpha.js +2 -2
- package/dist/build/transformers/shadowToCss.js +2 -2
- package/dist/build/transformers/utilities/alpha.d.ts +2 -2
- package/dist/build/transformers/utilities/alpha.js +3 -3
- package/dist/build/utilities/log.d.ts +6 -0
- package/dist/build/utilities/log.js +34 -0
- package/dist/css/functional/themes/dark-colorblind.css +10 -10
- package/dist/css/functional/themes/dark-high-contrast.css +2 -2
- package/dist/css/functional/themes/light-colorblind.css +10 -10
- package/dist/css/functional/themes/light-high-contrast.css +2 -2
- package/dist/docs/functional/themes/dark-colorblind.json +561 -37
- package/dist/docs/functional/themes/dark-dimmed.json +381 -13
- package/dist/docs/functional/themes/dark-high-contrast.json +558 -30
- package/dist/docs/functional/themes/dark-tritanopia.json +469 -23
- package/dist/docs/functional/themes/dark.json +352 -12
- package/dist/docs/functional/themes/light-colorblind.json +538 -30
- package/dist/docs/functional/themes/light-high-contrast.json +498 -24
- package/dist/docs/functional/themes/light-tritanopia.json +507 -19
- package/dist/docs/functional/themes/light.json +350 -10
- package/dist/figma/themes/dark-colorblind.json +229 -96
- package/dist/figma/themes/dark-dimmed.json +96 -64
- package/dist/figma/themes/dark-high-contrast.json +243 -79
- package/dist/figma/themes/dark-tritanopia.json +178 -96
- package/dist/figma/themes/dark.json +96 -96
- package/dist/figma/themes/light-colorblind.json +190 -91
- package/dist/figma/themes/light-high-contrast.json +185 -74
- package/dist/figma/themes/light-tritanopia.json +170 -90
- package/dist/figma/themes/light.json +95 -95
- package/dist/internalCss/dark-colorblind.css +10 -10
- package/dist/internalCss/light-colorblind.css +10 -10
- package/dist/styleLint/functional/themes/dark-colorblind.json +561 -37
- package/dist/styleLint/functional/themes/dark-dimmed.json +381 -13
- package/dist/styleLint/functional/themes/dark-high-contrast.json +556 -28
- package/dist/styleLint/functional/themes/dark-tritanopia.json +469 -23
- package/dist/styleLint/functional/themes/dark.json +352 -12
- package/dist/styleLint/functional/themes/light-colorblind.json +538 -30
- package/dist/styleLint/functional/themes/light-high-contrast.json +496 -22
- package/dist/styleLint/functional/themes/light-tritanopia.json +507 -19
- package/dist/styleLint/functional/themes/light.json +350 -10
- package/package.json +1 -1
- package/src/tokens/component/diffBlob.json5 +94 -0
- package/src/tokens/component/page.json5 +20 -0
- package/src/tokens/component/reactionButton.json5 +78 -0
- package/src/tokens/component/timelineBadge.json5 +19 -0
- package/src/tokens/functional/color/dark/app-dark.json5 +0 -16
- package/src/tokens/functional/color/dark/overrides/dark.dimmed.json5 +0 -17
- package/src/tokens/functional/color/dark/overrides/dark.high-contrast.json5 +0 -71
- package/src/tokens/functional/color/dark/overrides/dark.protanopia-deuteranopia.json5 +5 -63
- package/src/tokens/functional/color/dark/overrides/dark.tritanopia.json5 +0 -37
- package/src/tokens/functional/color/dark/patterns-dark.json5 +0 -67
- package/src/tokens/functional/color/light/app-light.json5 +0 -16
- package/src/tokens/functional/color/light/overrides/light.high-contrast.json5 +0 -49
- package/src/tokens/functional/color/light/overrides/light.protanopia-deuteranopia.json5 +15 -76
- package/src/tokens/functional/color/light/overrides/light.tritanopia.json5 +0 -71
- package/src/tokens/functional/color/light/patterns-light.json5 +1 -65
|
@@ -24,40 +24,44 @@ const validFigmaToken = (token, options) => __awaiter(void 0, void 0, void 0, fu
|
|
|
24
24
|
// is a color or dimension type
|
|
25
25
|
return validTypes.includes(token.$type);
|
|
26
26
|
});
|
|
27
|
-
export const figma = (outputFile, prefix, buildPath, options) =>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
'
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
'
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
27
|
+
export const figma = (outputFile, prefix, buildPath, options = {}) => {
|
|
28
|
+
const { theme } = options;
|
|
29
|
+
const figmaTheme = ((theme === null || theme === void 0 ? void 0 : theme[0]) || '').replaceAll('-', ' ');
|
|
30
|
+
return {
|
|
31
|
+
prefix,
|
|
32
|
+
buildPath,
|
|
33
|
+
preprocessors: ['themeOverrides'],
|
|
34
|
+
transforms: [
|
|
35
|
+
'color/rgbaFloat',
|
|
36
|
+
'fontFamily/figma',
|
|
37
|
+
'float/pixelUnitless',
|
|
38
|
+
'dimension/pixelUnitless',
|
|
39
|
+
// 'border/figma',
|
|
40
|
+
// 'typography/figma',
|
|
41
|
+
'fontWeight/number',
|
|
42
|
+
'figma/attributes',
|
|
43
|
+
'name/pathToFigma',
|
|
44
|
+
],
|
|
45
|
+
options: Object.assign(Object.assign({ basePxFontSize: 16, fontFamilies: {
|
|
46
|
+
'fontStack/system': 'SF Pro Text',
|
|
47
|
+
'fontStack/sansSerif': 'SF Pro Text',
|
|
48
|
+
'fontStack/sansSerifDisplay': 'SF Pro Display',
|
|
49
|
+
'fontStack/monospace': 'SF Mono',
|
|
50
|
+
} }, options), { theme: figmaTheme, themeOverrides: {
|
|
51
|
+
theme: options.theme,
|
|
52
|
+
} }),
|
|
53
|
+
files: [
|
|
54
|
+
{
|
|
55
|
+
destination: outputFile,
|
|
56
|
+
filter: (token, config) => {
|
|
57
|
+
return validFigmaToken(token, config);
|
|
58
|
+
},
|
|
59
|
+
format: `json/figma`,
|
|
60
|
+
options: {
|
|
61
|
+
outputReferences: true,
|
|
62
|
+
theme: figmaTheme,
|
|
63
|
+
},
|
|
55
64
|
},
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
theme: options === null || options === void 0 ? void 0 : options.theme[0].replaceAll('-', ' '),
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
});
|
|
65
|
+
],
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -13,11 +13,11 @@ export const colorToHex = {
|
|
|
13
13
|
type: 'value',
|
|
14
14
|
transitive: true,
|
|
15
15
|
filter: isColor,
|
|
16
|
-
transform: (token) => {
|
|
16
|
+
transform: (token, config) => {
|
|
17
17
|
const alphaValue = token.alpha;
|
|
18
18
|
if (alphaValue === null || alphaValue === undefined) {
|
|
19
19
|
return toHex(getTokenValue(token));
|
|
20
20
|
}
|
|
21
|
-
return toHex(alpha(getTokenValue(token), alphaValue, token));
|
|
21
|
+
return toHex(alpha(getTokenValue(token), alphaValue, token, config));
|
|
22
22
|
},
|
|
23
23
|
};
|
|
@@ -12,9 +12,9 @@ export const colorToRgbAlpha = {
|
|
|
12
12
|
type: 'value',
|
|
13
13
|
transitive: true,
|
|
14
14
|
filter: isColorWithAlpha,
|
|
15
|
-
transform: (token) => {
|
|
15
|
+
transform: (token, config) => {
|
|
16
16
|
if (token.alpha === null)
|
|
17
17
|
return getTokenValue(token);
|
|
18
|
-
return alpha(getTokenValue(token), token.alpha, token);
|
|
18
|
+
return alpha(getTokenValue(token), token.alpha, token, config);
|
|
19
19
|
},
|
|
20
20
|
};
|
|
@@ -14,7 +14,7 @@ export const shadowToCss = {
|
|
|
14
14
|
type: 'value',
|
|
15
15
|
transitive: true,
|
|
16
16
|
filter: isShadow,
|
|
17
|
-
transform: (token) => {
|
|
17
|
+
transform: (token, config) => {
|
|
18
18
|
// extract value
|
|
19
19
|
const value = getTokenValue(token);
|
|
20
20
|
const valueProp = token.$value ? '$value' : 'value';
|
|
@@ -27,7 +27,7 @@ export const shadowToCss = {
|
|
|
27
27
|
return shadow;
|
|
28
28
|
checkRequiredTokenProperties(shadow, ['color', 'offsetX', 'offsetY', 'blur', 'spread']);
|
|
29
29
|
/*css box shadow: inset? | offset-x | offset-y | blur-radius | spread-radius | color */
|
|
30
|
-
return `${shadow.inset === true ? 'inset ' : ''}${shadow.offsetX} ${shadow.offsetY} ${shadow.blur} ${shadow.spread} ${toHex(alpha(getTokenValue(Object.assign(Object.assign({}, token), { [valueProp]: shadow }), 'color'), shadow.alpha || 1, token))}`;
|
|
30
|
+
return `${shadow.inset === true ? 'inset ' : ''}${shadow.offsetX} ${shadow.offsetY} ${shadow.blur} ${shadow.spread} ${toHex(alpha(getTokenValue(Object.assign(Object.assign({}, token), { [valueProp]: shadow }), 'color'), shadow.alpha || 1, token, config))}`;
|
|
31
31
|
})
|
|
32
32
|
.join(', ');
|
|
33
33
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TransformedToken } from 'style-dictionary/types';
|
|
1
|
+
import type { PlatformConfig, TransformedToken } from 'style-dictionary/types';
|
|
2
2
|
/**
|
|
3
3
|
* alpha
|
|
4
4
|
* @description takes a colors string like hex or rgba and returns an rgba color with the specified alpha value
|
|
@@ -6,4 +6,4 @@ import type { TransformedToken } from 'style-dictionary/types';
|
|
|
6
6
|
* @param desiredAlpha number
|
|
7
7
|
* @returns rgba value
|
|
8
8
|
*/
|
|
9
|
-
export declare const alpha: (color: string, desiredAlpha: number, token?: TransformedToken) => string;
|
|
9
|
+
export declare const alpha: (color: string, desiredAlpha: number, token?: TransformedToken, config?: PlatformConfig) => string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { rgba, parseToRgba } from 'color2k';
|
|
2
|
+
import { log } from '../../utilities/log.js';
|
|
2
3
|
/**
|
|
3
4
|
* alpha
|
|
4
5
|
* @description takes a colors string like hex or rgba and returns an rgba color with the specified alpha value
|
|
@@ -6,11 +7,10 @@ import { rgba, parseToRgba } from 'color2k';
|
|
|
6
7
|
* @param desiredAlpha number
|
|
7
8
|
* @returns rgba value
|
|
8
9
|
*/
|
|
9
|
-
export const alpha = (color, desiredAlpha, token) => {
|
|
10
|
+
export const alpha = (color, desiredAlpha, token, config) => {
|
|
10
11
|
const [r, g, b, a] = parseToRgba(color);
|
|
11
12
|
if (a < 1 && desiredAlpha < 1) {
|
|
12
|
-
|
|
13
|
-
console.warn(`🚨 You are setting an alpha value of "${desiredAlpha}" for a color with an alpha value (${color}). The previous alpha value will be disregarded as if the color would have been 100% opaque.${token !== undefined ? `\n ↳ Token: "${token.name}" in file: "${token.filePath}"` : ''}`);
|
|
13
|
+
log.info(`🚨 You are setting an alpha value of "${desiredAlpha}" for a color with an alpha value (${color}). The previous alpha value will be disregarded as if the color would have been 100% opaque.${token !== undefined ? `\n ↳ Token: "${token.name}" in file: "${token.filePath}"` : ''}`, config);
|
|
14
14
|
}
|
|
15
15
|
return rgba(r, g, b, desiredAlpha);
|
|
16
16
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PlatformConfig } from 'style-dictionary/types';
|
|
2
|
+
export declare const log: {
|
|
3
|
+
info: (message: string, config?: PlatformConfig) => void;
|
|
4
|
+
warning: (message: string, config?: PlatformConfig) => void;
|
|
5
|
+
error: (message: string, config?: PlatformConfig) => void;
|
|
6
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const logMessage = (message, type = 'warning', config) => {
|
|
2
|
+
var _a, _b, _c, _d, _e;
|
|
3
|
+
// early return if verbosity is silent
|
|
4
|
+
if (((_a = config === null || config === void 0 ? void 0 : config.log) === null || _a === void 0 ? void 0 : _a.verbosity) === 'silent' && type !== 'error') {
|
|
5
|
+
return;
|
|
6
|
+
}
|
|
7
|
+
// early return if verbosity is default and type is info
|
|
8
|
+
if (((_b = config === null || config === void 0 ? void 0 : config.log) === null || _b === void 0 ? void 0 : _b.verbosity) === 'default' && type === 'info') {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
// early return
|
|
12
|
+
if ((((_c = config === null || config === void 0 ? void 0 : config.log) === null || _c === void 0 ? void 0 : _c.warnings) === 'disabled' || ((_d = config === null || config === void 0 ? void 0 : config.log) === null || _d === void 0 ? void 0 : _d.warnings) === 'warn') && type === 'info') {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
// early return
|
|
16
|
+
if (((_e = config === null || config === void 0 ? void 0 : config.log) === null || _e === void 0 ? void 0 : _e.warnings) === 'disabled' && type === 'warning') {
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
if (type === 'warning') {
|
|
20
|
+
// eslint-disable-next-line no-console
|
|
21
|
+
return console.warn(message);
|
|
22
|
+
}
|
|
23
|
+
if (type === 'error') {
|
|
24
|
+
// eslint-disable-next-line no-console
|
|
25
|
+
return console.error(message);
|
|
26
|
+
}
|
|
27
|
+
// eslint-disable-next-line no-console
|
|
28
|
+
console.log(message);
|
|
29
|
+
};
|
|
30
|
+
export const log = {
|
|
31
|
+
info: (message, config) => logMessage(message, 'info', config),
|
|
32
|
+
warning: (message, config) => logMessage(message, 'warning', config),
|
|
33
|
+
error: (message, config) => logMessage(message, 'error', config),
|
|
34
|
+
};
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
--bgColor-muted: #151b23;
|
|
31
31
|
--bgColor-neutral-emphasis: #656c76;
|
|
32
32
|
--bgColor-neutral-muted: #656c7633;
|
|
33
|
-
--bgColor-open-emphasis: #
|
|
34
|
-
--bgColor-open-muted: #
|
|
33
|
+
--bgColor-open-emphasis: #1f6feb;
|
|
34
|
+
--bgColor-open-muted: #388bfd33;
|
|
35
35
|
--bgColor-severe-emphasis: #bd561d;
|
|
36
36
|
--bgColor-severe-muted: #db6d281a;
|
|
37
37
|
--bgColor-sponsors-emphasis: #bf4b8a;
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
--borderColor-done-emphasis: #8957e5;
|
|
51
51
|
--borderColor-done-muted: #ab7df866;
|
|
52
52
|
--borderColor-emphasis: #656c76;
|
|
53
|
-
--borderColor-open-emphasis: #
|
|
54
|
-
--borderColor-open-muted: #
|
|
53
|
+
--borderColor-open-emphasis: #388bfd;
|
|
54
|
+
--borderColor-open-muted: #388bfd66;
|
|
55
55
|
--borderColor-severe-emphasis: #bd561d;
|
|
56
56
|
--borderColor-severe-muted: #db6d2866;
|
|
57
57
|
--borderColor-sponsors-emphasis: #bf4b8a;
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
--fgColor-link: var(--fgColor-accent);
|
|
285
285
|
--fgColor-muted: #9198a1;
|
|
286
286
|
--fgColor-neutral: #9198a1;
|
|
287
|
-
--fgColor-open: #
|
|
287
|
+
--fgColor-open: #58a6ff;
|
|
288
288
|
--fgColor-severe: #db6d28;
|
|
289
289
|
--fgColor-sponsors: #db61a2;
|
|
290
290
|
--fgColor-success: #58a6ff;
|
|
@@ -636,8 +636,8 @@
|
|
|
636
636
|
--bgColor-muted: #151b23;
|
|
637
637
|
--bgColor-neutral-emphasis: #656c76;
|
|
638
638
|
--bgColor-neutral-muted: #656c7633;
|
|
639
|
-
--bgColor-open-emphasis: #
|
|
640
|
-
--bgColor-open-muted: #
|
|
639
|
+
--bgColor-open-emphasis: #1f6feb;
|
|
640
|
+
--bgColor-open-muted: #388bfd33;
|
|
641
641
|
--bgColor-severe-emphasis: #bd561d;
|
|
642
642
|
--bgColor-severe-muted: #db6d281a;
|
|
643
643
|
--bgColor-sponsors-emphasis: #bf4b8a;
|
|
@@ -656,8 +656,8 @@
|
|
|
656
656
|
--borderColor-done-emphasis: #8957e5;
|
|
657
657
|
--borderColor-done-muted: #ab7df866;
|
|
658
658
|
--borderColor-emphasis: #656c76;
|
|
659
|
-
--borderColor-open-emphasis: #
|
|
660
|
-
--borderColor-open-muted: #
|
|
659
|
+
--borderColor-open-emphasis: #388bfd;
|
|
660
|
+
--borderColor-open-muted: #388bfd66;
|
|
661
661
|
--borderColor-severe-emphasis: #bd561d;
|
|
662
662
|
--borderColor-severe-muted: #db6d2866;
|
|
663
663
|
--borderColor-sponsors-emphasis: #bf4b8a;
|
|
@@ -890,7 +890,7 @@
|
|
|
890
890
|
--fgColor-link: var(--fgColor-accent);
|
|
891
891
|
--fgColor-muted: #9198a1;
|
|
892
892
|
--fgColor-neutral: #9198a1;
|
|
893
|
-
--fgColor-open: #
|
|
893
|
+
--fgColor-open: #58a6ff;
|
|
894
894
|
--fgColor-severe: #db6d28;
|
|
895
895
|
--fgColor-sponsors: #db61a2;
|
|
896
896
|
--fgColor-success: #58a6ff;
|
|
@@ -412,7 +412,6 @@
|
|
|
412
412
|
--sideNav-bgColor-selected: #212830;
|
|
413
413
|
--skeletonLoader-bgColor: #2a313c;
|
|
414
414
|
--timelineBadge-bgColor: #212830;
|
|
415
|
-
--topicTag-borderColor: #00000000;
|
|
416
415
|
--underlineNav-borderColor-active: #ff967d;
|
|
417
416
|
--avatar-bgColor: #ffffff1a;
|
|
418
417
|
--avatar-borderColor: #ffffffe6;
|
|
@@ -534,6 +533,7 @@
|
|
|
534
533
|
--shadow-resting-medium: 0px 3px 6px 0px #010409cc;
|
|
535
534
|
--shadow-resting-small: 0px 1px 0px 0px #01040966;
|
|
536
535
|
--shadow-resting-xsmall: 0px 1px 0px 0px #010409cc;
|
|
536
|
+
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
537
537
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
538
538
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
539
539
|
--border-closed-emphasis: var(--border-danger-emphasis);
|
|
@@ -1018,7 +1018,6 @@
|
|
|
1018
1018
|
--sideNav-bgColor-selected: #212830;
|
|
1019
1019
|
--skeletonLoader-bgColor: #2a313c;
|
|
1020
1020
|
--timelineBadge-bgColor: #212830;
|
|
1021
|
-
--topicTag-borderColor: #00000000;
|
|
1022
1021
|
--underlineNav-borderColor-active: #ff967d;
|
|
1023
1022
|
--avatar-bgColor: #ffffff1a;
|
|
1024
1023
|
--avatar-borderColor: #ffffffe6;
|
|
@@ -1140,6 +1139,7 @@
|
|
|
1140
1139
|
--shadow-resting-medium: 0px 3px 6px 0px #010409cc;
|
|
1141
1140
|
--shadow-resting-small: 0px 1px 0px 0px #01040966;
|
|
1142
1141
|
--shadow-resting-xsmall: 0px 1px 0px 0px #010409cc;
|
|
1142
|
+
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
1143
1143
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
1144
1144
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
1145
1145
|
--border-closed-emphasis: var(--border-danger-emphasis);
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
--bgColor-muted: #f6f8fa;
|
|
30
30
|
--bgColor-neutral-emphasis: #59636e;
|
|
31
31
|
--bgColor-neutral-muted: #818b981f;
|
|
32
|
-
--bgColor-open-emphasis: #
|
|
33
|
-
--bgColor-open-muted: #
|
|
32
|
+
--bgColor-open-emphasis: #0969da;
|
|
33
|
+
--bgColor-open-muted: #ddf4ff;
|
|
34
34
|
--bgColor-severe-emphasis: #bc4c00;
|
|
35
35
|
--bgColor-severe-muted: #fff1e5;
|
|
36
36
|
--bgColor-sponsors-emphasis: #bf3989;
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
--borderColor-done-muted: #c297ff66;
|
|
51
51
|
--borderColor-emphasis: #818b98;
|
|
52
52
|
--borderColor-neutral-emphasis: #59636e;
|
|
53
|
-
--borderColor-open-emphasis: #
|
|
54
|
-
--borderColor-open-muted: #
|
|
53
|
+
--borderColor-open-emphasis: #218bff;
|
|
54
|
+
--borderColor-open-muted: #54aeff66;
|
|
55
55
|
--borderColor-severe-emphasis: #bc4c00;
|
|
56
56
|
--borderColor-severe-muted: #fb8f4466;
|
|
57
57
|
--borderColor-sponsors-emphasis: #bf3989;
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
--fgColor-done: #8250df;
|
|
267
267
|
--fgColor-muted: #59636e;
|
|
268
268
|
--fgColor-neutral: #59636e;
|
|
269
|
-
--fgColor-open: #
|
|
269
|
+
--fgColor-open: #0969da;
|
|
270
270
|
--fgColor-severe: #bc4c00;
|
|
271
271
|
--fgColor-sponsors: #bf3989;
|
|
272
272
|
--fgColor-success: #0969da;
|
|
@@ -635,8 +635,8 @@
|
|
|
635
635
|
--bgColor-muted: #f6f8fa;
|
|
636
636
|
--bgColor-neutral-emphasis: #59636e;
|
|
637
637
|
--bgColor-neutral-muted: #818b981f;
|
|
638
|
-
--bgColor-open-emphasis: #
|
|
639
|
-
--bgColor-open-muted: #
|
|
638
|
+
--bgColor-open-emphasis: #0969da;
|
|
639
|
+
--bgColor-open-muted: #ddf4ff;
|
|
640
640
|
--bgColor-severe-emphasis: #bc4c00;
|
|
641
641
|
--bgColor-severe-muted: #fff1e5;
|
|
642
642
|
--bgColor-sponsors-emphasis: #bf3989;
|
|
@@ -656,8 +656,8 @@
|
|
|
656
656
|
--borderColor-done-muted: #c297ff66;
|
|
657
657
|
--borderColor-emphasis: #818b98;
|
|
658
658
|
--borderColor-neutral-emphasis: #59636e;
|
|
659
|
-
--borderColor-open-emphasis: #
|
|
660
|
-
--borderColor-open-muted: #
|
|
659
|
+
--borderColor-open-emphasis: #218bff;
|
|
660
|
+
--borderColor-open-muted: #54aeff66;
|
|
661
661
|
--borderColor-severe-emphasis: #bc4c00;
|
|
662
662
|
--borderColor-severe-muted: #fb8f4466;
|
|
663
663
|
--borderColor-sponsors-emphasis: #bf3989;
|
|
@@ -872,7 +872,7 @@
|
|
|
872
872
|
--fgColor-done: #8250df;
|
|
873
873
|
--fgColor-muted: #59636e;
|
|
874
874
|
--fgColor-neutral: #59636e;
|
|
875
|
-
--fgColor-open: #
|
|
875
|
+
--fgColor-open: #0969da;
|
|
876
876
|
--fgColor-severe: #bc4c00;
|
|
877
877
|
--fgColor-sponsors: #bf3989;
|
|
878
878
|
--fgColor-success: #0969da;
|
|
@@ -398,7 +398,6 @@
|
|
|
398
398
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
399
399
|
--shadow-resting-medium: 0px 3px 6px 0px #25292e1f;
|
|
400
400
|
--skeletonLoader-bgColor: #dae0e7;
|
|
401
|
-
--topicTag-borderColor: #ffffff00;
|
|
402
401
|
--treeViewItem-leadingVisual-iconColor-rest: #368cf9;
|
|
403
402
|
--underlineNav-borderColor-active: #cd3425;
|
|
404
403
|
--avatar-bgColor: #ffffff;
|
|
@@ -540,6 +539,7 @@
|
|
|
540
539
|
--sideNav-bgColor-selected: #ffffff;
|
|
541
540
|
--timelineBadge-bgColor: var(--bgColor-muted);
|
|
542
541
|
--tooltip-bgColor: var(--bgColor-emphasis);
|
|
542
|
+
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
543
543
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
544
544
|
--border-closed-emphasis: var(--border-danger-emphasis);
|
|
545
545
|
--border-closed-muted: var(--border-danger-muted);
|
|
@@ -1004,7 +1004,6 @@
|
|
|
1004
1004
|
--shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
|
|
1005
1005
|
--shadow-resting-medium: 0px 3px 6px 0px #25292e1f;
|
|
1006
1006
|
--skeletonLoader-bgColor: #dae0e7;
|
|
1007
|
-
--topicTag-borderColor: #ffffff00;
|
|
1008
1007
|
--treeViewItem-leadingVisual-iconColor-rest: #368cf9;
|
|
1009
1008
|
--underlineNav-borderColor-active: #cd3425;
|
|
1010
1009
|
--avatar-bgColor: #ffffff;
|
|
@@ -1146,6 +1145,7 @@
|
|
|
1146
1145
|
--sideNav-bgColor-selected: #ffffff;
|
|
1147
1146
|
--timelineBadge-bgColor: var(--bgColor-muted);
|
|
1148
1147
|
--tooltip-bgColor: var(--bgColor-emphasis);
|
|
1148
|
+
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
1149
1149
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
1150
1150
|
--border-closed-emphasis: var(--border-danger-emphasis);
|
|
1151
1151
|
--border-closed-muted: var(--border-danger-muted);
|