From 9187fb7b4a4ad8627eecd1c687ac938f96bcba91 Mon Sep 17 00:00:00 2001 From: Lukas Oppermann Date: Thu, 18 Apr 2024 08:27:10 +0200 Subject: [PATCH] rm v2 tokens folder --- .changeset/chilled-cars-hang.md | 4 +- .eslintignore | 1 - .github/workflows/ci.yml | 2 +- .gitignore | 1 - .prettierignore | 1 - package.json | 3 - tokens/base/size/size.json | 57 --- tokens/base/typography/typography.json | 20 - tokens/functional/size/border.json | 48 --- tokens/functional/size/breakpoints.json | 24 -- tokens/functional/size/size-coarse.json | 27 -- tokens/functional/size/size-fine.json | 27 -- tokens/functional/size/size.json | 189 --------- tokens/functional/size/viewport.json | 24 -- tokens/functional/typography/typography.json | 213 ---------- tokens/removed/color.json | 421 ------------------- 16 files changed, 3 insertions(+), 1059 deletions(-) delete mode 100644 tokens/base/size/size.json delete mode 100644 tokens/base/typography/typography.json delete mode 100644 tokens/functional/size/border.json delete mode 100644 tokens/functional/size/breakpoints.json delete mode 100644 tokens/functional/size/size-coarse.json delete mode 100644 tokens/functional/size/size-fine.json delete mode 100644 tokens/functional/size/size.json delete mode 100644 tokens/functional/size/viewport.json delete mode 100644 tokens/functional/typography/typography.json delete mode 100644 tokens/removed/color.json diff --git a/.changeset/chilled-cars-hang.md b/.changeset/chilled-cars-hang.md index cbecce365..0b8073845 100644 --- a/.changeset/chilled-cars-hang.md +++ b/.changeset/chilled-cars-hang.md @@ -1,5 +1,5 @@ --- -'@primer/primitives': patch +'@primer/primitives': minor --- -rm v2 output +Remove v2 token output (dist/tokens-v2-private) diff --git a/.eslintignore b/.eslintignore index 659a2de0a..b734e40ca 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,3 @@ -tokens-v2-private/ CHANGELOG.md diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dba139531..d19024f2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Build v1 tokens run: npm run build - - name: Build v8 tokens & fallbacks + - name: Build v8 tokens run: npm run build:v8 - name: Build fallbacks diff --git a/.gitignore b/.gitignore index 9dfeaf87f..6e66ad5c6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ node_modules *.log /dist/ -/tokens-v2-private/ yarn.lock coverage/ docs/public/ diff --git a/.prettierignore b/.prettierignore index 5c66df3b2..4c638dbb0 100644 --- a/.prettierignore +++ b/.prettierignore @@ -7,4 +7,3 @@ storybook-static # Ignore all files relating to v1 tokens # TODO: Remove after v1 tokens have been removed data/ -tokens-v2-private/ diff --git a/package.json b/package.json index fff576176..2205d29fc 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,6 @@ "description": "Typography, spacing, and color primitives for Primer design system", "files": [ "dist", - "tokens-v2-private", - "build.js", - "tokens/", "src/**/*", "!src/**/*.test.ts" ], diff --git a/tokens/base/size/size.json b/tokens/base/size/size.json deleted file mode 100644 index bfebf122e..000000000 --- a/tokens/base/size/size.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "base": { - "size": { - "4": { - "value": "4px" - }, - "8": { - "value": "8px" - }, - "12": { - "value": "12px" - }, - "16": { - "value": "16px" - }, - "20": { - "value": "20px" - }, - "24": { - "value": "24px" - }, - "28": { - "value": "28px" - }, - "32": { - "value": "32px" - }, - "36": { - "value": "36px" - }, - "40": { - "value": "40px" - }, - "44": { - "value": "44px" - }, - "48": { - "value": "48px" - }, - "64": { - "value": "64px" - }, - "80": { - "value": "80px" - }, - "96": { - "value": "96px" - }, - "112": { - "value": "112px" - }, - "128": { - "value": "128px" - } - } - } -} diff --git a/tokens/base/typography/typography.json b/tokens/base/typography/typography.json deleted file mode 100644 index 7e67a55f2..000000000 --- a/tokens/base/typography/typography.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "base": { - "text": { - "weight": { - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - } - } - } - } -} diff --git a/tokens/functional/size/border.json b/tokens/functional/size/border.json deleted file mode 100644 index f030f7a1e..000000000 --- a/tokens/functional/size/border.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "": { - "borderInset": { - "thin": { - "value": "inset 0 0 0 {.borderWidth.thin}" - }, - "thick": { - "value": "inset 0 0 0 {.borderWidth.thick}" - }, - "thicker": { - "value": "inset 0 0 0 {.borderWidth.thicker}" - } - }, - "borderWidth": { - "thin": { - "value": "max(1px, 0.0625rem)" - }, - "thick": { - "value": "max(2px, 0.125rem)" - }, - "thicker": { - "value": "max(4px, 0.25rem)" - } - }, - "borderRadius": { - "small": { - "value": "3px" - }, - "medium": { - "value": "6px" - }, - "large": { - "value": "12px" - }, - "full": { - "value": "100vh" - } - } - }, - "outline": { - "focus": { - "offset": { - "$value": "1px", - "$type": "dimension" - } - } - } -} diff --git a/tokens/functional/size/breakpoints.json b/tokens/functional/size/breakpoints.json deleted file mode 100644 index 2a72dc78b..000000000 --- a/tokens/functional/size/breakpoints.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "": { - "breakpoint": { - "xsmall": { - "value": "320px" - }, - "small": { - "value": "544px" - }, - "medium": { - "value": "768px" - }, - "large": { - "value": "1012px" - }, - "xlarge": { - "value": "1280px" - }, - "xxlarge": { - "value": "1440px" - } - } - } -} diff --git a/tokens/functional/size/size-coarse.json b/tokens/functional/size/size-coarse.json deleted file mode 100644 index 9a80b455e..000000000 --- a/tokens/functional/size/size-coarse.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "": { - "control": { - "minTarget": { - "auto": { - "value": "{base.size.44}" - } - } - }, - "controlStack": { - "small": { - "gap": { - "auto": { - "value": "{base.size.16}" - } - } - }, - "medium": { - "gap": { - "auto": { - "value": "{base.size.12}" - } - } - } - } - } -} diff --git a/tokens/functional/size/size-fine.json b/tokens/functional/size/size-fine.json deleted file mode 100644 index 6f4f3e864..000000000 --- a/tokens/functional/size/size-fine.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "": { - "control": { - "minTarget": { - "auto": { - "value": "{base.size.16}" - } - } - }, - "controlStack": { - "small": { - "gap": { - "auto": { - "value": "{base.size.8}" - } - } - }, - "medium": { - "gap": { - "auto": { - "value": "{base.size.8}" - } - } - } - } - } -} diff --git a/tokens/functional/size/size.json b/tokens/functional/size/size.json deleted file mode 100644 index cb1d70a89..000000000 --- a/tokens/functional/size/size.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "": { - "control": { - "minTarget": { - "fine": { - "value": "{base.size.16}" - }, - "coarse": { - "value": "{base.size.44}" - } - }, - "xsmall": { - "size": { - "value": "{base.size.24}" - }, - "lineBoxHeight": { - "value": "{base.size.20}" - }, - "paddingBlock": { - "value": "calc(({.control.xsmall.size} - {.control.xsmall.lineBoxHeight}) / 2)" - }, - "paddingInline": { - "condensed": { - "value": "{base.size.4}" - }, - "normal": { - "value": "{base.size.8}" - }, - "spacious": { - "value": "{base.size.12}" - } - }, - "gap": { - "value": "{base.size.4}" - } - }, - "small": { - "size": { - "value": "{base.size.28}" - }, - "lineBoxHeight": { - "value": "{base.size.20}" - }, - "paddingBlock": { - "value": "calc(({.control.small.size} - {.control.small.lineBoxHeight}) / 2)" - }, - "paddingInline": { - "condensed": { - "value": "{base.size.8}" - }, - "normal": { - "value": "{base.size.12}" - } - }, - "gap": { - "value": "{base.size.4}" - } - }, - "medium": { - "size": { - "value": "{base.size.32}" - }, - "lineBoxHeight": { - "value": "{base.size.20}" - }, - "paddingBlock": { - "value": "calc(({.control.medium.size} - {.control.medium.lineBoxHeight}) / 2)" - }, - "paddingInline": { - "condensed": { - "value": "{base.size.8}" - }, - "normal": { - "value": "{base.size.12}" - }, - "spacious": { - "value": "{base.size.16}" - } - }, - "gap": { - "value": "{base.size.8}" - } - }, - "large": { - "size": { - "value": "{base.size.40}" - }, - "lineBoxHeight": { - "value": "{base.size.20}" - }, - "paddingBlock": { - "value": "calc(({.control.large.size} - {.control.large.lineBoxHeight}) / 2)" - }, - "paddingInline": { - "normal": { - "value": "{base.size.12}" - }, - "spacious": { - "value": "{base.size.16}" - } - }, - "gap": { - "value": "{base.size.8}" - } - }, - "xlarge": { - "size": { - "value": "{base.size.48}" - }, - "lineBoxHeight": { - "value": "{base.size.20}" - }, - "paddingBlock": { - "value": "calc(({.control.xlarge.size} - {.control.xlarge.lineBoxHeight}) / 2)" - }, - "paddingInline": { - "normal": { - "value": "{base.size.12}" - }, - "spacious": { - "value": "{base.size.16}" - } - }, - "gap": { - "value": "{base.size.8}" - } - } - }, - "stack": { - "padding": { - "condensed": { - "value": "{base.size.8}" - }, - "normal": { - "value": "{base.size.16}" - }, - "spacious": { - "value": "{base.size.24}" - } - }, - "gap": { - "condensed": { - "value": "{base.size.8}" - }, - "normal": { - "value": "{base.size.16}" - }, - "spacious": { - "value": "{base.size.24}" - } - } - }, - "controlStack": { - "small": { - "gap": { - "condensed": { - "value": "{base.size.8}" - }, - "spacious": { - "value": "{base.size.16}" - } - } - }, - "medium": { - "gap": { - "condensed": { - "value": "{base.size.8}" - }, - "spacious": { - "value": "{base.size.12}" - } - } - }, - "large": { - "gap": { - "auto": { - "value": "{base.size.8}" - }, - "condensed": { - "value": "{base.size.8}" - }, - "spacious": { - "value": "{base.size.12}" - } - } - } - } - } -} diff --git a/tokens/functional/size/viewport.json b/tokens/functional/size/viewport.json deleted file mode 100644 index 976ea0316..000000000 --- a/tokens/functional/size/viewport.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "": { - "viewportRange": { - "narrow": { - "value": "(max-width: calc({.breakpoint.medium} - 0.02px))" - }, - "narrowLandscape": { - "value": "(max-width: calc({.breakpoint.large} - 0.02px) and (max-height: calc({.breakpoint.small} - 0.02px)) and (orientation: landscape))" - }, - "regular": { - "value": "(min-width: {.breakpoint.medium})" - }, - "wide": { - "value": "(min-width: {.breakpoint.xxlarge})" - }, - "portrait": { - "value": "(orientation: portrait)" - }, - "landscape": { - "value": "(orientation: landscape)" - } - } - } -} diff --git a/tokens/functional/typography/typography.json b/tokens/functional/typography/typography.json deleted file mode 100644 index c9f87c110..000000000 --- a/tokens/functional/typography/typography.json +++ /dev/null @@ -1,213 +0,0 @@ -{ - "": { - "fontStack": { - "system": { - "value": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'" - }, - "sansSerif": { - "value": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'" - }, - "monospace": { - "value": "ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace" - } - }, - "text": { - "display": { - "lineBoxHeight": { - "value": "56px" - }, - "size": { - "value": "40px" - }, - "lineHeight": { - "value": "calc(56/40)" - }, - "weight": { - "value": "{base.text.weight.medium}" - }, - "shorthand": { - "value": { - "fontWeight": "{.text.display.weight}", - "fontSize": "{.text.display.size}", - "lineHeight": "{.text.display.lineHeight}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - } - }, - "title": { - "size": { - "large": { - "value": "32px" - }, - "medium": { - "value": "20px" - } - }, - "lineHeight": { - "large": { - "value": "calc(48/32)" - }, - "medium": { - "value": "calc(32/20)" - } - }, - "weight": { - "value": "{base.text.weight.semibold}" - }, - "shorthand": { - "large": { - "value": { - "fontWeight": "{.text.title.weight}", - "fontSize": "{.text.title.size.large}", - "lineHeight": "{.text.title.lineHeight.large}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - }, - "medium": { - "value": { - "fontWeight": "{.text.title.weight}", - "fontSize": "{.text.title.size.medium}", - "lineHeight": "{.text.title.lineHeight.medium}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - } - } - }, - "subtitle": { - "size": { - "value": "20px" - }, - "lineHeight": { - "value": "calc(32/20)" - }, - "weight": { - "value": "{base.text.weight.normal}" - }, - "shorthand": { - "value": { - "fontWeight": "{.text.subtitle.weight}", - "fontSize": "{.text.subtitle.size}", - "lineHeight": "{.text.subtitle.lineHeight}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - } - }, - "body": { - "size": { - "large": { - "value": "16px" - }, - "medium": { - "value": "14px" - }, - "small": { - "value": "12px" - } - }, - "lineHeight": { - "large": { - "value": "calc(24/16)" - }, - "medium": { - "value": "calc(20/14)" - }, - "small": { - "value": "calc(20/12)" - } - }, - "weight": { - "value": "{base.text.weight.normal}" - }, - "shorthand": { - "large": { - "value": { - "fontWeight": "{.text.body.weight}", - "fontSize": "{.text.body.size.large}", - "lineHeight": "{.text.body.lineHeight.large}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - }, - "medium": { - "value": { - "fontWeight": "{.text.body.weight}", - "fontSize": "{.text.body.size.medium}", - "lineHeight": "{.text.body.lineHeight.medium}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - }, - "small": { - "value": { - "fontWeight": "{.text.body.weight}", - "fontSize": "{.text.body.size.small}", - "lineHeight": "{.text.body.lineHeight.small}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - } - } - }, - "caption": { - "size": { - "value": "12px" - }, - "lineHeight": { - "value": "calc(16/12)" - }, - "weight": { - "value": "{base.text.weight.normal}" - }, - "shorthand": { - "value": { - "fontWeight": "{.text.caption.weight}", - "fontSize": "{.text.caption.size}", - "lineHeight": "{.text.caption.lineHeight}", - "fontFamily": "{.fontStack.sansSerif}" - }, - "type": "typography" - } - }, - "codeBlock": { - "size": { - "value": "13px" - }, - "lineHeight": { - "value": "calc(20/13)" - }, - "weight": { - "value": "{base.text.weight.normal}" - }, - "shorthand": { - "value": { - "fontWeight": "{.text.codeBlock.weight}", - "fontSize": "{.text.codeBlock.size}", - "lineHeight": "{.text.codeBlock.lineHeight}", - "fontFamily": "{.fontStack.monospace}" - }, - "type": "typography" - } - }, - "codeInline": { - "size": { - "value": "0.9285em" - }, - "weight": { - "value": "{base.text.weight.normal}" - }, - "shorthand": { - "value": { - "fontWeight": "{.text.codeInline.weight}", - "fontSize": "{.text.codeInline.size}", - "fontFamily": "{.fontStack.monospace}" - }, - "type": "typography" - } - } - } - } -} diff --git a/tokens/removed/color.json b/tokens/removed/color.json deleted file mode 100644 index 6ab26459b..000000000 --- a/tokens/removed/color.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "auto.black": null, - "auto.white": null, - "auto.gray.0": null, - "auto.gray.1": null, - "auto.gray.2": null, - "auto.gray.3": null, - "auto.gray.4": null, - "auto.gray.5": null, - "auto.gray.6": null, - "auto.gray.7": null, - "auto.gray.8": null, - "auto.gray.9": null, - "auto.blue.0": null, - "auto.blue.1": null, - "auto.blue.2": null, - "auto.blue.3": null, - "auto.blue.4": null, - "auto.blue.5": null, - "auto.blue.6": null, - "auto.blue.7": null, - "auto.blue.8": null, - "auto.blue.9": null, - "auto.green.0": null, - "auto.green.1": null, - "auto.green.2": null, - "auto.green.3": null, - "auto.green.4": null, - "auto.green.5": null, - "auto.green.6": null, - "auto.green.7": null, - "auto.green.8": null, - "auto.green.9": null, - "auto.yellow.0": null, - "auto.yellow.1": null, - "auto.yellow.2": null, - "auto.yellow.3": null, - "auto.yellow.4": null, - "auto.yellow.5": null, - "auto.yellow.6": null, - "auto.yellow.7": null, - "auto.yellow.8": null, - "auto.yellow.9": null, - "auto.orange.0": null, - "auto.orange.1": null, - "auto.orange.2": null, - "auto.orange.3": null, - "auto.orange.4": null, - "auto.orange.5": null, - "auto.orange.6": null, - "auto.orange.7": null, - "auto.orange.8": null, - "auto.orange.9": null, - "auto.red.0": null, - "auto.red.1": null, - "auto.red.2": null, - "auto.red.3": null, - "auto.red.4": null, - "auto.red.5": null, - "auto.red.6": null, - "auto.red.7": null, - "auto.red.8": null, - "auto.red.9": null, - "auto.purple.0": null, - "auto.purple.1": null, - "auto.purple.2": null, - "auto.purple.3": null, - "auto.purple.4": null, - "auto.purple.5": null, - "auto.purple.6": null, - "auto.purple.7": null, - "auto.purple.8": null, - "auto.purple.9": null, - "auto.pink.0": null, - "auto.pink.1": null, - "auto.pink.2": null, - "auto.pink.3": null, - "auto.pink.4": null, - "auto.pink.5": null, - "auto.pink.6": null, - "auto.pink.7": null, - "auto.pink.8": null, - "auto.pink.9": null, - "text.primary": "fg.default", - "text.secondary": "fg.muted", - "text.tertiary": "fg.muted", - "text.placeholder": "fg.subtle", - "text.disabled": "fg.muted", - "text.inverse": "fg.onEmphasis", - "text.link": "accent.fg", - "text.danger": "danger.fg", - "text.success": "success.fg", - "text.warning": "attention.fg", - "text.white": null, - "icon.primary": "fg.default", - "icon.secondary": "fg.muted", - "icon.tertiary": "fg.muted", - "icon.info": "accent.fg", - "icon.danger": "danger.fg", - "icon.success": "success.fg", - "icon.warning": "attention.fg", - "border.primary": "border.default", - "border.secondary": "border.muted", - "border.tertiary": "border.default", - "border.overlay": "border.default", - "border.inverse": "fg.onEmphasis", - "border.info": "accent.emphasis", - "border.danger": "danger.emphasis", - "border.success": "success.emphasis", - "border.warning": "attention.emphasis", - "bg.canvas": "canvas.default", - "bg.canvasMobile": null, - "bg.canvasInverse": "neutral.emphasis", - "bg.canvasInset": "canvas.inset", - "bg.primary": "canvas.default", - "bg.secondary": "canvas.subtle", - "bg.tertiary": "canvas.subtle", - "bg.overlay": "canvas.overlay", - "bg.backdrop": "primer.canvas.backdrop", - "bg.info": "accent.subtle", - "bg.infoInverse": "accent.emphasis", - "bg.danger": "danger.subtle", - "bg.dangerInverse": "danger.emphasis", - "bg.success": "success.subtle", - "bg.successInverse": "success.emphasis", - "bg.warning": "attention.subtle", - "bg.warningInverse": "attention.emphasis", - "shadow.highlight": "primer.shadow.highlight", - "shadow.inset": "primer.shadow.inset", - "state.hover.primaryBg": "accent.emphasis", - "state.hover.primaryBorder": "accent.emphasis", - "state.hover.primaryText": "fg.onEmphasis", - "state.hover.primaryIcon": "fg.onEmphasis", - "state.hover.secondaryBg": "neutral.subtle", - "state.hover.secondaryBorder": "neutral.subtle", - "state.selected.primaryBg": "accent.emphasis", - "state.selected.primaryBorder": "accent.emphasis", - "state.selected.primaryText": "fg.onEmphasis", - "state.selected.primaryIcon": "fg.onEmphasis", - "state.focus.border": "accent.emphasis", - "state.focus.shadow": "primer.shadow.focus", - "fade.fg10": null, - "fade.fg15": null, - "fade.fg30": null, - "fade.fg50": null, - "fade.fg70": null, - "fade.fg85": null, - "fade.black10": null, - "fade.black15": null, - "fade.black30": null, - "fade.black50": null, - "fade.black70": null, - "fade.black85": null, - "fade.white10": null, - "fade.white15": null, - "fade.white30": null, - "fade.white50": null, - "fade.white70": null, - "fade.white85": null, - "alert.info.text": "fg.default", - "alert.info.icon": "accent.fg", - "alert.info.bg": "accent.subtle", - "alert.info.border": "accent.muted", - "alert.warn.text": "fg.default", - "alert.warn.icon": "attention.fg", - "alert.warn.bg": "attention.subtle", - "alert.warn.border": "attention.muted", - "alert.error.text": "fg.default", - "alert.error.icon": "danger.fg", - "alert.error.bg": "danger.subtle", - "alert.error.border": "danger.muted", - "alert.success.text": "fg.default", - "alert.success.icon": "success.fg", - "alert.success.bg": "success.subtle", - "alert.success.border": "success.muted", - "autocomplete.shadow": "shadow.medium", - "autocomplete.rowBorder": "border.muted", - "blankslate.icon": "fg.muted", - "counter.text": "fg.default", - "counter.bg": "neutral.muted", - "counter.primary.text": "fg.onEmphasis", - "counter.primary.bg": "neutral.emphasis", - "counter.secondary.text": "fg.muted", - "counter.secondary.bg": "neutral.subtle", - "box.blueBorder": "accent.muted", - "box.rowYellowBg": "attention.subtle", - "box.rowBlueBg": "accent.subtle", - "box.headerBlueBg": "accent.subtle", - "box.headerBlueBorder": "accent.muted", - "box.borderInfo": "accent.muted", - "box.bgInfo": "accent.subtle", - "box.borderWarning": "attention.muted", - "box.bgWarning": "attention.subtle", - "branchName.text": "fg.muted", - "branchName.icon": "fg.muted", - "branchName.bg": "accent.subtle", - "branchName.link.text": "accent.fg", - "branchName.link.icon": "accent.fg", - "branchName.link.bg": "accent.subtle", - "markdown.codeBg": "neutral.muted", - "markdown.frameBorder": "border.default", - "markdown.blockquoteBorder": "border.default", - "markdown.tableBorder": "border.default", - "markdown.tableTrBorder": "border.muted", - "filterItem.barBg": "neutral.subtle", - "hiddenTextExpander.bg": "neutral.muted", - "hiddenTextExpander.bgHover": "accent.muted", - "dragAndDrop.border": "border.default", - "uploadEnabled.border": "border.default", - "uploadEnabled.borderFocused": "accent.emphasis", - "previewableCommentForm.border": "border.default", - "verifiedBadge.text": "success.fg", - "verifiedBadge.bg": "canvas.default", - "verifiedBadge.border": "border.default", - "socialCount.bg": "canvas.default", - "tooltip.text": "fg.onEmphasis", - "tooltip.bg": "neutral.emphasisPlus", - "filesExplorerIcon": "accent.fg", - "hlAuthorBg": "accent.subtle", - "hlAuthorBorder": "accent.muted", - "logoSubdued": "neutral.muted", - "discussionBorder": "success.muted", - "discussionBgSuccess": "success.emphasis", - "actionsWorkflowTableStickyBg": "primer.canvas.sticky", - "repoLanguageColorBorder": "primer.border.contrast", - "codeSelectionBg": "accent.muted", - "highlight.text": "fg.default", - "highlight.bg": "attention.subtle", - "blob.lineHighlightBg": "attention.subtle", - "blob.lineHighlightBorder": "attention.muted", - "topicTag.text": "accent.fg", - "topicTag.bg": "accent.subtle", - "topicTag.hoverBg": "accent.emphasis", - "topicTag.activeBg": "accent.subtle", - "footerInvertocat.octicon": "fg.subtle", - "footerInvertocat.octiconHover": "fg.muted", - "dropdown.shadow": "shadow.large", - "label.border": "border.default", - "label.primary.text": "fg.default", - "label.primary.border": "neutral.emphasis", - "label.secondary.text": "fg.muted", - "label.secondary.border": "border.default", - "label.info.text": "accent.fg", - "label.info.border": "accent.emphasis", - "label.success.text": "success.fg", - "label.success.border": "success.emphasis", - "label.warning.text": "attention.fg", - "label.warning.border": "attention.emphasis", - "label.danger.text": "danger.fg", - "label.danger.border": "danger.emphasis", - "label.orange.text": "severe.fg", - "label.orange.border": "severe.emphasis", - "input.bg": "canvas.default", - "input.contrastBg": "canvas.inset", - "input.border": "border.default", - "input.shadow": "primer.shadow.inset", - "input.disabledBorder": "border.default", - "input.warningBorder": "attention.emphasis", - "input.errorBorder": "danger.emphasis", - "input.tooltip.success.text": "fg.default", - "input.tooltip.success.bg": "success.subtle", - "input.tooltip.success.border": "success.muted", - "input.tooltip.warning.text": "fg.default", - "input.tooltip.warning.bg": "attention.subtle", - "input.tooltip.warning.border": "attention.muted", - "input.tooltip.error.text": "fg.default", - "input.tooltip.error.bg": "danger.subtle", - "input.tooltip.error.border": "danger.muted", - "toast.text": "fg.default", - "toast.bg": "canvas.default", - "toast.border": "border.default", - "toast.shadow": "shadow.large", - "toast.icon": "fg.onEmphasis", - "toast.iconBg": "accent.emphasis", - "toast.iconBorder": null, - "toast.success.text": "fg.default", - "toast.success.border": "border.default", - "toast.success.icon": "fg.onEmphasis", - "toast.success.iconBg": "success.emphasis", - "toast.success.iconBorder": null, - "toast.warning.text": "fg.default", - "toast.warning.border": "border.default", - "toast.warning.icon": "fg.default", - "toast.warning.iconBg": "attention.emphasis", - "toast.warning.iconBorder": null, - "toast.danger.text": "fg.default", - "toast.danger.border": "border.default", - "toast.danger.icon": "fg.onEmphasis", - "toast.danger.iconBg": "danger.emphasis", - "toast.danger.iconBorder": null, - "toast.loading.text": "fg.default", - "toast.loading.border": "border.default", - "toast.loading.icon": "fg.onEmphasis", - "toast.loading.iconBg": "neutral.emphasis", - "toast.loading.iconBorder": null, - "timeline.text": "fg.muted", - "timeline.badgeSuccessBorder": null, - "timeline.targetBadgeBorder": "accent.emphasis", - "timeline.targetBadgeShadow": "accent.muted", - "diffstat.neutralBg": "neutral.muted", - "diffstat.neutralBorder": "border.subtle", - "diffstat.deletionBg": "danger.emphasis", - "diff.addition.text": "fg.default", - "diff.addition.bg": "success.subtle", - "diff.addition.border": "success.muted", - "diff.deletion.text": "fg.default", - "diff.deletion.bg": "danger.subtle", - "diff.deletion.border": "danger.muted", - "diff.change.text": "attention.fg", - "diff.change.bg": "attention.subtle", - "diff.change.border": "attention.muted", - "mergeBox.successIconBg": "success.emphasis", - "mergeBox.successIconText": "fg.onEmphasis", - "mergeBox.successIconBorder": null, - "mergeBox.successIndicatorBg": "success.emphasis", - "mergeBox.successIndicatorBorder": null, - "mergeBox.mergedIconBg": "done.emphasis", - "mergeBox.mergedIconText": "fg.onEmphasis", - "mergeBox.mergedIconBorder": null, - "mergeBox.mergedBoxBorder": "done.emphasis", - "mergeBox.neutralIconBg": "neutral.emphasis", - "mergeBox.neutralIconText": "fg.onEmphasis", - "mergeBox.neutralIconBorder": null, - "mergeBox.neutralIndicatorBg": "neutral.emphasis", - "mergeBox.neutralIndicatorBorder": null, - "mergeBox.warningIconBg": "attention.emphasis", - "mergeBox.warningIconText": "fg.onEmphasis", - "mergeBox.warningIconBorder": null, - "mergeBox.warningBoxBorder": "attention.emphasis", - "mergeBox.warningMergeHighlight": null, - "mergeBox.errorIconBg": "danger.emphasis", - "mergeBox.errorIconText": "fg.onEmphasis", - "mergeBox.errorIconBorder": null, - "mergeBox.errorIndicatorBg": "danger.emphasis", - "mergeBox.errorIndicatorBorder": null, - "underlinenav.border": null, - "underlinenav.borderActive": "primer.border.active", - "underlinenav.text": "fg.default", - "underlinenav.textHover": "fg.default", - "underlinenav.textActive": "fg.default", - "underlinenav.iconHover": "fg.subtle", - "underlinenav.iconActive": "fg.default", - "underlinenav.counterText": "fg.default", - "underlinenav.counterBg": "neutral.muted", - "selectMenu.borderSecondary": "border.muted", - "selectMenu.shadow": "shadow.large", - "selectMenu.backdropBg": "primer.canvas.backdrop", - "sidenav.borderActive": "primer.border.active", - "menu.headingText": "fg.default", - "menu.borderActive": "primer.border.active", - "project.cardBg": "canvas.overlay", - "prState.draft.text": "fg.onEmphasis", - "prState.draft.bg": "neutral.emphasis", - "prState.draft.border": null, - "prState.open.text": "fg.onEmphasis", - "prState.open.bg": "success.emphasis", - "prState.open.border": null, - "prState.merged.text": "fg.onEmphasis", - "prState.merged.bg": "done.emphasis", - "prState.merged.border": null, - "prState.closed.text": "fg.onEmphasis", - "prState.closed.bg": "danger.emphasis", - "prState.closed.border": null, - "diffBlob.numText": "fg.subtle", - "diffBlob.numHoverText": "fg.default", - "diffBlob.addition.numHoverText": "fg.default", - "diffBlob.deletion.numHoverText": "fg.default", - "diffBlob.hunk.text": "fg.muted", - "diffBlob.hunk.lineBg": "accent.subtle", - "diffBlob.emptyBlockBg": "neutral.subtle", - "diffBlob.selectedLineHighlightBg": "attention.subtle", - "diffBlob.selectedLineHighlightBorder": "attention.muted", - "diffBlob.expander.hoverIcon": "fg.onEmphasis", - "diffBlob.expander.hoverBg": "accent.emphasis", - "diffBlob.commentButton.icon": "fg.onEmphasis", - "diffBlob.commentButton.bg": "accent.emphasis", - "diffBlob.commentButton.gradientBg": null, - "globalNav.logo": null, - "globalNav.bg": null, - "globalNav.text": null, - "globalNav.icon": null, - "globalNav.inputBg": null, - "globalNav.inputBorder": null, - "globalNav.inputIcon": null, - "globalNav.inputPlaceholder": null, - "introShelf.gradientLeft": "accent.subtle", - "introShelf.gradientRight": "success.subtle", - "introShelf.gradientIn": "canvas.default", - "introShelf.gradientOut": null, - "mktg.success": null, - "mktg.info": null, - "mktg.bgShadeGradient.top": null, - "mktg.bgShadeGradient.bottom": null, - "mktg.btn.bg.top": null, - "mktg.btn.bg.bottom": null, - "mktg.btn.bgOverlay.top": null, - "mktg.btn.bgOverlay.bottom": null, - "mktg.btn.text": null, - "mktg.btn.primary.bg.top": null, - "mktg.btn.primary.bg.bottom": null, - "mktg.btn.primary.bgOverlay.top": null, - "mktg.btn.primary.bgOverlay.bottom": null, - "mktg.btn.primary.text": null, - "mktg.btn.enterprise.bg.top": null, - "mktg.btn.enterprise.bg.bottom": null, - "mktg.btn.enterprise.bgOverlay.top": null, - "mktg.btn.enterprise.bgOverlay.bottom": null, - "mktg.btn.enterprise.text": null, - "mktg.btn.outline.text": null, - "mktg.btn.outline.border": null, - "mktg.btn.outline.hover.text": null, - "mktg.btn.outline.hover.border": null, - "mktg.btn.outline.focus.border": null, - "mktg.btn.outline.focus.borderInset": null, - "mktg.btn.dark.text": null, - "mktg.btn.dark.border": null, - "mktg.btn.dark.hover.text": null, - "mktg.btn.dark.hover.border": null, - "mktg.btn.dark.focus.border": null, - "mktg.btn.dark.focus.borderInset": null -}