@primer/primitives 10.0.0-rc.367a0502 → 10.0.0-rc.4b3d8b21
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.d.ts +8 -0
- package/dist/build/PrimerStyleDictionary.js +80 -0
- package/dist/build/filters/index.d.ts +14 -0
- package/dist/build/filters/index.js +14 -0
- package/dist/build/filters/isBorder.d.ts +7 -0
- package/dist/build/filters/isBorder.js +8 -0
- package/dist/build/filters/isColor.d.ts +7 -0
- package/dist/build/filters/isColor.js +13 -0
- package/dist/build/filters/isColorWithAlpha.d.ts +7 -0
- package/dist/build/filters/isColorWithAlpha.js +9 -0
- package/dist/build/filters/isColorWithMix.d.ts +7 -0
- package/dist/build/filters/isColorWithMix.js +24 -0
- package/dist/build/filters/isCubicBezier.d.ts +7 -0
- package/dist/build/filters/isCubicBezier.js +10 -0
- package/dist/build/filters/isDeprecated.d.ts +7 -0
- package/dist/build/filters/isDeprecated.js +8 -0
- package/dist/build/filters/isDimension.d.ts +7 -0
- package/dist/build/filters/isDimension.js +8 -0
- package/dist/build/filters/isDuration.d.ts +7 -0
- package/dist/build/filters/isDuration.js +8 -0
- package/dist/build/filters/isFontFamily.d.ts +7 -0
- package/dist/build/filters/isFontFamily.js +8 -0
- package/dist/build/filters/isFontWeight.d.ts +7 -0
- package/dist/build/filters/isFontWeight.js +8 -0
- package/dist/build/filters/isFromFile.d.ts +8 -0
- package/dist/build/filters/isFromFile.js +10 -0
- package/dist/build/filters/isNumber.d.ts +7 -0
- package/dist/build/filters/isNumber.js +8 -0
- package/dist/build/filters/isShadow.d.ts +7 -0
- package/dist/build/filters/isShadow.js +8 -0
- package/dist/build/filters/isSource.d.ts +7 -0
- package/dist/build/filters/isSource.js +8 -0
- package/dist/build/filters/isTypography.d.ts +7 -0
- package/dist/build/filters/isTypography.js +8 -0
- package/dist/build/formats/cssAdvanced.d.ts +2 -0
- package/dist/build/formats/cssAdvanced.js +86 -0
- package/dist/build/formats/cssCustomMedia.d.ts +7 -0
- package/dist/build/formats/cssCustomMedia.js +26 -0
- package/dist/build/formats/index.d.ts +9 -0
- package/dist/build/formats/index.js +9 -0
- package/dist/build/formats/javascriptCommonJs.d.ts +7 -0
- package/dist/build/formats/javascriptCommonJs.js +26 -0
- package/dist/build/formats/javascriptEsm.d.ts +7 -0
- package/dist/build/formats/javascriptEsm.js +26 -0
- package/dist/build/formats/jsonFigma.d.ts +7 -0
- package/dist/build/formats/jsonFigma.js +121 -0
- package/dist/build/formats/jsonNestedPrefixed.d.ts +8 -0
- package/dist/build/formats/jsonNestedPrefixed.js +30 -0
- package/dist/build/formats/jsonOneDimensional.d.ts +8 -0
- package/dist/build/formats/jsonOneDimensional.js +32 -0
- package/dist/build/formats/jsonPostCssFallback.d.ts +8 -0
- package/dist/build/formats/jsonPostCssFallback.js +14 -0
- package/dist/build/formats/typescriptExportDefinition.d.ts +7 -0
- package/dist/build/formats/typescriptExportDefinition.js +170 -0
- package/dist/build/formats/utilities/getPropName.d.ts +1 -0
- package/dist/build/formats/utilities/getPropName.js +16 -0
- package/dist/build/formats/utilities/jsonToFlat.d.ts +11 -0
- package/dist/build/formats/utilities/jsonToFlat.js +8 -0
- package/dist/build/formats/utilities/jsonToNestedValue.d.ts +8 -0
- package/dist/build/formats/utilities/jsonToNestedValue.js +23 -0
- package/dist/build/formats/utilities/prefixTokens.d.ts +8 -0
- package/dist/build/formats/utilities/prefixTokens.js +13 -0
- package/dist/build/parsers/index.d.ts +1 -0
- package/dist/build/parsers/index.js +1 -0
- package/dist/build/parsers/w3cJsonParser.d.ts +6 -0
- package/dist/build/parsers/w3cJsonParser.js +25 -0
- package/dist/build/platforms/css.d.ts +2 -0
- package/dist/build/platforms/css.js +96 -0
- package/dist/build/platforms/deprecatedJson.d.ts +2 -0
- package/dist/build/platforms/deprecatedJson.js +13 -0
- package/dist/build/platforms/docJson.d.ts +2 -0
- package/dist/build/platforms/docJson.js +35 -0
- package/dist/build/platforms/fallbacks.d.ts +2 -0
- package/dist/build/platforms/fallbacks.js +30 -0
- package/dist/build/platforms/figma.d.ts +2 -0
- package/dist/build/platforms/figma.js +60 -0
- package/dist/build/platforms/index.d.ts +10 -0
- package/dist/build/platforms/index.js +10 -0
- package/dist/build/platforms/javascript.d.ts +2 -0
- package/dist/build/platforms/javascript.js +26 -0
- package/dist/build/platforms/json.d.ts +2 -0
- package/dist/build/platforms/json.js +28 -0
- package/dist/build/platforms/styleLint.d.ts +2 -0
- package/dist/build/platforms/styleLint.js +30 -0
- package/dist/build/platforms/typeDefinitions.d.ts +2 -0
- package/dist/build/platforms/typeDefinitions.js +26 -0
- package/dist/build/platforms/typescript.d.ts +2 -0
- package/dist/build/platforms/typescript.js +26 -0
- package/dist/build/schemas/alphaValue.d.ts +2 -0
- package/dist/build/schemas/alphaValue.js +5 -0
- package/dist/build/schemas/baseToken.d.ts +11 -0
- package/dist/build/schemas/baseToken.js +7 -0
- package/dist/build/schemas/borderToken.d.ts +51 -0
- package/dist/build/schemas/borderToken.js +17 -0
- package/dist/build/schemas/collections.d.ts +6 -0
- package/dist/build/schemas/collections.js +12 -0
- package/dist/build/schemas/colorHexValue.d.ts +2 -0
- package/dist/build/schemas/colorHexValue.js +9 -0
- package/dist/build/schemas/colorToken.d.ts +85 -0
- package/dist/build/schemas/colorToken.js +52 -0
- package/dist/build/schemas/cubicBezierToken.d.ts +18 -0
- package/dist/build/schemas/cubicBezierToken.js +8 -0
- package/dist/build/schemas/designToken.d.ts +2 -0
- package/dist/build/schemas/designToken.js +36 -0
- package/dist/build/schemas/dimensionToken.d.ts +52 -0
- package/dist/build/schemas/dimensionToken.js +33 -0
- package/dist/build/schemas/dimensionValue.d.ts +2 -0
- package/dist/build/schemas/dimensionValue.js +9 -0
- package/dist/build/schemas/durationToken.d.ts +18 -0
- package/dist/build/schemas/durationToken.js +11 -0
- package/dist/build/schemas/durationValue.d.ts +2 -0
- package/dist/build/schemas/durationValue.js +5 -0
- package/dist/build/schemas/fontFamilyToken.d.ts +52 -0
- package/dist/build/schemas/fontFamilyToken.js +20 -0
- package/dist/build/schemas/fontWeightToken.d.ts +52 -0
- package/dist/build/schemas/fontWeightToken.js +21 -0
- package/dist/build/schemas/fontWeightValue.d.ts +2 -0
- package/dist/build/schemas/fontWeightValue.js +6 -0
- package/dist/build/schemas/numberToken.d.ts +71 -0
- package/dist/build/schemas/numberToken.js +27 -0
- package/dist/build/schemas/referenceValue.d.ts +2 -0
- package/dist/build/schemas/referenceValue.js +5 -0
- package/dist/build/schemas/scopes.d.ts +5 -0
- package/dist/build/schemas/scopes.js +29 -0
- package/dist/build/schemas/shadowToken.d.ts +157 -0
- package/dist/build/schemas/shadowToken.js +43 -0
- package/dist/build/schemas/stringToken.d.ts +18 -0
- package/dist/build/schemas/stringToken.js +10 -0
- package/dist/build/schemas/tokenName.d.ts +2 -0
- package/dist/build/schemas/tokenName.js +5 -0
- package/dist/build/schemas/tokenType.d.ts +3 -0
- package/dist/build/schemas/tokenType.js +2 -0
- package/dist/build/schemas/typographyToken.d.ts +59 -0
- package/dist/build/schemas/typographyToken.js +18 -0
- package/dist/build/schemas/validTokenType.d.ts +5 -0
- package/dist/build/schemas/validTokenType.js +31 -0
- package/dist/build/schemas/viewportRangeToken.d.ts +18 -0
- package/dist/build/schemas/viewportRangeToken.js +10 -0
- package/dist/build/transformers/borderToCss.d.ts +8 -0
- package/dist/build/transformers/borderToCss.js +38 -0
- package/dist/build/transformers/colorToHex.d.ts +8 -0
- package/dist/build/transformers/colorToHex.js +24 -0
- package/dist/build/transformers/colorToHexMix.d.ts +8 -0
- package/dist/build/transformers/colorToHexMix.js +20 -0
- package/dist/build/transformers/colorToRgbAlpha.d.ts +8 -0
- package/dist/build/transformers/colorToRgbAlpha.js +20 -0
- package/dist/build/transformers/colorToRgbaFloat.d.ts +8 -0
- package/dist/build/transformers/colorToRgbaFloat.js +46 -0
- package/dist/build/transformers/cubicBezierToCss.d.ts +8 -0
- package/dist/build/transformers/cubicBezierToCss.js +23 -0
- package/dist/build/transformers/dimensionToPixelUnitless.d.ts +8 -0
- package/dist/build/transformers/dimensionToPixelUnitless.js +49 -0
- package/dist/build/transformers/dimensionToRem.d.ts +8 -0
- package/dist/build/transformers/dimensionToRem.js +46 -0
- package/dist/build/transformers/dimensionToRemPxArray.d.ts +8 -0
- package/dist/build/transformers/dimensionToRemPxArray.js +46 -0
- package/dist/build/transformers/durationToCss.d.ts +8 -0
- package/dist/build/transformers/durationToCss.js +29 -0
- package/dist/build/transformers/figmaAttributes.d.ts +8 -0
- package/dist/build/transformers/figmaAttributes.js +55 -0
- package/dist/build/transformers/floatToPixel.d.ts +15 -0
- package/dist/build/transformers/floatToPixel.js +39 -0
- package/dist/build/transformers/fontFamilyToCss.d.ts +14 -0
- package/dist/build/transformers/fontFamilyToCss.js +37 -0
- package/dist/build/transformers/fontFamilyToFigma.d.ts +14 -0
- package/dist/build/transformers/fontFamilyToFigma.js +44 -0
- package/dist/build/transformers/fontWeightToNumber.d.ts +9 -0
- package/dist/build/transformers/fontWeightToNumber.js +50 -0
- package/dist/build/transformers/index.d.ts +25 -0
- package/dist/build/transformers/index.js +25 -0
- package/dist/build/transformers/jsonDeprecated.d.ts +8 -0
- package/dist/build/transformers/jsonDeprecated.js +14 -0
- package/dist/build/transformers/namePathToCamelCase.d.ts +8 -0
- package/dist/build/transformers/namePathToCamelCase.js +12 -0
- package/dist/build/transformers/namePathToDotNotation.d.ts +8 -0
- package/dist/build/transformers/namePathToDotNotation.js +31 -0
- package/dist/build/transformers/namePathToFigma.d.ts +9 -0
- package/dist/build/transformers/namePathToFigma.js +21 -0
- package/dist/build/transformers/namePathToKebabCase.d.ts +8 -0
- package/dist/build/transformers/namePathToKebabCase.js +16 -0
- package/dist/build/transformers/namePathToPascalCase.d.ts +8 -0
- package/dist/build/transformers/namePathToPascalCase.js +12 -0
- package/dist/build/transformers/namePathToSlashNotation.d.ts +8 -0
- package/dist/build/transformers/namePathToSlashNotation.js +16 -0
- package/dist/build/transformers/shadowToCss.d.ts +8 -0
- package/dist/build/transformers/shadowToCss.js +34 -0
- package/dist/build/transformers/typographyToCss.d.ts +8 -0
- package/dist/build/transformers/typographyToCss.js +27 -0
- package/dist/build/transformers/utilities/alpha.d.ts +9 -0
- package/dist/build/transformers/utilities/alpha.js +16 -0
- package/dist/build/transformers/utilities/checkRequiredTokenProperties.d.ts +7 -0
- package/dist/build/transformers/utilities/checkRequiredTokenProperties.js +13 -0
- package/dist/build/transformers/utilities/getTokenValue.d.ts +2 -0
- package/dist/build/transformers/utilities/getTokenValue.js +16 -0
- package/dist/build/transformers/utilities/hasSpaceInString.d.ts +1 -0
- package/dist/build/transformers/utilities/hasSpaceInString.js +6 -0
- package/dist/build/transformers/utilities/hexToRgbaFloat.d.ts +2 -0
- package/dist/build/transformers/utilities/hexToRgbaFloat.js +29 -0
- package/dist/build/transformers/utilities/invalidTokenError.d.ts +7 -0
- package/dist/build/transformers/utilities/invalidTokenError.js +27 -0
- package/dist/build/transformers/utilities/isRgbaFloat.d.ts +7 -0
- package/dist/build/transformers/utilities/isRgbaFloat.js +20 -0
- package/dist/build/transformers/utilities/mix.d.ts +5 -0
- package/dist/build/transformers/utilities/mix.js +38 -0
- package/dist/build/transformers/utilities/rgbaFloatToHex.d.ts +6 -0
- package/dist/build/transformers/utilities/rgbaFloatToHex.js +11 -0
- package/dist/build/types/Border.d.ts +5 -0
- package/dist/build/types/BorderTokenValue.d.ts +10 -0
- package/dist/build/types/ColorHex.d.ts +4 -0
- package/dist/build/types/PlatformInitializer.d.ts +11 -0
- package/dist/build/types/Shadow.d.ts +5 -0
- package/dist/build/types/ShadowTokenValue.d.ts +14 -0
- package/dist/build/types/SizeEm.d.ts +4 -0
- package/dist/build/types/SizePx.d.ts +4 -0
- package/dist/build/types/SizeRem.d.ts +4 -0
- package/dist/build/types/StyleDictionaryConfigGenerator.d.ts +15 -0
- package/dist/build/types/TokenBuildInput.d.ts +8 -0
- package/dist/build/types/TypographyTokenValue.d.ts +12 -0
- package/dist/build/types/w3cTransformedToken.d.ts +8 -0
- package/dist/build/utilities/copyFromDir.d.ts +8 -0
- package/dist/build/utilities/copyFromDir.js +31 -0
- package/dist/build/utilities/filterStringArray.d.ts +1 -0
- package/dist/build/utilities/filterStringArray.js +13 -0
- package/dist/build/utilities/getFlag.d.ts +8 -0
- package/dist/build/utilities/getFlag.js +12 -0
- package/dist/build/utilities/index.d.ts +9 -0
- package/dist/build/utilities/index.js +9 -0
- package/dist/build/utilities/joinFriendly.d.ts +1 -0
- package/dist/build/utilities/joinFriendly.js +1 -0
- package/dist/build/utilities/schemaErrorMessage.d.ts +1 -0
- package/dist/build/utilities/schemaErrorMessage.js +1 -0
- package/dist/build/utilities/toCamelCase.d.ts +1 -0
- package/dist/build/utilities/toCamelCase.js +16 -0
- package/dist/build/utilities/toPascalCase.d.ts +1 -0
- package/dist/build/utilities/toPascalCase.js +13 -0
- package/dist/build/utilities/treeWalker.d.ts +8 -0
- package/dist/build/utilities/treeWalker.js +23 -0
- package/dist/build/utilities/upperCaseFirstCharacter.d.ts +8 -0
- package/dist/build/utilities/upperCaseFirstCharacter.js +10 -0
- package/dist/css/functional/themes/dark-colorblind.css +58 -38
- package/dist/css/functional/themes/dark-dimmed.css +44 -24
- package/dist/css/functional/themes/dark-high-contrast.css +62 -42
- package/dist/css/functional/themes/dark-tritanopia.css +44 -24
- package/dist/css/functional/themes/dark.css +42 -22
- package/dist/css/functional/themes/light-colorblind.css +60 -40
- package/dist/css/functional/themes/light-high-contrast.css +58 -38
- package/dist/css/functional/themes/light-tritanopia.css +42 -22
- package/dist/css/functional/themes/light.css +42 -22
- package/dist/docs/base/size/size.json +76 -76
- package/dist/docs/base/typography/typography.json +16 -16
- package/dist/docs/functional/motion/motion.json +18 -18
- package/dist/docs/functional/size/border.json +56 -56
- package/dist/docs/functional/size/breakpoints.json +24 -24
- package/dist/docs/functional/size/size-coarse.json +12 -12
- package/dist/docs/functional/size/size-fine.json +12 -12
- package/dist/docs/functional/size/size.json +264 -264
- package/dist/docs/functional/size/viewport.json +24 -24
- package/dist/docs/functional/themes/dark-colorblind.json +2868 -3462
- package/dist/docs/functional/themes/dark-dimmed.json +2826 -3016
- package/dist/docs/functional/themes/dark-high-contrast.json +2822 -5100
- package/dist/docs/functional/themes/dark-tritanopia.json +2829 -3203
- package/dist/docs/functional/themes/dark.json +2808 -2520
- package/dist/docs/functional/themes/light-colorblind.json +2604 -3150
- package/dist/docs/functional/themes/light-high-contrast.json +2653 -4609
- package/dist/docs/functional/themes/light-tritanopia.json +2546 -2960
- package/dist/docs/functional/themes/light.json +2590 -2312
- package/dist/docs/functional/typography/typography.json +206 -206
- package/dist/figma/dimension/dimension.json +489 -489
- package/dist/figma/figma.json +19 -11
- package/dist/figma/scales/dark-dimmed.json +2918 -38
- package/dist/figma/scales/dark-high-constrast.json +2918 -38
- package/dist/figma/scales/dark.json +2915 -35
- package/dist/figma/scales/light-high-constrast.json +2920 -40
- package/dist/figma/scales/light.json +2920 -40
- package/dist/figma/shadows/dark-colorblind.json +280 -280
- package/dist/figma/shadows/dark-dimmed.json +280 -280
- package/dist/figma/shadows/dark-high-contrast.json +280 -280
- package/dist/figma/shadows/dark-tritanopia.json +280 -280
- package/dist/figma/shadows/dark.json +280 -280
- package/dist/figma/shadows/light-colorblind.json +281 -281
- package/dist/figma/shadows/light-high-contrast.json +281 -281
- package/dist/figma/shadows/light-tritanopia.json +281 -281
- package/dist/figma/shadows/light.json +281 -281
- package/dist/figma/themes/dark-colorblind.json +5063 -5797
- package/dist/figma/themes/dark-dimmed.json +5294 -5604
- package/dist/figma/themes/dark-high-contrast.json +4258 -6617
- package/dist/figma/themes/dark-tritanopia.json +5239 -5763
- package/dist/figma/themes/dark.json +5570 -5414
- package/dist/figma/themes/light-colorblind.json +4933 -5570
- package/dist/figma/themes/light-high-contrast.json +4198 -6229
- package/dist/figma/themes/light-tritanopia.json +5116 -5618
- package/dist/figma/themes/light.json +5427 -5270
- package/dist/figma/typography/typography.json +112 -156
- package/dist/internalCss/dark-colorblind.css +58 -38
- package/dist/internalCss/dark-dimmed.css +44 -24
- package/dist/internalCss/dark-high-contrast.css +62 -42
- package/dist/internalCss/dark-tritanopia.css +44 -24
- package/dist/internalCss/dark.css +42 -22
- package/dist/internalCss/light-colorblind.css +60 -40
- package/dist/internalCss/light-high-contrast.css +58 -38
- package/dist/internalCss/light-tritanopia.css +42 -22
- package/dist/internalCss/light.css +42 -22
- package/dist/styleLint/base/size/size.json +38 -38
- package/dist/styleLint/base/typography/typography.json +8 -8
- package/dist/styleLint/functional/motion/motion.json +12 -12
- package/dist/styleLint/functional/size/border.json +30 -30
- package/dist/styleLint/functional/size/breakpoints.json +12 -12
- package/dist/styleLint/functional/size/size-coarse.json +6 -6
- package/dist/styleLint/functional/size/size-fine.json +6 -6
- package/dist/styleLint/functional/size/size.json +132 -132
- package/dist/styleLint/functional/size/viewport.json +12 -12
- package/dist/styleLint/functional/themes/dark-colorblind.json +1644 -2238
- package/dist/styleLint/functional/themes/dark-dimmed.json +1699 -1889
- package/dist/styleLint/functional/themes/dark-high-contrast.json +1627 -3905
- package/dist/styleLint/functional/themes/dark-tritanopia.json +1704 -2078
- package/dist/styleLint/functional/themes/dark.json +1692 -1404
- package/dist/styleLint/functional/themes/light-colorblind.json +1506 -2052
- package/dist/styleLint/functional/themes/light-high-contrast.json +1515 -3471
- package/dist/styleLint/functional/themes/light-tritanopia.json +1434 -1848
- package/dist/styleLint/functional/themes/light.json +1474 -1196
- package/dist/styleLint/functional/typography/typography.json +114 -114
- package/package.json +9 -7
- package/src/tokens/functional/color/dark/app-dark.json5 +203 -88
- package/src/tokens/functional/color/dark/data-vis-dark.json5 +20 -20
- package/src/tokens/functional/color/dark/display-dark.json5 +95 -95
- package/src/tokens/functional/color/dark/overrides/dark.dimmed.json5 +0 -8
- package/src/tokens/functional/color/dark/overrides/dark.high-contrast.json5 +43 -30
- package/src/tokens/functional/color/dark/overrides/dark.protanopia-deuteranopia.json5 +62 -30
- package/src/tokens/functional/color/dark/overrides/dark.tritanopia.json5 +53 -12
- package/src/tokens/functional/color/dark/patterns-dark.json5 +16 -4
- package/src/tokens/functional/color/dark/primitives-dark.json5 +4 -4
- package/src/tokens/functional/color/light/app-light.json5 +195 -85
- package/src/tokens/functional/color/light/data-vis-light.json5 +20 -20
- package/src/tokens/functional/color/light/overrides/light.high-contrast.json5 +25 -25
- package/src/tokens/functional/color/light/overrides/light.protanopia-deuteranopia.json5 +65 -34
- package/src/tokens/functional/color/light/overrides/light.tritanopia.json5 +66 -11
- package/src/tokens/functional/color/light/patterns-light.json5 +13 -1
- package/src/tokens/functional/color/light/primitives-light.json5 +2 -2
|
@@ -1,13 +1,31 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"name": "text/
|
|
4
|
-
"value":
|
|
3
|
+
"name": "text/codeInline/weight",
|
|
4
|
+
"value": 400,
|
|
5
|
+
"type": "FLOAT",
|
|
6
|
+
"refId": "typography/text/codeInline/weight",
|
|
7
|
+
"reference": "base/typography/base/text/weight/normal",
|
|
8
|
+
"collection": "typography",
|
|
9
|
+
"mode": "default",
|
|
10
|
+
"group": "typography",
|
|
11
|
+
"scopes": ["FONT_WEIGHT"]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "text/codeBlock/weight",
|
|
15
|
+
"value": 400,
|
|
5
16
|
"type": "FLOAT",
|
|
6
|
-
"refId": "typography/text/codeBlock/
|
|
17
|
+
"refId": "typography/text/codeBlock/weight",
|
|
18
|
+
"reference": "base/typography/base/text/weight/normal",
|
|
7
19
|
"collection": "typography",
|
|
8
20
|
"mode": "default",
|
|
9
21
|
"group": "typography",
|
|
10
|
-
"scopes": ["
|
|
22
|
+
"scopes": ["FONT_WEIGHT"]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "lineHeight",
|
|
26
|
+
"value": 1.5385,
|
|
27
|
+
"type": "FLOAT",
|
|
28
|
+
"refId": "lineHeight"
|
|
11
29
|
},
|
|
12
30
|
{
|
|
13
31
|
"name": "text/codeBlock/size",
|
|
@@ -20,14 +38,21 @@
|
|
|
20
38
|
"scopes": ["FONT_SIZE"]
|
|
21
39
|
},
|
|
22
40
|
{
|
|
23
|
-
"name": "text/caption/
|
|
24
|
-
"value":
|
|
41
|
+
"name": "text/caption/weight",
|
|
42
|
+
"value": 400,
|
|
25
43
|
"type": "FLOAT",
|
|
26
|
-
"refId": "typography/text/caption/
|
|
44
|
+
"refId": "typography/text/caption/weight",
|
|
45
|
+
"reference": "base/typography/base/text/weight/normal",
|
|
27
46
|
"collection": "typography",
|
|
28
47
|
"mode": "default",
|
|
29
48
|
"group": "typography",
|
|
30
|
-
"scopes": ["
|
|
49
|
+
"scopes": ["FONT_WEIGHT"]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "lineHeight",
|
|
53
|
+
"value": 1.3333,
|
|
54
|
+
"type": "FLOAT",
|
|
55
|
+
"refId": "lineHeight"
|
|
31
56
|
},
|
|
32
57
|
{
|
|
33
58
|
"name": "text/caption/size",
|
|
@@ -40,34 +65,33 @@
|
|
|
40
65
|
"scopes": ["FONT_SIZE"]
|
|
41
66
|
},
|
|
42
67
|
{
|
|
43
|
-
"name": "text/body/
|
|
44
|
-
"value":
|
|
68
|
+
"name": "text/body/weight",
|
|
69
|
+
"value": 400,
|
|
45
70
|
"type": "FLOAT",
|
|
46
|
-
"refId": "typography/text/body/
|
|
71
|
+
"refId": "typography/text/body/weight",
|
|
72
|
+
"reference": "base/typography/base/text/weight/normal",
|
|
47
73
|
"collection": "typography",
|
|
48
74
|
"mode": "default",
|
|
49
75
|
"group": "typography",
|
|
50
|
-
"scopes": ["
|
|
76
|
+
"scopes": ["FONT_WEIGHT"]
|
|
51
77
|
},
|
|
52
78
|
{
|
|
53
|
-
"name": "
|
|
54
|
-
"value":
|
|
79
|
+
"name": "small",
|
|
80
|
+
"value": 1.6666,
|
|
55
81
|
"type": "FLOAT",
|
|
56
|
-
"refId": "
|
|
57
|
-
"collection": "typography",
|
|
58
|
-
"mode": "default",
|
|
59
|
-
"group": "typography",
|
|
60
|
-
"scopes": ["LINE_HEIGHT"]
|
|
82
|
+
"refId": "small"
|
|
61
83
|
},
|
|
62
84
|
{
|
|
63
|
-
"name": "
|
|
64
|
-
"value":
|
|
85
|
+
"name": "medium",
|
|
86
|
+
"value": 1.4285,
|
|
65
87
|
"type": "FLOAT",
|
|
66
|
-
"refId": "
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
"
|
|
88
|
+
"refId": "medium"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "large",
|
|
92
|
+
"value": 1.5,
|
|
93
|
+
"type": "FLOAT",
|
|
94
|
+
"refId": "large"
|
|
71
95
|
},
|
|
72
96
|
{
|
|
73
97
|
"name": "text/body/size/small",
|
|
@@ -100,14 +124,21 @@
|
|
|
100
124
|
"scopes": ["FONT_SIZE"]
|
|
101
125
|
},
|
|
102
126
|
{
|
|
103
|
-
"name": "text/subtitle/
|
|
104
|
-
"value":
|
|
127
|
+
"name": "text/subtitle/weight",
|
|
128
|
+
"value": 400,
|
|
105
129
|
"type": "FLOAT",
|
|
106
|
-
"refId": "typography/text/subtitle/
|
|
130
|
+
"refId": "typography/text/subtitle/weight",
|
|
131
|
+
"reference": "base/typography/base/text/weight/normal",
|
|
107
132
|
"collection": "typography",
|
|
108
133
|
"mode": "default",
|
|
109
134
|
"group": "typography",
|
|
110
|
-
"scopes": ["
|
|
135
|
+
"scopes": ["FONT_WEIGHT"]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "lineHeight",
|
|
139
|
+
"value": 1.6,
|
|
140
|
+
"type": "FLOAT",
|
|
141
|
+
"refId": "lineHeight"
|
|
111
142
|
},
|
|
112
143
|
{
|
|
113
144
|
"name": "text/subtitle/size",
|
|
@@ -120,34 +151,55 @@
|
|
|
120
151
|
"scopes": ["FONT_SIZE"]
|
|
121
152
|
},
|
|
122
153
|
{
|
|
123
|
-
"name": "text/title/
|
|
124
|
-
"value":
|
|
154
|
+
"name": "text/title/weight/small",
|
|
155
|
+
"value": 600,
|
|
125
156
|
"type": "FLOAT",
|
|
126
|
-
"refId": "typography/text/title/
|
|
157
|
+
"refId": "typography/text/title/weight/small",
|
|
158
|
+
"reference": "base/typography/base/text/weight/semibold",
|
|
127
159
|
"collection": "typography",
|
|
128
160
|
"mode": "default",
|
|
129
161
|
"group": "typography",
|
|
130
|
-
"scopes": ["
|
|
162
|
+
"scopes": ["FONT_WEIGHT"]
|
|
131
163
|
},
|
|
132
164
|
{
|
|
133
|
-
"name": "text/title/
|
|
134
|
-
"value":
|
|
165
|
+
"name": "text/title/weight/medium",
|
|
166
|
+
"value": 600,
|
|
135
167
|
"type": "FLOAT",
|
|
136
|
-
"refId": "typography/text/title/
|
|
168
|
+
"refId": "typography/text/title/weight/medium",
|
|
169
|
+
"reference": "base/typography/base/text/weight/semibold",
|
|
137
170
|
"collection": "typography",
|
|
138
171
|
"mode": "default",
|
|
139
172
|
"group": "typography",
|
|
140
|
-
"scopes": ["
|
|
173
|
+
"scopes": ["FONT_WEIGHT"]
|
|
141
174
|
},
|
|
142
175
|
{
|
|
143
|
-
"name": "text/title/
|
|
144
|
-
"value":
|
|
176
|
+
"name": "text/title/weight/large",
|
|
177
|
+
"value": 600,
|
|
145
178
|
"type": "FLOAT",
|
|
146
|
-
"refId": "typography/text/title/
|
|
179
|
+
"refId": "typography/text/title/weight/large",
|
|
180
|
+
"reference": "base/typography/base/text/weight/semibold",
|
|
147
181
|
"collection": "typography",
|
|
148
182
|
"mode": "default",
|
|
149
183
|
"group": "typography",
|
|
150
|
-
"scopes": ["
|
|
184
|
+
"scopes": ["FONT_WEIGHT"]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "small",
|
|
188
|
+
"value": 1.5,
|
|
189
|
+
"type": "FLOAT",
|
|
190
|
+
"refId": "small"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "medium",
|
|
194
|
+
"value": 1.6,
|
|
195
|
+
"type": "FLOAT",
|
|
196
|
+
"refId": "medium"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "large",
|
|
200
|
+
"value": 1.5,
|
|
201
|
+
"type": "FLOAT",
|
|
202
|
+
"refId": "large"
|
|
151
203
|
},
|
|
152
204
|
{
|
|
153
205
|
"name": "text/title/size/small",
|
|
@@ -180,14 +232,21 @@
|
|
|
180
232
|
"scopes": ["FONT_SIZE"]
|
|
181
233
|
},
|
|
182
234
|
{
|
|
183
|
-
"name": "text/display/
|
|
184
|
-
"value":
|
|
235
|
+
"name": "text/display/weight",
|
|
236
|
+
"value": 500,
|
|
185
237
|
"type": "FLOAT",
|
|
186
|
-
"refId": "typography/text/display/
|
|
238
|
+
"refId": "typography/text/display/weight",
|
|
239
|
+
"reference": "base/typography/base/text/weight/medium",
|
|
187
240
|
"collection": "typography",
|
|
188
241
|
"mode": "default",
|
|
189
242
|
"group": "typography",
|
|
190
|
-
"scopes": ["
|
|
243
|
+
"scopes": ["FONT_WEIGHT"]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "lineHeight",
|
|
247
|
+
"value": 1.4,
|
|
248
|
+
"type": "FLOAT",
|
|
249
|
+
"refId": "lineHeight"
|
|
191
250
|
},
|
|
192
251
|
{
|
|
193
252
|
"name": "text/display/size",
|
|
@@ -200,18 +259,14 @@
|
|
|
200
259
|
"scopes": ["FONT_SIZE"]
|
|
201
260
|
},
|
|
202
261
|
{
|
|
203
|
-
"name": "
|
|
204
|
-
"value":
|
|
262
|
+
"name": "lineBoxHeight",
|
|
263
|
+
"value": 1.4,
|
|
205
264
|
"type": "FLOAT",
|
|
206
|
-
"refId": "
|
|
207
|
-
"collection": "typography",
|
|
208
|
-
"mode": "default",
|
|
209
|
-
"group": "typography",
|
|
210
|
-
"scopes": ["LINE_HEIGHT"]
|
|
265
|
+
"refId": "lineBoxHeight"
|
|
211
266
|
},
|
|
212
267
|
{
|
|
213
268
|
"name": "fontStack/monospace",
|
|
214
|
-
"value": "SF Mono",
|
|
269
|
+
"value": "ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace",
|
|
215
270
|
"type": "STRING",
|
|
216
271
|
"refId": "typography/fontStack/monospace",
|
|
217
272
|
"collection": "typography",
|
|
@@ -221,7 +276,7 @@
|
|
|
221
276
|
},
|
|
222
277
|
{
|
|
223
278
|
"name": "fontStack/sansSerifDisplay",
|
|
224
|
-
"value": "
|
|
279
|
+
"value": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
225
280
|
"type": "STRING",
|
|
226
281
|
"refId": "typography/fontStack/sansSerifDisplay",
|
|
227
282
|
"collection": "typography",
|
|
@@ -231,7 +286,7 @@
|
|
|
231
286
|
},
|
|
232
287
|
{
|
|
233
288
|
"name": "fontStack/sansSerif",
|
|
234
|
-
"value": "
|
|
289
|
+
"value": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
235
290
|
"type": "STRING",
|
|
236
291
|
"refId": "typography/fontStack/sansSerif",
|
|
237
292
|
"collection": "typography",
|
|
@@ -241,7 +296,7 @@
|
|
|
241
296
|
},
|
|
242
297
|
{
|
|
243
298
|
"name": "fontStack/system",
|
|
244
|
-
"value": "
|
|
299
|
+
"value": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
245
300
|
"type": "STRING",
|
|
246
301
|
"refId": "typography/fontStack/system",
|
|
247
302
|
"collection": "typography",
|
|
@@ -288,104 +343,5 @@
|
|
|
288
343
|
"mode": "default",
|
|
289
344
|
"group": "base/typography",
|
|
290
345
|
"scopes": ["FONT_WEIGHT"]
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"name": "text/codeInline/weight",
|
|
294
|
-
"value": 400,
|
|
295
|
-
"type": "FLOAT",
|
|
296
|
-
"refId": "typography/text/codeInline/weight",
|
|
297
|
-
"reference": "base/typography/base/text/weight/normal",
|
|
298
|
-
"collection": "typography",
|
|
299
|
-
"mode": "default",
|
|
300
|
-
"group": "typography",
|
|
301
|
-
"scopes": ["FONT_WEIGHT"]
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"name": "text/codeBlock/weight",
|
|
305
|
-
"value": 400,
|
|
306
|
-
"type": "FLOAT",
|
|
307
|
-
"refId": "typography/text/codeBlock/weight",
|
|
308
|
-
"reference": "base/typography/base/text/weight/normal",
|
|
309
|
-
"collection": "typography",
|
|
310
|
-
"mode": "default",
|
|
311
|
-
"group": "typography",
|
|
312
|
-
"scopes": ["FONT_WEIGHT"]
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
"name": "text/caption/weight",
|
|
316
|
-
"value": 400,
|
|
317
|
-
"type": "FLOAT",
|
|
318
|
-
"refId": "typography/text/caption/weight",
|
|
319
|
-
"reference": "base/typography/base/text/weight/normal",
|
|
320
|
-
"collection": "typography",
|
|
321
|
-
"mode": "default",
|
|
322
|
-
"group": "typography",
|
|
323
|
-
"scopes": ["FONT_WEIGHT"]
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"name": "text/body/weight",
|
|
327
|
-
"value": 400,
|
|
328
|
-
"type": "FLOAT",
|
|
329
|
-
"refId": "typography/text/body/weight",
|
|
330
|
-
"reference": "base/typography/base/text/weight/normal",
|
|
331
|
-
"collection": "typography",
|
|
332
|
-
"mode": "default",
|
|
333
|
-
"group": "typography",
|
|
334
|
-
"scopes": ["FONT_WEIGHT"]
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"name": "text/subtitle/weight",
|
|
338
|
-
"value": 400,
|
|
339
|
-
"type": "FLOAT",
|
|
340
|
-
"refId": "typography/text/subtitle/weight",
|
|
341
|
-
"reference": "base/typography/base/text/weight/normal",
|
|
342
|
-
"collection": "typography",
|
|
343
|
-
"mode": "default",
|
|
344
|
-
"group": "typography",
|
|
345
|
-
"scopes": ["FONT_WEIGHT"]
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"name": "text/title/weight/small",
|
|
349
|
-
"value": 600,
|
|
350
|
-
"type": "FLOAT",
|
|
351
|
-
"refId": "typography/text/title/weight/small",
|
|
352
|
-
"reference": "base/typography/base/text/weight/semibold",
|
|
353
|
-
"collection": "typography",
|
|
354
|
-
"mode": "default",
|
|
355
|
-
"group": "typography",
|
|
356
|
-
"scopes": ["FONT_WEIGHT"]
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"name": "text/title/weight/medium",
|
|
360
|
-
"value": 600,
|
|
361
|
-
"type": "FLOAT",
|
|
362
|
-
"refId": "typography/text/title/weight/medium",
|
|
363
|
-
"reference": "base/typography/base/text/weight/semibold",
|
|
364
|
-
"collection": "typography",
|
|
365
|
-
"mode": "default",
|
|
366
|
-
"group": "typography",
|
|
367
|
-
"scopes": ["FONT_WEIGHT"]
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
"name": "text/title/weight/large",
|
|
371
|
-
"value": 600,
|
|
372
|
-
"type": "FLOAT",
|
|
373
|
-
"refId": "typography/text/title/weight/large",
|
|
374
|
-
"reference": "base/typography/base/text/weight/semibold",
|
|
375
|
-
"collection": "typography",
|
|
376
|
-
"mode": "default",
|
|
377
|
-
"group": "typography",
|
|
378
|
-
"scopes": ["FONT_WEIGHT"]
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"name": "text/display/weight",
|
|
382
|
-
"value": 500,
|
|
383
|
-
"type": "FLOAT",
|
|
384
|
-
"refId": "typography/text/display/weight",
|
|
385
|
-
"reference": "base/typography/base/text/weight/medium",
|
|
386
|
-
"collection": "typography",
|
|
387
|
-
"mode": "default",
|
|
388
|
-
"group": "typography",
|
|
389
|
-
"scopes": ["FONT_WEIGHT"]
|
|
390
346
|
}
|
|
391
347
|
]
|
|
@@ -295,17 +295,26 @@
|
|
|
295
295
|
--topicTag-borderColor: #00000000;
|
|
296
296
|
--highlight-neutral-bgColor: #d2992266;
|
|
297
297
|
--page-header-bgColor: #0d1117;
|
|
298
|
-
--diffBlob-
|
|
299
|
-
--diffBlob-
|
|
300
|
-
--diffBlob-
|
|
301
|
-
--diffBlob-
|
|
302
|
-
--diffBlob-
|
|
303
|
-
--diffBlob-
|
|
304
|
-
--diffBlob-
|
|
305
|
-
--diffBlob-
|
|
306
|
-
--diffBlob-
|
|
307
|
-
--diffBlob-
|
|
308
|
-
--diffBlob-
|
|
298
|
+
--diffBlob-additionLine-fgColor: #f0f6fc;
|
|
299
|
+
--diffBlob-additionLine-bgColor: #388bfd26;
|
|
300
|
+
--diffBlob-additionWord-fgColor: #f0f6fc;
|
|
301
|
+
--diffBlob-additionWord-bgColor: #388bfd66;
|
|
302
|
+
--diffBlob-additionNum-fgColor: #f0f6fc;
|
|
303
|
+
--diffBlob-additionNum-bgColor: #58a6ff4d;
|
|
304
|
+
--diffBlob-deletionLine-fgColor: #f0f6fc;
|
|
305
|
+
--diffBlob-deletionLine-bgColor: #db6d2826;
|
|
306
|
+
--diffBlob-deletionWord-fgColor: #f0f6fc;
|
|
307
|
+
--diffBlob-deletionWord-bgColor: #db6d2866;
|
|
308
|
+
--diffBlob-deletionNum-fgColor: #f0f6fc;
|
|
309
|
+
--diffBlob-deletionNum-bgColor: #db6d284d;
|
|
310
|
+
--diffBlob-hunkLine-fgColor: #9198a1;
|
|
311
|
+
--diffBlob-hunkLine-bgColor: #212830;
|
|
312
|
+
--diffBlob-hunkNum-fgColor-rest: #f0f6fc;
|
|
313
|
+
--diffBlob-hunkNum-fgColor-hover: #ffffff;
|
|
314
|
+
--diffBlob-hunkNum-bgColor-rest: #2f3742;
|
|
315
|
+
--diffBlob-hunkNum-bgColor-hover: #656c76;
|
|
316
|
+
--diffBlob-emptyNum-bgColor: #151b23;
|
|
317
|
+
--diffBlob-emptyLine-bgColor: #151b23;
|
|
309
318
|
--diffBlob-expander-iconColor: #9198a1;
|
|
310
319
|
--codeMirror-fgColor: #f0f6fc;
|
|
311
320
|
--codeMirror-bgColor: #0d1117;
|
|
@@ -476,7 +485,7 @@
|
|
|
476
485
|
--control-transparent-borderColor-rest: #00000000;
|
|
477
486
|
--control-transparent-borderColor-hover: #00000000;
|
|
478
487
|
--control-transparent-borderColor-active: #00000000;
|
|
479
|
-
--control-danger-fgColor-rest: #
|
|
488
|
+
--control-danger-fgColor-rest: #f0883e;
|
|
480
489
|
--control-danger-fgColor-hover: #f0883e;
|
|
481
490
|
--control-danger-bgColor-hover: #db6d281a;
|
|
482
491
|
--control-danger-bgColor-active: #db6d2866;
|
|
@@ -532,6 +541,7 @@
|
|
|
532
541
|
--button-primary-shadow-selected: 0px 0px 0px 0px #000000;
|
|
533
542
|
--button-invisible-fgColor-rest: #f0f6fc;
|
|
534
543
|
--button-invisible-fgColor-hover: #f0f6fc;
|
|
544
|
+
--button-invisible-fgColor-active: #f0f6fc;
|
|
535
545
|
--button-invisible-fgColor-disabled: #656c7699;
|
|
536
546
|
--button-invisible-iconColor-rest: #9198a1;
|
|
537
547
|
--button-invisible-iconColor-hover: #9198a1;
|
|
@@ -554,11 +564,11 @@
|
|
|
554
564
|
--button-outline-borderColor-hover: #3d444d;
|
|
555
565
|
--button-outline-borderColor-selected: #3d444d;
|
|
556
566
|
--button-outline-shadow-selected: 0px 0px 0px 0px #000000;
|
|
557
|
-
--button-danger-fgColor-rest: #
|
|
567
|
+
--button-danger-fgColor-rest: #f0883e;
|
|
558
568
|
--button-danger-fgColor-hover: #ffffff;
|
|
559
569
|
--button-danger-fgColor-active: #ffffff;
|
|
560
|
-
--button-danger-fgColor-disabled: #
|
|
561
|
-
--button-danger-iconColor-rest: #
|
|
570
|
+
--button-danger-fgColor-disabled: #f0883e80;
|
|
571
|
+
--button-danger-iconColor-rest: #f0883e;
|
|
562
572
|
--button-danger-iconColor-hover: #ffffff;
|
|
563
573
|
--button-danger-bgColor-rest: #212830;
|
|
564
574
|
--button-danger-bgColor-hover: #9b4215;
|
|
@@ -583,9 +593,9 @@
|
|
|
583
593
|
--buttonCounter-danger-bgColor-hover: #ffffff33;
|
|
584
594
|
--buttonCounter-danger-bgColor-disabled: #bd561d0d;
|
|
585
595
|
--buttonCounter-danger-bgColor-rest: #49020233;
|
|
586
|
-
--buttonCounter-danger-fgColor-rest: #
|
|
596
|
+
--buttonCounter-danger-fgColor-rest: #f0883e;
|
|
587
597
|
--buttonCounter-danger-fgColor-hover: #ffffff;
|
|
588
|
-
--buttonCounter-danger-fgColor-disabled: #
|
|
598
|
+
--buttonCounter-danger-fgColor-disabled: #f0883e80;
|
|
589
599
|
--reactionButton-selected-bgColor-rest: #388bfd33;
|
|
590
600
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
591
601
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
@@ -736,7 +746,7 @@
|
|
|
736
746
|
--fgColor-open: #f0883e;
|
|
737
747
|
--fgColor-attention: #d29922;
|
|
738
748
|
--fgColor-severe: #db6d28;
|
|
739
|
-
--fgColor-danger: #
|
|
749
|
+
--fgColor-danger: #f0883e;
|
|
740
750
|
--fgColor-closed: #9198a1;
|
|
741
751
|
--fgColor-done: #ab7df8;
|
|
742
752
|
--fgColor-upsell: #ab7df8;
|
|
@@ -756,7 +766,7 @@
|
|
|
756
766
|
--bgColor-accent-emphasis: #1f6feb;
|
|
757
767
|
--bgColor-success-muted: #388bfd26;
|
|
758
768
|
--bgColor-success-emphasis: #1f6feb;
|
|
759
|
-
--bgColor-open-muted: #
|
|
769
|
+
--bgColor-open-muted: #db6d2833;
|
|
760
770
|
--bgColor-open-emphasis: #bd561d;
|
|
761
771
|
--bgColor-attention-muted: #bb800926;
|
|
762
772
|
--bgColor-attention-emphasis: #9e6a03;
|
|
@@ -1154,17 +1164,26 @@
|
|
|
1154
1164
|
--topicTag-borderColor: #00000000;
|
|
1155
1165
|
--highlight-neutral-bgColor: #d2992266;
|
|
1156
1166
|
--page-header-bgColor: #0d1117;
|
|
1157
|
-
--diffBlob-
|
|
1158
|
-
--diffBlob-
|
|
1159
|
-
--diffBlob-
|
|
1160
|
-
--diffBlob-
|
|
1161
|
-
--diffBlob-
|
|
1162
|
-
--diffBlob-
|
|
1163
|
-
--diffBlob-
|
|
1164
|
-
--diffBlob-
|
|
1165
|
-
--diffBlob-
|
|
1166
|
-
--diffBlob-
|
|
1167
|
-
--diffBlob-
|
|
1167
|
+
--diffBlob-additionLine-fgColor: #f0f6fc;
|
|
1168
|
+
--diffBlob-additionLine-bgColor: #388bfd26;
|
|
1169
|
+
--diffBlob-additionWord-fgColor: #f0f6fc;
|
|
1170
|
+
--diffBlob-additionWord-bgColor: #388bfd66;
|
|
1171
|
+
--diffBlob-additionNum-fgColor: #f0f6fc;
|
|
1172
|
+
--diffBlob-additionNum-bgColor: #58a6ff4d;
|
|
1173
|
+
--diffBlob-deletionLine-fgColor: #f0f6fc;
|
|
1174
|
+
--diffBlob-deletionLine-bgColor: #db6d2826;
|
|
1175
|
+
--diffBlob-deletionWord-fgColor: #f0f6fc;
|
|
1176
|
+
--diffBlob-deletionWord-bgColor: #db6d2866;
|
|
1177
|
+
--diffBlob-deletionNum-fgColor: #f0f6fc;
|
|
1178
|
+
--diffBlob-deletionNum-bgColor: #db6d284d;
|
|
1179
|
+
--diffBlob-hunkLine-fgColor: #9198a1;
|
|
1180
|
+
--diffBlob-hunkLine-bgColor: #212830;
|
|
1181
|
+
--diffBlob-hunkNum-fgColor-rest: #f0f6fc;
|
|
1182
|
+
--diffBlob-hunkNum-fgColor-hover: #ffffff;
|
|
1183
|
+
--diffBlob-hunkNum-bgColor-rest: #2f3742;
|
|
1184
|
+
--diffBlob-hunkNum-bgColor-hover: #656c76;
|
|
1185
|
+
--diffBlob-emptyNum-bgColor: #151b23;
|
|
1186
|
+
--diffBlob-emptyLine-bgColor: #151b23;
|
|
1168
1187
|
--diffBlob-expander-iconColor: #9198a1;
|
|
1169
1188
|
--codeMirror-fgColor: #f0f6fc;
|
|
1170
1189
|
--codeMirror-bgColor: #0d1117;
|
|
@@ -1335,7 +1354,7 @@
|
|
|
1335
1354
|
--control-transparent-borderColor-rest: #00000000;
|
|
1336
1355
|
--control-transparent-borderColor-hover: #00000000;
|
|
1337
1356
|
--control-transparent-borderColor-active: #00000000;
|
|
1338
|
-
--control-danger-fgColor-rest: #
|
|
1357
|
+
--control-danger-fgColor-rest: #f0883e;
|
|
1339
1358
|
--control-danger-fgColor-hover: #f0883e;
|
|
1340
1359
|
--control-danger-bgColor-hover: #db6d281a;
|
|
1341
1360
|
--control-danger-bgColor-active: #db6d2866;
|
|
@@ -1391,6 +1410,7 @@
|
|
|
1391
1410
|
--button-primary-shadow-selected: 0px 0px 0px 0px #000000;
|
|
1392
1411
|
--button-invisible-fgColor-rest: #f0f6fc;
|
|
1393
1412
|
--button-invisible-fgColor-hover: #f0f6fc;
|
|
1413
|
+
--button-invisible-fgColor-active: #f0f6fc;
|
|
1394
1414
|
--button-invisible-fgColor-disabled: #656c7699;
|
|
1395
1415
|
--button-invisible-iconColor-rest: #9198a1;
|
|
1396
1416
|
--button-invisible-iconColor-hover: #9198a1;
|
|
@@ -1413,11 +1433,11 @@
|
|
|
1413
1433
|
--button-outline-borderColor-hover: #3d444d;
|
|
1414
1434
|
--button-outline-borderColor-selected: #3d444d;
|
|
1415
1435
|
--button-outline-shadow-selected: 0px 0px 0px 0px #000000;
|
|
1416
|
-
--button-danger-fgColor-rest: #
|
|
1436
|
+
--button-danger-fgColor-rest: #f0883e;
|
|
1417
1437
|
--button-danger-fgColor-hover: #ffffff;
|
|
1418
1438
|
--button-danger-fgColor-active: #ffffff;
|
|
1419
|
-
--button-danger-fgColor-disabled: #
|
|
1420
|
-
--button-danger-iconColor-rest: #
|
|
1439
|
+
--button-danger-fgColor-disabled: #f0883e80;
|
|
1440
|
+
--button-danger-iconColor-rest: #f0883e;
|
|
1421
1441
|
--button-danger-iconColor-hover: #ffffff;
|
|
1422
1442
|
--button-danger-bgColor-rest: #212830;
|
|
1423
1443
|
--button-danger-bgColor-hover: #9b4215;
|
|
@@ -1442,9 +1462,9 @@
|
|
|
1442
1462
|
--buttonCounter-danger-bgColor-hover: #ffffff33;
|
|
1443
1463
|
--buttonCounter-danger-bgColor-disabled: #bd561d0d;
|
|
1444
1464
|
--buttonCounter-danger-bgColor-rest: #49020233;
|
|
1445
|
-
--buttonCounter-danger-fgColor-rest: #
|
|
1465
|
+
--buttonCounter-danger-fgColor-rest: #f0883e;
|
|
1446
1466
|
--buttonCounter-danger-fgColor-hover: #ffffff;
|
|
1447
|
-
--buttonCounter-danger-fgColor-disabled: #
|
|
1467
|
+
--buttonCounter-danger-fgColor-disabled: #f0883e80;
|
|
1448
1468
|
--reactionButton-selected-bgColor-rest: #388bfd33;
|
|
1449
1469
|
--reactionButton-selected-bgColor-hover: #3a8cfd5c;
|
|
1450
1470
|
--reactionButton-selected-fgColor-rest: #4493f8;
|
|
@@ -1595,7 +1615,7 @@
|
|
|
1595
1615
|
--fgColor-open: #f0883e;
|
|
1596
1616
|
--fgColor-attention: #d29922;
|
|
1597
1617
|
--fgColor-severe: #db6d28;
|
|
1598
|
-
--fgColor-danger: #
|
|
1618
|
+
--fgColor-danger: #f0883e;
|
|
1599
1619
|
--fgColor-closed: #9198a1;
|
|
1600
1620
|
--fgColor-done: #ab7df8;
|
|
1601
1621
|
--fgColor-upsell: #ab7df8;
|
|
@@ -1615,7 +1635,7 @@
|
|
|
1615
1635
|
--bgColor-accent-emphasis: #1f6feb;
|
|
1616
1636
|
--bgColor-success-muted: #388bfd26;
|
|
1617
1637
|
--bgColor-success-emphasis: #1f6feb;
|
|
1618
|
-
--bgColor-open-muted: #
|
|
1638
|
+
--bgColor-open-muted: #db6d2833;
|
|
1619
1639
|
--bgColor-open-emphasis: #bd561d;
|
|
1620
1640
|
--bgColor-attention-muted: #bb800926;
|
|
1621
1641
|
--bgColor-attention-emphasis: #9e6a03;
|