@primer/primitives 11.4.0-rc.f798df25 → 11.4.1-rc.4e2d1de5
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/filters/hasLlmExtensions.d.ts +7 -0
- package/dist/build/filters/hasLlmExtensions.js +11 -0
- package/dist/build/filters/index.d.ts +1 -0
- package/dist/build/filters/index.js +1 -0
- package/dist/build/formats/index.d.ts +1 -0
- package/dist/build/formats/index.js +1 -0
- package/dist/build/formats/markdownLlmGuidelines.d.ts +11 -0
- package/dist/build/formats/markdownLlmGuidelines.js +1168 -0
- package/dist/build/platforms/index.d.ts +1 -0
- package/dist/build/platforms/index.js +1 -0
- package/dist/build/platforms/llmGuidelines.d.ts +2 -0
- package/dist/build/platforms/llmGuidelines.js +17 -0
- package/dist/build/preprocessors/inheritGroupProperties.d.ts +7 -0
- package/dist/build/preprocessors/inheritGroupProperties.js +70 -0
- package/dist/build/primerStyleDictionary.js +7 -1
- package/dist/build/schemas/borderToken.d.ts +22 -2
- package/dist/build/schemas/borderToken.js +6 -0
- package/dist/build/schemas/colorToken.d.ts +4 -0
- package/dist/build/schemas/colorToken.js +2 -0
- package/dist/build/schemas/cubicBezierToken.d.ts +6 -0
- package/dist/build/schemas/cubicBezierToken.js +10 -2
- package/dist/build/schemas/designToken.d.ts +1 -1
- package/dist/build/schemas/designToken.js +113 -21
- package/dist/build/schemas/dimensionToken.d.ts +14 -3
- package/dist/build/schemas/dimensionToken.js +6 -2
- package/dist/build/schemas/dimensionValue.d.ts +24 -1
- package/dist/build/schemas/dimensionValue.js +20 -1
- package/dist/build/schemas/durationToken.d.ts +13 -1
- package/dist/build/schemas/durationToken.js +6 -0
- package/dist/build/schemas/durationValue.d.ts +11 -1
- package/dist/build/schemas/durationValue.js +13 -3
- package/dist/build/schemas/fontFamilyToken.d.ts +4 -0
- package/dist/build/schemas/fontFamilyToken.js +2 -0
- package/dist/build/schemas/fontWeightToken.d.ts +4 -0
- package/dist/build/schemas/fontWeightToken.js +2 -0
- package/dist/build/schemas/gradientToken.d.ts +4 -0
- package/dist/build/schemas/gradientToken.js +2 -0
- package/dist/build/schemas/llmExtension.d.ts +9 -0
- package/dist/build/schemas/llmExtension.js +11 -0
- package/dist/build/schemas/numberToken.d.ts +4 -0
- package/dist/build/schemas/numberToken.js +2 -0
- package/dist/build/schemas/shadowToken.d.ts +676 -84
- package/dist/build/schemas/shadowToken.js +2 -0
- package/dist/build/schemas/stringToken.d.ts +6 -0
- package/dist/build/schemas/stringToken.js +6 -0
- package/dist/build/schemas/transitionToken.d.ts +20 -2
- package/dist/build/schemas/transitionToken.js +6 -0
- package/dist/build/schemas/typographyToken.d.ts +38 -4
- package/dist/build/schemas/typographyToken.js +6 -0
- package/dist/build/schemas/validTokenType.d.ts +5 -1
- package/dist/build/schemas/validTokenType.js +71 -17
- package/dist/build/schemas/viewportRangeToken.d.ts +6 -0
- package/dist/build/schemas/viewportRangeToken.js +6 -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/utilities/parseDimension.d.ts +12 -0
- package/dist/build/transformers/utilities/parseDimension.js +31 -0
- package/dist/build/types/dimensionTokenValue.d.ts +9 -0
- package/dist/css/base/motion/motion.css +5 -4
- package/dist/css/functional/size/border.css +9 -14
- package/dist/css/functional/size/radius.css +7 -0
- package/dist/css/functional/size/size-coarse.css +3 -3
- package/dist/css/functional/size/size-fine.css +3 -3
- package/dist/css/functional/size/viewport.css +1 -1
- package/dist/css/functional/themes/dark-colorblind-high-contrast.css +194 -190
- package/dist/css/functional/themes/dark-colorblind.css +194 -190
- package/dist/css/functional/themes/dark-dimmed-high-contrast.css +194 -190
- package/dist/css/functional/themes/dark-dimmed.css +194 -190
- package/dist/css/functional/themes/dark-high-contrast.css +194 -190
- package/dist/css/functional/themes/dark-tritanopia-high-contrast.css +194 -190
- package/dist/css/functional/themes/dark-tritanopia.css +194 -190
- package/dist/css/functional/themes/dark.css +194 -190
- package/dist/css/functional/themes/light-colorblind-high-contrast.css +194 -190
- package/dist/css/functional/themes/light-colorblind.css +194 -190
- package/dist/css/functional/themes/light-high-contrast.css +194 -190
- package/dist/css/functional/themes/light-tritanopia-high-contrast.css +194 -190
- package/dist/css/functional/themes/light-tritanopia.css +194 -190
- package/dist/css/functional/themes/light.css +194 -190
- package/dist/css/functional/typography/typography.css +4 -4
- package/dist/css/primitives.css +5 -0
- package/dist/docs/base/motion/motion.json +181 -32
- 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 +62 -182
- package/dist/docs/functional/size/breakpoints.json +24 -6
- package/dist/docs/functional/size/radius.json +221 -0
- package/dist/docs/functional/size/size-coarse.json +45 -3
- package/dist/docs/functional/size/size-fine.json +45 -3
- package/dist/docs/functional/size/size.json +60 -15
- package/dist/docs/functional/size/viewport.json +2 -2
- package/dist/docs/functional/themes/dark-colorblind-high-contrast.json +1043 -97
- package/dist/docs/functional/themes/dark-colorblind.json +1043 -97
- package/dist/docs/functional/themes/dark-dimmed-high-contrast.json +1043 -97
- package/dist/docs/functional/themes/dark-dimmed.json +1081 -135
- package/dist/docs/functional/themes/dark-high-contrast.json +1043 -97
- package/dist/docs/functional/themes/dark-tritanopia-high-contrast.json +1043 -97
- package/dist/docs/functional/themes/dark-tritanopia.json +1043 -97
- package/dist/docs/functional/themes/dark.json +1043 -97
- package/dist/docs/functional/themes/light-colorblind-high-contrast.json +1049 -103
- package/dist/docs/functional/themes/light-colorblind.json +1049 -103
- package/dist/docs/functional/themes/light-high-contrast.json +1049 -103
- package/dist/docs/functional/themes/light-tritanopia-high-contrast.json +1049 -103
- package/dist/docs/functional/themes/light-tritanopia.json +1049 -103
- package/dist/docs/functional/themes/light.json +1049 -103
- package/dist/docs/functional/typography/typography.json +180 -10
- package/dist/fallbacks/base/motion/motion.json +49 -12
- package/dist/fallbacks/functional/size/border.json +0 -5
- package/dist/fallbacks/functional/size/radius.json +7 -0
- package/dist/fallbacks/functional/size/viewport.json +1 -1
- package/dist/figma/dimension/dimension.json +30 -20
- package/dist/figma/themes/dark-colorblind.json +85 -0
- package/dist/figma/themes/dark-dimmed.json +134 -49
- package/dist/figma/themes/dark-high-contrast.json +85 -0
- package/dist/figma/themes/dark-tritanopia.json +85 -0
- package/dist/figma/themes/dark.json +85 -0
- package/dist/figma/themes/light-colorblind.json +89 -4
- package/dist/figma/themes/light-high-contrast.json +89 -4
- package/dist/figma/themes/light-tritanopia.json +89 -4
- package/dist/figma/themes/light.json +89 -4
- package/dist/figma/typography/typography.json +44 -40
- package/dist/internalCss/dark-colorblind-high-contrast.css +208 -218
- package/dist/internalCss/dark-colorblind.css +208 -218
- package/dist/internalCss/dark-dimmed-high-contrast.css +208 -218
- package/dist/internalCss/dark-dimmed.css +208 -218
- package/dist/internalCss/dark-high-contrast.css +208 -218
- package/dist/internalCss/dark-tritanopia-high-contrast.css +208 -218
- package/dist/internalCss/dark-tritanopia.css +208 -218
- package/dist/internalCss/dark.css +208 -218
- package/dist/internalCss/light-colorblind-high-contrast.css +208 -218
- package/dist/internalCss/light-colorblind.css +208 -218
- package/dist/internalCss/light-high-contrast.css +208 -218
- package/dist/internalCss/light-tritanopia-high-contrast.css +208 -218
- package/dist/internalCss/light-tritanopia.css +208 -218
- package/dist/internalCss/light.css +208 -218
- package/dist/styleLint/base/motion/motion.json +181 -32
- 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 +55 -175
- package/dist/styleLint/functional/size/breakpoints.json +24 -6
- package/dist/styleLint/functional/size/radius.json +221 -0
- package/dist/styleLint/functional/size/size-coarse.json +45 -3
- package/dist/styleLint/functional/size/size-fine.json +45 -3
- package/dist/styleLint/functional/size/size.json +111 -66
- package/dist/styleLint/functional/size/viewport.json +2 -2
- package/dist/styleLint/functional/themes/dark-colorblind-high-contrast.json +975 -29
- package/dist/styleLint/functional/themes/dark-colorblind.json +975 -29
- package/dist/styleLint/functional/themes/dark-dimmed-high-contrast.json +975 -29
- package/dist/styleLint/functional/themes/dark-dimmed.json +1013 -67
- package/dist/styleLint/functional/themes/dark-high-contrast.json +975 -29
- package/dist/styleLint/functional/themes/dark-tritanopia-high-contrast.json +975 -29
- package/dist/styleLint/functional/themes/dark-tritanopia.json +975 -29
- package/dist/styleLint/functional/themes/dark.json +975 -29
- package/dist/styleLint/functional/themes/light-colorblind-high-contrast.json +981 -35
- package/dist/styleLint/functional/themes/light-colorblind.json +981 -35
- package/dist/styleLint/functional/themes/light-high-contrast.json +981 -35
- package/dist/styleLint/functional/themes/light-tritanopia-high-contrast.json +981 -35
- package/dist/styleLint/functional/themes/light-tritanopia.json +981 -35
- package/dist/styleLint/functional/themes/light.json +981 -35
- package/dist/styleLint/functional/typography/typography.json +196 -26
- package/package.json +6 -3
- package/src/tokens/base/motion/easing.json5 +39 -4
- package/src/tokens/base/motion/timing.json5 +12 -12
- package/src/tokens/base/size/size.json5 +19 -19
- package/src/tokens/base/typography/typography.json5 +6 -6
- package/src/tokens/functional/border/border.json5 +25 -0
- package/src/tokens/functional/color/bgColor.json5 +165 -0
- package/src/tokens/functional/color/borderColor.json5 +146 -0
- package/src/tokens/functional/color/control.json5 +24 -0
- package/src/tokens/functional/color/data-vis.json5 +7 -0
- package/src/tokens/functional/color/display.json5 +7 -0
- package/src/tokens/functional/color/fgColor.json5 +101 -1
- package/src/tokens/functional/color/focus.json5 +5 -0
- package/src/tokens/functional/color/selection.json5 +5 -0
- package/src/tokens/functional/color/syntax.json5 +14 -0
- package/src/tokens/functional/shadow/shadow.json5 +49 -4
- package/src/tokens/functional/size/border.json5 +22 -74
- package/src/tokens/functional/size/breakpoints.json5 +6 -6
- package/src/tokens/functional/size/radius.json5 +90 -0
- package/src/tokens/functional/size/size-coarse.json5 +24 -3
- package/src/tokens/functional/size/size-fine.json5 +45 -24
- package/src/tokens/functional/size/size.json5 +50 -15
- package/src/tokens/functional/size/viewport.json5 +1 -1
- package/src/tokens/functional/typography/font-stack.json5 +60 -0
- package/src/tokens/functional/typography/typography.json5 +71 -44
- 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/src/tokens/removed/testing.json5 +0 -4
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @spec See /DESIGN_TOKENS_SPEC.md for naming logic and semantic pairings.
|
|
3
|
+
* @rule Never use raw values (hex/px). Use semantic tokens ONLY.
|
|
4
|
+
*/
|
|
1
5
|
[data-color-mode="dark"][data-dark-theme="dark_tritanopia_high_contrast"],
|
|
2
6
|
[data-color-mode="auto"][data-light-theme="dark_tritanopia_high_contrast"] {
|
|
3
7
|
--button-outline-bgColor-active: #0d419d;
|
|
@@ -10,55 +14,55 @@
|
|
|
10
14
|
--control-checked-bgColor-active: #3c79d0;
|
|
11
15
|
--control-checked-bgColor-hover: #2b64c1;
|
|
12
16
|
--control-danger-bgColor-active: #c51120;
|
|
13
|
-
--fgColor-accent: #74b9ff;
|
|
14
|
-
--fgColor-done: #d3abff;
|
|
15
|
-
--fgColor-sponsors: #ff90c8;
|
|
17
|
+
--fgColor-accent: #74b9ff; /** Accent text for links and interactive elements */
|
|
18
|
+
--fgColor-done: #d3abff; /** Text color for completed/done state indicators */
|
|
19
|
+
--fgColor-sponsors: #ff90c8; /** Text color for GitHub Sponsors content */
|
|
16
20
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
17
21
|
--avatar-shadow: 0px 0px 0px 2px #0d1117;
|
|
18
22
|
--avatarStack-fade-bgColor-default: #3d444d;
|
|
19
23
|
--avatarStack-fade-bgColor-muted: #2a313c;
|
|
20
|
-
--bgColor-accent-emphasis: #194fb1;
|
|
21
|
-
--bgColor-accent-muted: #5cacff1a;
|
|
22
|
-
--bgColor-attention-emphasis: #7b4900;
|
|
23
|
-
--bgColor-attention-muted: #edaa2726;
|
|
24
|
-
--bgColor-danger-emphasis: #ad0116;
|
|
25
|
-
--bgColor-danger-muted: #ff80801a;
|
|
26
|
-
--bgColor-disabled: #262c36;
|
|
27
|
-
--bgColor-done-emphasis: #6921d7;
|
|
28
|
-
--bgColor-done-muted: #bf8fff26;
|
|
29
|
-
--bgColor-emphasis: #3d444d;
|
|
30
|
-
--bgColor-muted: #151b23;
|
|
31
|
-
--bgColor-neutral-emphasis: #3d444d;
|
|
32
|
-
--bgColor-neutral-muted: #212830;
|
|
33
|
-
--bgColor-open-emphasis: #ad0116;
|
|
34
|
-
--bgColor-open-muted: #ff80801a;
|
|
35
|
-
--bgColor-severe-emphasis: #ad0116;
|
|
36
|
-
--bgColor-severe-muted: #f48b251a;
|
|
37
|
-
--bgColor-sponsors-emphasis: #9c1d6a;
|
|
38
|
-
--bgColor-sponsors-muted: #f87cbd1a;
|
|
39
|
-
--bgColor-success-emphasis: #194fb1;
|
|
40
|
-
--bgColor-success-muted: #5cacff26;
|
|
41
|
-
--bgColor-transparent: #00000000;
|
|
42
|
-
--borderColor-accent-emphasis: #409eff;
|
|
43
|
-
--borderColor-accent-muted: #5cacff;
|
|
44
|
-
--borderColor-attention-emphasis: #e09b13;
|
|
45
|
-
--borderColor-attention-muted: #edaa27;
|
|
46
|
-
--borderColor-danger-emphasis: #ff6a69;
|
|
47
|
-
--borderColor-danger-muted: #ff8080;
|
|
48
|
-
--borderColor-default: #b7bdc8;
|
|
49
|
-
--borderColor-disabled: #656c761a;
|
|
50
|
-
--borderColor-done-emphasis: #b87fff;
|
|
51
|
-
--borderColor-done-muted: #bf8fff;
|
|
52
|
-
--borderColor-open-emphasis: #ff6a69;
|
|
53
|
-
--borderColor-open-muted: #ff8080;
|
|
54
|
-
--borderColor-severe-emphasis: #e7811d;
|
|
55
|
-
--borderColor-severe-muted: #ff8080;
|
|
56
|
-
--borderColor-sponsors-emphasis: #ef6eb1;
|
|
57
|
-
--borderColor-sponsors-muted: #f87cbd;
|
|
58
|
-
--borderColor-success-emphasis: #409eff;
|
|
59
|
-
--borderColor-success-muted: #5cacff;
|
|
60
|
-
--borderColor-translucent: #9198a1;
|
|
61
|
-
--borderColor-transparent: #00000000;
|
|
24
|
+
--bgColor-accent-emphasis: #194fb1; /** Strong accent background for active states and focused states */
|
|
25
|
+
--bgColor-accent-muted: #5cacff1a; /** Subtle accent background for informational or selected elements */
|
|
26
|
+
--bgColor-attention-emphasis: #7b4900; /** Strong attention background for prominent warnings */
|
|
27
|
+
--bgColor-attention-muted: #edaa2726; /** Subtle attention background for warnings and caution states */
|
|
28
|
+
--bgColor-danger-emphasis: #ad0116; /** Emphasized danger background for critical errors and delete confirmations */
|
|
29
|
+
--bgColor-danger-muted: #ff80801a; /** Muted danger background for error states and destructive action contexts */
|
|
30
|
+
--bgColor-disabled: #262c36; /** Background for disabled interactive elements */
|
|
31
|
+
--bgColor-done-emphasis: #6921d7; /** Strong background for completed/done state badges and labels */
|
|
32
|
+
--bgColor-done-muted: #bf8fff26; /** Subtle background for completed/done state indicators */
|
|
33
|
+
--bgColor-emphasis: #3d444d; /** High-emphasis dark background for strong visual contrast */
|
|
34
|
+
--bgColor-muted: #151b23; /** Muted background for secondary content areas and subtle grouping */
|
|
35
|
+
--bgColor-neutral-emphasis: #3d444d; /** Strong neutral background for prominent neutral elements */
|
|
36
|
+
--bgColor-neutral-muted: #212830; /** Subtle neutral background for tags, labels, and secondary UI elements */
|
|
37
|
+
--bgColor-open-emphasis: #ad0116; /** Strong background for open state badges and labels */
|
|
38
|
+
--bgColor-open-muted: #ff80801a; /** Subtle background for open state indicators (issues, PRs) */
|
|
39
|
+
--bgColor-severe-emphasis: #ad0116; /** Strong severe background for prominent high-priority warnings */
|
|
40
|
+
--bgColor-severe-muted: #f48b251a; /** Subtle severe background for high-priority warnings */
|
|
41
|
+
--bgColor-sponsors-emphasis: #9c1d6a; /** Strong background for prominent GitHub Sponsors elements */
|
|
42
|
+
--bgColor-sponsors-muted: #f87cbd1a; /** Subtle background for GitHub Sponsors content */
|
|
43
|
+
--bgColor-success-emphasis: #194fb1; /** Strong success background for prominent positive actions */
|
|
44
|
+
--bgColor-success-muted: #5cacff26; /** Subtle success background for positive feedback and completed states */
|
|
45
|
+
--bgColor-transparent: #00000000; /** Fully transparent background */
|
|
46
|
+
--borderColor-accent-emphasis: #409eff; /** Strong accent border for selected or focused elements */
|
|
47
|
+
--borderColor-accent-muted: #5cacff; /** Subtle accent border for selected or focused elements */
|
|
48
|
+
--borderColor-attention-emphasis: #e09b13; /** Strong attention border for prominent warnings */
|
|
49
|
+
--borderColor-attention-muted: #edaa27; /** Subtle attention border for warnings and caution states */
|
|
50
|
+
--borderColor-danger-emphasis: #ff6a69; /** Strong danger border for destructive actions and errors */
|
|
51
|
+
--borderColor-danger-muted: #ff8080; /** Subtle danger border for errors and destructive contexts */
|
|
52
|
+
--borderColor-default: #b7bdc8; /** Default border color for most UI elements */
|
|
53
|
+
--borderColor-disabled: #656c761a; /** Border color for disabled interactive elements */
|
|
54
|
+
--borderColor-done-emphasis: #b87fff; /** Strong border for completed/done state badges */
|
|
55
|
+
--borderColor-done-muted: #bf8fff; /** Subtle border for completed/done state indicators */
|
|
56
|
+
--borderColor-open-emphasis: #ff6a69; /** Strong border for open state badges */
|
|
57
|
+
--borderColor-open-muted: #ff8080; /** Subtle border for open state indicators */
|
|
58
|
+
--borderColor-severe-emphasis: #e7811d; /** Strong severe border for prominent high-priority warnings */
|
|
59
|
+
--borderColor-severe-muted: #ff8080; /** Subtle severe border for high-priority warnings */
|
|
60
|
+
--borderColor-sponsors-emphasis: #ef6eb1; /** Strong border for prominent GitHub Sponsors elements */
|
|
61
|
+
--borderColor-sponsors-muted: #f87cbd; /** Subtle border for GitHub Sponsors content */
|
|
62
|
+
--borderColor-success-emphasis: #409eff; /** Strong success border for prominent positive elements */
|
|
63
|
+
--borderColor-success-muted: #5cacff; /** Subtle success border for positive feedback elements */
|
|
64
|
+
--borderColor-translucent: #9198a1; /** Semi-transparent border for overlays and layered elements */
|
|
65
|
+
--borderColor-transparent: #00000000; /** Fully transparent border */
|
|
62
66
|
--button-danger-bgColor-hover: #ad0116;
|
|
63
67
|
--button-danger-borderColor-hover: #ffb1af;
|
|
64
68
|
--button-danger-fgColor-rest: #ffb1af;
|
|
@@ -496,16 +500,16 @@
|
|
|
496
500
|
--display-yellow-scale-7: #df9e11;
|
|
497
501
|
--display-yellow-scale-8: #edb431;
|
|
498
502
|
--display-yellow-scale-9: #f0ca6a;
|
|
499
|
-
--fgColor-attention: #f0b72f;
|
|
500
|
-
--fgColor-danger: #ff9492;
|
|
501
|
-
--fgColor-disabled: #656c76;
|
|
502
|
-
--fgColor-link: var(--fgColor-accent);
|
|
503
|
-
--fgColor-muted: #b7bdc8;
|
|
504
|
-
--fgColor-neutral: #d1d7e0;
|
|
505
|
-
--fgColor-open: #ffb1af;
|
|
506
|
-
--fgColor-severe: #ff9492;
|
|
507
|
-
--fgColor-success: #91cbff;
|
|
508
|
-
--fgColor-upsell: var(--fgColor-done);
|
|
503
|
+
--fgColor-attention: #f0b72f; /** Attention text for warnings and caution states */
|
|
504
|
+
--fgColor-danger: #ff9492; /** Danger text for errors and destructive actions */
|
|
505
|
+
--fgColor-disabled: #656c76; /** Text color for disabled interactive elements */
|
|
506
|
+
--fgColor-link: var(--fgColor-accent); /** Text color for hyperlinks */
|
|
507
|
+
--fgColor-muted: #b7bdc8; /** Muted text for secondary content and less important information */
|
|
508
|
+
--fgColor-neutral: #d1d7e0; /** Neutral semantic text for icons and secondary elements */
|
|
509
|
+
--fgColor-open: #ffb1af; /** Text color for open state indicators (issues, PRs) */
|
|
510
|
+
--fgColor-severe: #ff9492; /** Severe text for high-priority warnings */
|
|
511
|
+
--fgColor-success: #91cbff; /** Success text for positive feedback and completed states */
|
|
512
|
+
--fgColor-upsell: var(--fgColor-done); /** Text color for upsell and promotional content */
|
|
509
513
|
--header-bgColor: #151b23f2;
|
|
510
514
|
--header-borderColor-divider: #656c76;
|
|
511
515
|
--header-fgColor-logo: #f0f6fc;
|
|
@@ -637,17 +641,17 @@
|
|
|
637
641
|
--timelineBadge-bgColor: #212830;
|
|
638
642
|
--underlineNav-borderColor-active: #ff967d;
|
|
639
643
|
--avatar-bgColor: #ffffff1a;
|
|
640
|
-
--bgColor-black: #010409;
|
|
641
|
-
--bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
|
|
642
|
-
--bgColor-closed-muted: var(--bgColor-danger-muted);
|
|
643
|
-
--bgColor-default: #010409;
|
|
644
|
-
--bgColor-draft-emphasis: var(--bgColor-neutral-emphasis);
|
|
645
|
-
--bgColor-draft-muted: var(--bgColor-neutral-muted);
|
|
646
|
-
--bgColor-inset: #010409;
|
|
647
|
-
--bgColor-inverse: #ffffff;
|
|
648
|
-
--bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
|
|
649
|
-
--bgColor-upsell-muted: var(--bgColor-done-muted);
|
|
650
|
-
--bgColor-white: #ffffff;
|
|
644
|
+
--bgColor-black: #010409; /** Pure black background */
|
|
645
|
+
--bgColor-closed-emphasis: var(--bgColor-neutral-emphasis); /** Strong background for closed state badges and labels */
|
|
646
|
+
--bgColor-closed-muted: var(--bgColor-danger-muted); /** Subtle background for closed state indicators (issues, PRs) */
|
|
647
|
+
--bgColor-default: #010409; /** Default background color for pages and main content areas */
|
|
648
|
+
--bgColor-draft-emphasis: var(--bgColor-neutral-emphasis); /** Strong background for draft state badges and labels */
|
|
649
|
+
--bgColor-draft-muted: var(--bgColor-neutral-muted); /** Subtle background for draft state indicators */
|
|
650
|
+
--bgColor-inset: #010409; /** Inset background for recessed content areas like wells or sunken panels */
|
|
651
|
+
--bgColor-inverse: #ffffff; /** Inverse background that flips between light and dark modes */
|
|
652
|
+
--bgColor-upsell-emphasis: var(--bgColor-done-emphasis); /** Strong background for prominent upsell elements */
|
|
653
|
+
--bgColor-upsell-muted: var(--bgColor-done-muted); /** Subtle background for upsell and promotional content */
|
|
654
|
+
--bgColor-white: #ffffff; /** Pure white background */
|
|
651
655
|
--border-accent-emphasis: 0.0625rem solid #409eff;
|
|
652
656
|
--border-accent-muted: 0.0625rem solid #5cacff;
|
|
653
657
|
--border-attention-emphasis: 0.0625rem solid #e09b13;
|
|
@@ -665,12 +669,12 @@
|
|
|
665
669
|
--border-success-emphasis: 0.0625rem solid #409eff;
|
|
666
670
|
--border-success-muted: 0.0625rem solid #5cacff;
|
|
667
671
|
--border-transparent: 0.0625rem solid #00000000;
|
|
668
|
-
--borderColor-closed-muted: var(--borderColor-default);
|
|
669
|
-
--borderColor-draft-muted: var(--borderColor-default);
|
|
670
|
-
--borderColor-emphasis: var(--borderColor-default);
|
|
671
|
-
--borderColor-muted: var(--borderColor-default);
|
|
672
|
-
--borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
|
|
673
|
-
--borderColor-upsell-muted: var(--borderColor-done-muted);
|
|
672
|
+
--borderColor-closed-muted: var(--borderColor-default); /** Subtle border for closed state indicators */
|
|
673
|
+
--borderColor-draft-muted: var(--borderColor-default); /** Subtle border for draft state indicators */
|
|
674
|
+
--borderColor-emphasis: var(--borderColor-default); /** Strong border for emphasis and visual weight */
|
|
675
|
+
--borderColor-muted: var(--borderColor-default); /** Subtle border for secondary elements and light separators */
|
|
676
|
+
--borderColor-upsell-emphasis: var(--borderColor-done-emphasis); /** Strong border for prominent upsell elements */
|
|
677
|
+
--borderColor-upsell-muted: var(--borderColor-done-muted); /** Subtle border for upsell and promotional content */
|
|
674
678
|
--button-danger-bgColor-active: var(--bgColor-danger-emphasis);
|
|
675
679
|
--button-danger-bgColor-rest: var(--control-bgColor-rest);
|
|
676
680
|
--button-danger-borderColor-active: var(--button-danger-borderColor-hover);
|
|
@@ -752,14 +756,14 @@
|
|
|
752
756
|
--diffBlob-emptyLine-bgColor: var(--bgColor-muted);
|
|
753
757
|
--diffBlob-emptyNum-bgColor: var(--bgColor-muted);
|
|
754
758
|
--diffBlob-hunkLine-fgColor: var(--fgColor-muted);
|
|
755
|
-
--fgColor-black: #010409;
|
|
756
|
-
--fgColor-closed: var(--fgColor-muted);
|
|
757
|
-
--fgColor-default: #ffffff;
|
|
758
|
-
--fgColor-draft: var(--fgColor-neutral);
|
|
759
|
-
--fgColor-onEmphasis: #ffffff;
|
|
760
|
-
--fgColor-onInverse: #010409;
|
|
761
|
-
--fgColor-white: #ffffff;
|
|
762
|
-
--focus-outlineColor: var(--borderColor-accent-emphasis);
|
|
759
|
+
--fgColor-black: #010409; /** Pure black text */
|
|
760
|
+
--fgColor-closed: var(--fgColor-muted); /** Text color for closed state indicators (issues, PRs) */
|
|
761
|
+
--fgColor-default: #ffffff; /** Default text color for primary content and headings */
|
|
762
|
+
--fgColor-draft: var(--fgColor-neutral); /** Text color for draft state indicators */
|
|
763
|
+
--fgColor-onEmphasis: #ffffff; /** Text color for use on emphasis backgrounds */
|
|
764
|
+
--fgColor-onInverse: #010409; /** Text color for use on inverse backgrounds */
|
|
765
|
+
--fgColor-white: #ffffff; /** Pure white text */
|
|
766
|
+
--focus-outlineColor: var(--borderColor-accent-emphasis); /** Outline color for focus states on interactive elements */
|
|
763
767
|
--header-fgColor-default: #ffffffb3;
|
|
764
768
|
--label-auburn-borderColor: var(--label-auburn-fgColor-rest);
|
|
765
769
|
--label-blue-borderColor: var(--label-blue-fgColor-rest);
|
|
@@ -791,12 +795,12 @@
|
|
|
791
795
|
--progressBar-bgColor-success: var(--bgColor-success-emphasis);
|
|
792
796
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
793
797
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
794
|
-
--selection-bgColor: #194fb1b3;
|
|
795
|
-
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
796
|
-
--shadow-inset: inset 0px 1px 0px 0px #0104093d;
|
|
797
|
-
--shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
|
|
798
|
-
--shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
|
|
799
|
-
--shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
|
|
798
|
+
--selection-bgColor: #194fb1b3; /** Background color for text selection highlights */
|
|
799
|
+
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; /** Legacy floating shadow for backward compatibility */
|
|
800
|
+
--shadow-inset: inset 0px 1px 0px 0px #0104093d; /** Inset shadow for recessed elements */
|
|
801
|
+
--shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
802
|
+
--shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
803
|
+
--shadow-resting-xsmall: 0px 1px 1px 0px #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
800
804
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
801
805
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
802
806
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -809,9 +813,9 @@
|
|
|
809
813
|
--border-open-muted: var(--border-success-muted);
|
|
810
814
|
--border-upsell-emphasis: 0.0625rem solid #b87fff;
|
|
811
815
|
--border-upsell-muted: 0.0625rem solid #bf8fff;
|
|
812
|
-
--borderColor-closed-emphasis: var(--borderColor-emphasis);
|
|
813
|
-
--borderColor-neutral-emphasis: var(--borderColor-emphasis);
|
|
814
|
-
--borderColor-neutral-muted: var(--borderColor-muted);
|
|
816
|
+
--borderColor-closed-emphasis: var(--borderColor-emphasis); /** Strong border for closed state badges */
|
|
817
|
+
--borderColor-neutral-emphasis: var(--borderColor-emphasis); /** Strong neutral semantic border */
|
|
818
|
+
--borderColor-neutral-muted: var(--borderColor-muted); /** Subtle neutral semantic border */
|
|
815
819
|
--button-danger-bgColor-disabled: var(--control-bgColor-disabled);
|
|
816
820
|
--button-danger-borderColor-rest: var(--control-borderColor-rest);
|
|
817
821
|
--button-default-bgColor-disabled: var(--control-bgColor-disabled);
|
|
@@ -868,18 +872,18 @@
|
|
|
868
872
|
--diffBlob-expander-iconColor: var(--fgColor-default);
|
|
869
873
|
--diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
|
|
870
874
|
--diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
|
|
871
|
-
--focus-outline: 2px solid #409eff;
|
|
875
|
+
--focus-outline: 2px solid #409eff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
872
876
|
--page-header-bgColor: var(--bgColor-default);
|
|
873
877
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
874
|
-
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
|
|
875
|
-
--shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
|
|
876
|
-
--shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
877
|
-
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
|
|
878
|
+
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409; /** Large floating shadow for modals and dialogs */
|
|
879
|
+
--shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; /** Medium floating shadow for popovers and action menus */
|
|
880
|
+
--shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
881
|
+
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
878
882
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
879
883
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
880
884
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
881
885
|
--border-neutral-muted: 0.0625rem solid #b7bdc8;
|
|
882
|
-
--borderColor-draft-emphasis: var(--borderColor-neutral-emphasis);
|
|
886
|
+
--borderColor-draft-emphasis: var(--borderColor-neutral-emphasis); /** Strong border for draft state badges */
|
|
883
887
|
--button-default-borderColor-active: var(--button-default-borderColor-rest);
|
|
884
888
|
--button-default-borderColor-hover: var(--button-default-borderColor-rest);
|
|
885
889
|
--button-default-fgColor-rest: var(--control-fgColor-rest);
|
|
@@ -907,55 +911,55 @@
|
|
|
907
911
|
--control-checked-bgColor-active: #3c79d0;
|
|
908
912
|
--control-checked-bgColor-hover: #2b64c1;
|
|
909
913
|
--control-danger-bgColor-active: #c51120;
|
|
910
|
-
--fgColor-accent: #74b9ff;
|
|
911
|
-
--fgColor-done: #d3abff;
|
|
912
|
-
--fgColor-sponsors: #ff90c8;
|
|
914
|
+
--fgColor-accent: #74b9ff; /** Accent text for links and interactive elements */
|
|
915
|
+
--fgColor-done: #d3abff; /** Text color for completed/done state indicators */
|
|
916
|
+
--fgColor-sponsors: #ff90c8; /** Text color for GitHub Sponsors content */
|
|
913
917
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
914
918
|
--avatar-shadow: 0px 0px 0px 2px #0d1117;
|
|
915
919
|
--avatarStack-fade-bgColor-default: #3d444d;
|
|
916
920
|
--avatarStack-fade-bgColor-muted: #2a313c;
|
|
917
|
-
--bgColor-accent-emphasis: #194fb1;
|
|
918
|
-
--bgColor-accent-muted: #5cacff1a;
|
|
919
|
-
--bgColor-attention-emphasis: #7b4900;
|
|
920
|
-
--bgColor-attention-muted: #edaa2726;
|
|
921
|
-
--bgColor-danger-emphasis: #ad0116;
|
|
922
|
-
--bgColor-danger-muted: #ff80801a;
|
|
923
|
-
--bgColor-disabled: #262c36;
|
|
924
|
-
--bgColor-done-emphasis: #6921d7;
|
|
925
|
-
--bgColor-done-muted: #bf8fff26;
|
|
926
|
-
--bgColor-emphasis: #3d444d;
|
|
927
|
-
--bgColor-muted: #151b23;
|
|
928
|
-
--bgColor-neutral-emphasis: #3d444d;
|
|
929
|
-
--bgColor-neutral-muted: #212830;
|
|
930
|
-
--bgColor-open-emphasis: #ad0116;
|
|
931
|
-
--bgColor-open-muted: #ff80801a;
|
|
932
|
-
--bgColor-severe-emphasis: #ad0116;
|
|
933
|
-
--bgColor-severe-muted: #f48b251a;
|
|
934
|
-
--bgColor-sponsors-emphasis: #9c1d6a;
|
|
935
|
-
--bgColor-sponsors-muted: #f87cbd1a;
|
|
936
|
-
--bgColor-success-emphasis: #194fb1;
|
|
937
|
-
--bgColor-success-muted: #5cacff26;
|
|
938
|
-
--bgColor-transparent: #00000000;
|
|
939
|
-
--borderColor-accent-emphasis: #409eff;
|
|
940
|
-
--borderColor-accent-muted: #5cacff;
|
|
941
|
-
--borderColor-attention-emphasis: #e09b13;
|
|
942
|
-
--borderColor-attention-muted: #edaa27;
|
|
943
|
-
--borderColor-danger-emphasis: #ff6a69;
|
|
944
|
-
--borderColor-danger-muted: #ff8080;
|
|
945
|
-
--borderColor-default: #b7bdc8;
|
|
946
|
-
--borderColor-disabled: #656c761a;
|
|
947
|
-
--borderColor-done-emphasis: #b87fff;
|
|
948
|
-
--borderColor-done-muted: #bf8fff;
|
|
949
|
-
--borderColor-open-emphasis: #ff6a69;
|
|
950
|
-
--borderColor-open-muted: #ff8080;
|
|
951
|
-
--borderColor-severe-emphasis: #e7811d;
|
|
952
|
-
--borderColor-severe-muted: #ff8080;
|
|
953
|
-
--borderColor-sponsors-emphasis: #ef6eb1;
|
|
954
|
-
--borderColor-sponsors-muted: #f87cbd;
|
|
955
|
-
--borderColor-success-emphasis: #409eff;
|
|
956
|
-
--borderColor-success-muted: #5cacff;
|
|
957
|
-
--borderColor-translucent: #9198a1;
|
|
958
|
-
--borderColor-transparent: #00000000;
|
|
921
|
+
--bgColor-accent-emphasis: #194fb1; /** Strong accent background for active states and focused states */
|
|
922
|
+
--bgColor-accent-muted: #5cacff1a; /** Subtle accent background for informational or selected elements */
|
|
923
|
+
--bgColor-attention-emphasis: #7b4900; /** Strong attention background for prominent warnings */
|
|
924
|
+
--bgColor-attention-muted: #edaa2726; /** Subtle attention background for warnings and caution states */
|
|
925
|
+
--bgColor-danger-emphasis: #ad0116; /** Emphasized danger background for critical errors and delete confirmations */
|
|
926
|
+
--bgColor-danger-muted: #ff80801a; /** Muted danger background for error states and destructive action contexts */
|
|
927
|
+
--bgColor-disabled: #262c36; /** Background for disabled interactive elements */
|
|
928
|
+
--bgColor-done-emphasis: #6921d7; /** Strong background for completed/done state badges and labels */
|
|
929
|
+
--bgColor-done-muted: #bf8fff26; /** Subtle background for completed/done state indicators */
|
|
930
|
+
--bgColor-emphasis: #3d444d; /** High-emphasis dark background for strong visual contrast */
|
|
931
|
+
--bgColor-muted: #151b23; /** Muted background for secondary content areas and subtle grouping */
|
|
932
|
+
--bgColor-neutral-emphasis: #3d444d; /** Strong neutral background for prominent neutral elements */
|
|
933
|
+
--bgColor-neutral-muted: #212830; /** Subtle neutral background for tags, labels, and secondary UI elements */
|
|
934
|
+
--bgColor-open-emphasis: #ad0116; /** Strong background for open state badges and labels */
|
|
935
|
+
--bgColor-open-muted: #ff80801a; /** Subtle background for open state indicators (issues, PRs) */
|
|
936
|
+
--bgColor-severe-emphasis: #ad0116; /** Strong severe background for prominent high-priority warnings */
|
|
937
|
+
--bgColor-severe-muted: #f48b251a; /** Subtle severe background for high-priority warnings */
|
|
938
|
+
--bgColor-sponsors-emphasis: #9c1d6a; /** Strong background for prominent GitHub Sponsors elements */
|
|
939
|
+
--bgColor-sponsors-muted: #f87cbd1a; /** Subtle background for GitHub Sponsors content */
|
|
940
|
+
--bgColor-success-emphasis: #194fb1; /** Strong success background for prominent positive actions */
|
|
941
|
+
--bgColor-success-muted: #5cacff26; /** Subtle success background for positive feedback and completed states */
|
|
942
|
+
--bgColor-transparent: #00000000; /** Fully transparent background */
|
|
943
|
+
--borderColor-accent-emphasis: #409eff; /** Strong accent border for selected or focused elements */
|
|
944
|
+
--borderColor-accent-muted: #5cacff; /** Subtle accent border for selected or focused elements */
|
|
945
|
+
--borderColor-attention-emphasis: #e09b13; /** Strong attention border for prominent warnings */
|
|
946
|
+
--borderColor-attention-muted: #edaa27; /** Subtle attention border for warnings and caution states */
|
|
947
|
+
--borderColor-danger-emphasis: #ff6a69; /** Strong danger border for destructive actions and errors */
|
|
948
|
+
--borderColor-danger-muted: #ff8080; /** Subtle danger border for errors and destructive contexts */
|
|
949
|
+
--borderColor-default: #b7bdc8; /** Default border color for most UI elements */
|
|
950
|
+
--borderColor-disabled: #656c761a; /** Border color for disabled interactive elements */
|
|
951
|
+
--borderColor-done-emphasis: #b87fff; /** Strong border for completed/done state badges */
|
|
952
|
+
--borderColor-done-muted: #bf8fff; /** Subtle border for completed/done state indicators */
|
|
953
|
+
--borderColor-open-emphasis: #ff6a69; /** Strong border for open state badges */
|
|
954
|
+
--borderColor-open-muted: #ff8080; /** Subtle border for open state indicators */
|
|
955
|
+
--borderColor-severe-emphasis: #e7811d; /** Strong severe border for prominent high-priority warnings */
|
|
956
|
+
--borderColor-severe-muted: #ff8080; /** Subtle severe border for high-priority warnings */
|
|
957
|
+
--borderColor-sponsors-emphasis: #ef6eb1; /** Strong border for prominent GitHub Sponsors elements */
|
|
958
|
+
--borderColor-sponsors-muted: #f87cbd; /** Subtle border for GitHub Sponsors content */
|
|
959
|
+
--borderColor-success-emphasis: #409eff; /** Strong success border for prominent positive elements */
|
|
960
|
+
--borderColor-success-muted: #5cacff; /** Subtle success border for positive feedback elements */
|
|
961
|
+
--borderColor-translucent: #9198a1; /** Semi-transparent border for overlays and layered elements */
|
|
962
|
+
--borderColor-transparent: #00000000; /** Fully transparent border */
|
|
959
963
|
--button-danger-bgColor-hover: #ad0116;
|
|
960
964
|
--button-danger-borderColor-hover: #ffb1af;
|
|
961
965
|
--button-danger-fgColor-rest: #ffb1af;
|
|
@@ -1393,16 +1397,16 @@
|
|
|
1393
1397
|
--display-yellow-scale-7: #df9e11;
|
|
1394
1398
|
--display-yellow-scale-8: #edb431;
|
|
1395
1399
|
--display-yellow-scale-9: #f0ca6a;
|
|
1396
|
-
--fgColor-attention: #f0b72f;
|
|
1397
|
-
--fgColor-danger: #ff9492;
|
|
1398
|
-
--fgColor-disabled: #656c76;
|
|
1399
|
-
--fgColor-link: var(--fgColor-accent);
|
|
1400
|
-
--fgColor-muted: #b7bdc8;
|
|
1401
|
-
--fgColor-neutral: #d1d7e0;
|
|
1402
|
-
--fgColor-open: #ffb1af;
|
|
1403
|
-
--fgColor-severe: #ff9492;
|
|
1404
|
-
--fgColor-success: #91cbff;
|
|
1405
|
-
--fgColor-upsell: var(--fgColor-done);
|
|
1400
|
+
--fgColor-attention: #f0b72f; /** Attention text for warnings and caution states */
|
|
1401
|
+
--fgColor-danger: #ff9492; /** Danger text for errors and destructive actions */
|
|
1402
|
+
--fgColor-disabled: #656c76; /** Text color for disabled interactive elements */
|
|
1403
|
+
--fgColor-link: var(--fgColor-accent); /** Text color for hyperlinks */
|
|
1404
|
+
--fgColor-muted: #b7bdc8; /** Muted text for secondary content and less important information */
|
|
1405
|
+
--fgColor-neutral: #d1d7e0; /** Neutral semantic text for icons and secondary elements */
|
|
1406
|
+
--fgColor-open: #ffb1af; /** Text color for open state indicators (issues, PRs) */
|
|
1407
|
+
--fgColor-severe: #ff9492; /** Severe text for high-priority warnings */
|
|
1408
|
+
--fgColor-success: #91cbff; /** Success text for positive feedback and completed states */
|
|
1409
|
+
--fgColor-upsell: var(--fgColor-done); /** Text color for upsell and promotional content */
|
|
1406
1410
|
--header-bgColor: #151b23f2;
|
|
1407
1411
|
--header-borderColor-divider: #656c76;
|
|
1408
1412
|
--header-fgColor-logo: #f0f6fc;
|
|
@@ -1534,17 +1538,17 @@
|
|
|
1534
1538
|
--timelineBadge-bgColor: #212830;
|
|
1535
1539
|
--underlineNav-borderColor-active: #ff967d;
|
|
1536
1540
|
--avatar-bgColor: #ffffff1a;
|
|
1537
|
-
--bgColor-black: #010409;
|
|
1538
|
-
--bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
|
|
1539
|
-
--bgColor-closed-muted: var(--bgColor-danger-muted);
|
|
1540
|
-
--bgColor-default: #010409;
|
|
1541
|
-
--bgColor-draft-emphasis: var(--bgColor-neutral-emphasis);
|
|
1542
|
-
--bgColor-draft-muted: var(--bgColor-neutral-muted);
|
|
1543
|
-
--bgColor-inset: #010409;
|
|
1544
|
-
--bgColor-inverse: #ffffff;
|
|
1545
|
-
--bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
|
|
1546
|
-
--bgColor-upsell-muted: var(--bgColor-done-muted);
|
|
1547
|
-
--bgColor-white: #ffffff;
|
|
1541
|
+
--bgColor-black: #010409; /** Pure black background */
|
|
1542
|
+
--bgColor-closed-emphasis: var(--bgColor-neutral-emphasis); /** Strong background for closed state badges and labels */
|
|
1543
|
+
--bgColor-closed-muted: var(--bgColor-danger-muted); /** Subtle background for closed state indicators (issues, PRs) */
|
|
1544
|
+
--bgColor-default: #010409; /** Default background color for pages and main content areas */
|
|
1545
|
+
--bgColor-draft-emphasis: var(--bgColor-neutral-emphasis); /** Strong background for draft state badges and labels */
|
|
1546
|
+
--bgColor-draft-muted: var(--bgColor-neutral-muted); /** Subtle background for draft state indicators */
|
|
1547
|
+
--bgColor-inset: #010409; /** Inset background for recessed content areas like wells or sunken panels */
|
|
1548
|
+
--bgColor-inverse: #ffffff; /** Inverse background that flips between light and dark modes */
|
|
1549
|
+
--bgColor-upsell-emphasis: var(--bgColor-done-emphasis); /** Strong background for prominent upsell elements */
|
|
1550
|
+
--bgColor-upsell-muted: var(--bgColor-done-muted); /** Subtle background for upsell and promotional content */
|
|
1551
|
+
--bgColor-white: #ffffff; /** Pure white background */
|
|
1548
1552
|
--border-accent-emphasis: 0.0625rem solid #409eff;
|
|
1549
1553
|
--border-accent-muted: 0.0625rem solid #5cacff;
|
|
1550
1554
|
--border-attention-emphasis: 0.0625rem solid #e09b13;
|
|
@@ -1562,12 +1566,12 @@
|
|
|
1562
1566
|
--border-success-emphasis: 0.0625rem solid #409eff;
|
|
1563
1567
|
--border-success-muted: 0.0625rem solid #5cacff;
|
|
1564
1568
|
--border-transparent: 0.0625rem solid #00000000;
|
|
1565
|
-
--borderColor-closed-muted: var(--borderColor-default);
|
|
1566
|
-
--borderColor-draft-muted: var(--borderColor-default);
|
|
1567
|
-
--borderColor-emphasis: var(--borderColor-default);
|
|
1568
|
-
--borderColor-muted: var(--borderColor-default);
|
|
1569
|
-
--borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
|
|
1570
|
-
--borderColor-upsell-muted: var(--borderColor-done-muted);
|
|
1569
|
+
--borderColor-closed-muted: var(--borderColor-default); /** Subtle border for closed state indicators */
|
|
1570
|
+
--borderColor-draft-muted: var(--borderColor-default); /** Subtle border for draft state indicators */
|
|
1571
|
+
--borderColor-emphasis: var(--borderColor-default); /** Strong border for emphasis and visual weight */
|
|
1572
|
+
--borderColor-muted: var(--borderColor-default); /** Subtle border for secondary elements and light separators */
|
|
1573
|
+
--borderColor-upsell-emphasis: var(--borderColor-done-emphasis); /** Strong border for prominent upsell elements */
|
|
1574
|
+
--borderColor-upsell-muted: var(--borderColor-done-muted); /** Subtle border for upsell and promotional content */
|
|
1571
1575
|
--button-danger-bgColor-active: var(--bgColor-danger-emphasis);
|
|
1572
1576
|
--button-danger-bgColor-rest: var(--control-bgColor-rest);
|
|
1573
1577
|
--button-danger-borderColor-active: var(--button-danger-borderColor-hover);
|
|
@@ -1649,14 +1653,14 @@
|
|
|
1649
1653
|
--diffBlob-emptyLine-bgColor: var(--bgColor-muted);
|
|
1650
1654
|
--diffBlob-emptyNum-bgColor: var(--bgColor-muted);
|
|
1651
1655
|
--diffBlob-hunkLine-fgColor: var(--fgColor-muted);
|
|
1652
|
-
--fgColor-black: #010409;
|
|
1653
|
-
--fgColor-closed: var(--fgColor-muted);
|
|
1654
|
-
--fgColor-default: #ffffff;
|
|
1655
|
-
--fgColor-draft: var(--fgColor-neutral);
|
|
1656
|
-
--fgColor-onEmphasis: #ffffff;
|
|
1657
|
-
--fgColor-onInverse: #010409;
|
|
1658
|
-
--fgColor-white: #ffffff;
|
|
1659
|
-
--focus-outlineColor: var(--borderColor-accent-emphasis);
|
|
1656
|
+
--fgColor-black: #010409; /** Pure black text */
|
|
1657
|
+
--fgColor-closed: var(--fgColor-muted); /** Text color for closed state indicators (issues, PRs) */
|
|
1658
|
+
--fgColor-default: #ffffff; /** Default text color for primary content and headings */
|
|
1659
|
+
--fgColor-draft: var(--fgColor-neutral); /** Text color for draft state indicators */
|
|
1660
|
+
--fgColor-onEmphasis: #ffffff; /** Text color for use on emphasis backgrounds */
|
|
1661
|
+
--fgColor-onInverse: #010409; /** Text color for use on inverse backgrounds */
|
|
1662
|
+
--fgColor-white: #ffffff; /** Pure white text */
|
|
1663
|
+
--focus-outlineColor: var(--borderColor-accent-emphasis); /** Outline color for focus states on interactive elements */
|
|
1660
1664
|
--header-fgColor-default: #ffffffb3;
|
|
1661
1665
|
--label-auburn-borderColor: var(--label-auburn-fgColor-rest);
|
|
1662
1666
|
--label-blue-borderColor: var(--label-blue-fgColor-rest);
|
|
@@ -1688,12 +1692,12 @@
|
|
|
1688
1692
|
--progressBar-bgColor-success: var(--bgColor-success-emphasis);
|
|
1689
1693
|
--reactionButton-selected-fgColor-rest: var(--fgColor-link);
|
|
1690
1694
|
--selectMenu-borderColor: var(--borderColor-default);
|
|
1691
|
-
--selection-bgColor: #194fb1b3;
|
|
1692
|
-
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1693
|
-
--shadow-inset: inset 0px 1px 0px 0px #0104093d;
|
|
1694
|
-
--shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
|
|
1695
|
-
--shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
|
|
1696
|
-
--shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
|
|
1695
|
+
--selection-bgColor: #194fb1b3; /** Background color for text selection highlights */
|
|
1696
|
+
--shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; /** Legacy floating shadow for backward compatibility */
|
|
1697
|
+
--shadow-inset: inset 0px 1px 0px 0px #0104093d; /** Inset shadow for recessed elements */
|
|
1698
|
+
--shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc; /** Medium resting shadow for cards and elevated surfaces */
|
|
1699
|
+
--shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999; /** Small resting shadow for buttons and interactive elements */
|
|
1700
|
+
--shadow-resting-xsmall: 0px 1px 1px 0px #010409cc; /** Extra small resting shadow for minimal elevation */
|
|
1697
1701
|
--topicTag-borderColor: var(--borderColor-accent-emphasis);
|
|
1698
1702
|
--treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
|
|
1699
1703
|
--underlineNav-iconColor-rest: var(--fgColor-muted);
|
|
@@ -1706,9 +1710,9 @@
|
|
|
1706
1710
|
--border-open-muted: var(--border-success-muted);
|
|
1707
1711
|
--border-upsell-emphasis: 0.0625rem solid #b87fff;
|
|
1708
1712
|
--border-upsell-muted: 0.0625rem solid #bf8fff;
|
|
1709
|
-
--borderColor-closed-emphasis: var(--borderColor-emphasis);
|
|
1710
|
-
--borderColor-neutral-emphasis: var(--borderColor-emphasis);
|
|
1711
|
-
--borderColor-neutral-muted: var(--borderColor-muted);
|
|
1713
|
+
--borderColor-closed-emphasis: var(--borderColor-emphasis); /** Strong border for closed state badges */
|
|
1714
|
+
--borderColor-neutral-emphasis: var(--borderColor-emphasis); /** Strong neutral semantic border */
|
|
1715
|
+
--borderColor-neutral-muted: var(--borderColor-muted); /** Subtle neutral semantic border */
|
|
1712
1716
|
--button-danger-bgColor-disabled: var(--control-bgColor-disabled);
|
|
1713
1717
|
--button-danger-borderColor-rest: var(--control-borderColor-rest);
|
|
1714
1718
|
--button-default-bgColor-disabled: var(--control-bgColor-disabled);
|
|
@@ -1765,18 +1769,18 @@
|
|
|
1765
1769
|
--diffBlob-expander-iconColor: var(--fgColor-default);
|
|
1766
1770
|
--diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
|
|
1767
1771
|
--diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
|
|
1768
|
-
--focus-outline: 2px solid #409eff;
|
|
1772
|
+
--focus-outline: 2px solid #409eff; /** Focus ring outline for keyboard navigation and accessibility. */
|
|
1769
1773
|
--page-header-bgColor: var(--bgColor-default);
|
|
1770
1774
|
--progressBar-track-bgColor: var(--bgColor-inverse);
|
|
1771
|
-
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
|
|
1772
|
-
--shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
|
|
1773
|
-
--shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
|
|
1774
|
-
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
|
|
1775
|
+
--shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409; /** Large floating shadow for modals and dialogs */
|
|
1776
|
+
--shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; /** Medium floating shadow for popovers and action menus */
|
|
1777
|
+
--shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; /** Small floating shadow for dropdowns, tooltips, and small overlays */
|
|
1778
|
+
--shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409; /** Extra large floating shadow for full-screen overlays and sheets */
|
|
1775
1779
|
--tooltip-bgColor: var(--bgColor-inverse);
|
|
1776
1780
|
--tooltip-fgColor: var(--fgColor-onInverse);
|
|
1777
1781
|
--border-neutral-emphasis: 0.0625rem solid #b7bdc8;
|
|
1778
1782
|
--border-neutral-muted: 0.0625rem solid #b7bdc8;
|
|
1779
|
-
--borderColor-draft-emphasis: var(--borderColor-neutral-emphasis);
|
|
1783
|
+
--borderColor-draft-emphasis: var(--borderColor-neutral-emphasis); /** Strong border for draft state badges */
|
|
1780
1784
|
--button-default-borderColor-active: var(--button-default-borderColor-rest);
|
|
1781
1785
|
--button-default-borderColor-hover: var(--button-default-borderColor-rest);
|
|
1782
1786
|
--button-default-fgColor-rest: var(--control-fgColor-rest);
|