From 8402bc2c009c0ccaf1e628552944adf1eb83432d Mon Sep 17 00:00:00 2001 From: George Waters Date: Fri, 22 Mar 2024 23:00:05 -0400 Subject: [PATCH] Add primer css primitives into the theme's css --- .../primitives/dist/css/base/size/size.scss | 19 + .../dist/css/base/typography/typography.scss | 6 + .../dist/css/functional/motion/motion.scss | 5 + .../dist/css/functional/size/border.scss | 14 + .../dist/css/functional/size/breakpoints.scss | 8 + .../dist/css/functional/size/size-coarse.scss | 7 + .../dist/css/functional/size/size-fine.scss | 7 + .../dist/css/functional/size/size.scss | 74 ++ .../dist/css/functional/size/viewport.scss | 6 + .../functional/themes/dark-colorblind.scss | 1016 +++++++++++++++++ .../css/functional/themes/dark-dimmed.scss | 1016 +++++++++++++++++ .../functional/themes/dark-high-contrast.scss | 1016 +++++++++++++++++ .../functional/themes/dark-tritanopia.scss | 1016 +++++++++++++++++ .../dist/css/functional/themes/dark.scss | 1016 +++++++++++++++++ .../functional/themes/light-colorblind.scss | 1016 +++++++++++++++++ .../themes/light-high-contrast.scss | 1016 +++++++++++++++++ .../functional/themes/light-tritanopia.scss | 1016 +++++++++++++++++ .../dist/css/functional/themes/light.scss | 1016 +++++++++++++++++ .../css/functional/typography/typography.scss | 47 + _sass/jekyll-v4-theme-primer.scss | 10 + script/install | 15 + script/update | 1 + 22 files changed, 9363 insertions(+) create mode 100644 _sass/@primer/primitives/dist/css/base/size/size.scss create mode 100644 _sass/@primer/primitives/dist/css/base/typography/typography.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/motion/motion.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/border.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/breakpoints.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/size-coarse.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/size-fine.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/size.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/size/viewport.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/dark-colorblind.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/dark-dimmed.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/dark-high-contrast.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/dark-tritanopia.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/dark.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/light-colorblind.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/light-high-contrast.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/light-tritanopia.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/themes/light.scss create mode 100644 _sass/@primer/primitives/dist/css/functional/typography/typography.scss diff --git a/_sass/@primer/primitives/dist/css/base/size/size.scss b/_sass/@primer/primitives/dist/css/base/size/size.scss new file mode 100644 index 00000000..b0746288 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/base/size/size.scss @@ -0,0 +1,19 @@ +:root { + --base-size-4: 0.25rem; + --base-size-8: 0.5rem; + --base-size-12: 0.75rem; + --base-size-16: 1rem; + --base-size-20: 1.25rem; + --base-size-24: 1.5rem; + --base-size-28: 1.75rem; + --base-size-32: 2rem; + --base-size-36: 2.25rem; + --base-size-40: 2.5rem; + --base-size-44: 2.75rem; + --base-size-48: 3rem; + --base-size-64: 4rem; + --base-size-80: 5rem; + --base-size-96: 6rem; + --base-size-112: 7rem; + --base-size-128: 8rem; +} diff --git a/_sass/@primer/primitives/dist/css/base/typography/typography.scss b/_sass/@primer/primitives/dist/css/base/typography/typography.scss new file mode 100644 index 00000000..7b0b9e38 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/base/typography/typography.scss @@ -0,0 +1,6 @@ +:root { + --base-text-weight-light: 300; + --base-text-weight-normal: 400; + --base-text-weight-medium: 500; + --base-text-weight-semibold: 600; +} diff --git a/_sass/@primer/primitives/dist/css/functional/motion/motion.scss b/_sass/@primer/primitives/dist/css/functional/motion/motion.scss new file mode 100644 index 00000000..3ee01bfe --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/motion/motion.scss @@ -0,0 +1,5 @@ +:root { + --motion-skeletonLoader-shimmer-duration-scale: 1s; + --motion-spinner-duration-rotation: 1s; + --motion-loading-delay-default: 1s; +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/border.scss b/_sass/@primer/primitives/dist/css/functional/size/border.scss new file mode 100644 index 00000000..2d29b38f --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/border.scss @@ -0,0 +1,14 @@ +:root { + --boxShadow-thin: inset 0 0 0 max(1px, 0.0625rem); + --boxShadow-thick: inset 0 0 0 max(2px, 0.125rem); + --boxShadow-thicker: inset 0 0 0 max(4px, 0.25rem); + --borderWidth-thin: max(1px, 0.0625rem); + --borderWidth-thick: max(2px, 0.125rem); + --borderWidth-thicker: max(4px, 0.25rem); + --borderRadius-small: 0.1875rem; + --borderRadius-medium: 0.375rem; + --borderRadius-large: 0.75rem; + --borderRadius-full: 624.9375rem; + --outline-focus-offset: -0.125rem; + --outline-focus-width: 0.125rem; +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/breakpoints.scss b/_sass/@primer/primitives/dist/css/functional/size/breakpoints.scss new file mode 100644 index 00000000..353b2440 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/breakpoints.scss @@ -0,0 +1,8 @@ +:root { + --breakpoint-xsmall: 20rem; + --breakpoint-small: 34rem; + --breakpoint-medium: 48rem; + --breakpoint-large: 63.25rem; + --breakpoint-xlarge: 80rem; + --breakpoint-xxlarge: 87.5rem; +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/size-coarse.scss b/_sass/@primer/primitives/dist/css/functional/size/size-coarse.scss new file mode 100644 index 00000000..fb10805c --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/size-coarse.scss @@ -0,0 +1,7 @@ +@media (pointer: coarse) { + :root { + --control-minTarget-auto: 2.75rem; + --controlStack-small-gap-auto: 1rem; + --controlStack-medium-gap-auto: 0.75rem; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/size-fine.scss b/_sass/@primer/primitives/dist/css/functional/size/size-fine.scss new file mode 100644 index 00000000..cdcf875b --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/size-fine.scss @@ -0,0 +1,7 @@ +@media (pointer: fine) { + :root { + --control-minTarget-auto: 1rem; + --controlStack-small-gap-auto: 0.5rem; + --controlStack-medium-gap-auto: 0.5rem; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/size.scss b/_sass/@primer/primitives/dist/css/functional/size/size.scss new file mode 100644 index 00000000..06e55ca6 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/size.scss @@ -0,0 +1,74 @@ +:root { + --control-minTarget-fine: 1rem; + --control-minTarget-coarse: 2.75rem; + --control-xsmall-size: 1.5rem; + --control-xsmall-lineBoxHeight: 1.25rem; + --control-xsmall-paddingBlock: 0.125rem; + --control-xsmall-paddingInline-condensed: 0.25rem; + --control-xsmall-paddingInline-normal: 0.5rem; + --control-xsmall-paddingInline-spacious: 0.75rem; + --control-xsmall-gap: 0.25rem; + --control-small-size: 1.75rem; + --control-small-lineBoxHeight: 1.25rem; + --control-small-paddingBlock: 0.25rem; + --control-small-paddingInline-condensed: 0.5rem; + --control-small-paddingInline-normal: 0.75rem; + --control-small-gap: 0.25rem; + --control-medium-size: 2rem; + --control-medium-lineBoxHeight: 1.25rem; + --control-medium-paddingBlock: 0.375rem; + --control-medium-paddingInline-condensed: 0.5rem; + --control-medium-paddingInline-normal: 0.75rem; + --control-medium-paddingInline-spacious: 1rem; + --control-medium-gap: 0.5rem; + --control-large-size: 2.5rem; + --control-large-lineBoxHeight: 1.25rem; + --control-large-paddingBlock: 0.625rem; + --control-large-paddingInline-normal: 0.75rem; + --control-large-paddingInline-spacious: 1rem; + --control-large-gap: 0.5rem; + --control-xlarge-size: 3rem; + --control-xlarge-lineBoxHeight: 1.25rem; + --control-xlarge-paddingBlock: 0.875rem; + --control-xlarge-paddingInline-normal: 0.75rem; + --control-xlarge-paddingInline-spacious: 1rem; + --control-xlarge-gap: 0.5rem; + --controlStack-small-gap-condensed: 0.5rem; + --controlStack-small-gap-spacious: 1rem; + --controlStack-medium-gap-condensed: 0.5rem; + --controlStack-medium-gap-spacious: 0.75rem; + --controlStack-large-gap-auto: 0.5rem; + --controlStack-large-gap-condensed: 0.5rem; + --controlStack-large-gap-spacious: 0.75rem; + --space-xxsmall: 0.125rem; + --space-xsmall: 0.25rem; + --space-small: 0.375rem; + --space-medium: 0.5rem; + --space-large: 0.75rem; + --space-xlarge: 1rem; + --spinner-strokeWidth-default: 0.125rem; + --spinner-size-small: 1rem; + --spinner-size-medium: 2rem; + --spinner-size-large: 4rem; + --stack-padding-condensed: 0.5rem; + --stack-padding-normal: 1rem; + --stack-padding-spacious: 1.5rem; + --stack-gap-condensed: 0.5rem; + --stack-gap-normal: 1rem; + --stack-gap-spacious: 1.5rem; + --overlay-width-xsmall: 12rem; + --overlay-width-small: 20rem; + --overlay-width-medium: 30rem; + --overlay-width-large: 40rem; + --overlay-width-xlarge: 60rem; + --overlay-height-small: 16rem; + --overlay-height-medium: 20rem; + --overlay-height-large: 27rem; + --overlay-height-xlarge: 37.5rem; + --overlay-padding-normal: 1rem; + --overlay-padding-condensed: 0.5rem; + --overlay-paddingBlock-condensed: 0.25rem; + --overlay-paddingBlock-normal: 0.75rem; + --overlay-borderRadius: 0.375rem; + --overlay-offset: 0.25rem; +} diff --git a/_sass/@primer/primitives/dist/css/functional/size/viewport.scss b/_sass/@primer/primitives/dist/css/functional/size/viewport.scss new file mode 100644 index 00000000..9cd2f29a --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/size/viewport.scss @@ -0,0 +1,6 @@ +@custom-media --viewportRange-narrow (max-width: calc(48rem - 0.02px)); +@custom-media --viewportRange-narrowLandscape (max-width: calc(63.25rem - 0.02px) and (max-height: calc(34rem - 0.02px)) and (orientation: landscape)); +@custom-media --viewportRange-regular (min-width: 48rem); +@custom-media --viewportRange-wide (min-width: 87.5rem); +@custom-media --viewportRange-portrait (orientation: portrait); +@custom-media --viewportRange-landscape (orientation: landscape); diff --git a/_sass/@primer/primitives/dist/css/functional/themes/dark-colorblind.scss b/_sass/@primer/primitives/dist/css/functional/themes/dark-colorblind.scss new file mode 100644 index 00000000..0e6abf89 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/dark-colorblind.scss @@ -0,0 +1,1016 @@ +[data-color-mode="dark"][data-dark-theme="dark_colorblind"], +[data-color-mode="dark"][data-dark-theme="dark_colorblind"] ::backdrop, +[data-color-mode="auto"][data-light-theme="dark_colorblind"], +[data-color-mode="auto"][data-light-theme="dark_colorblind"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #58a6ff4d; + --diffBlob-addition-bgColor-line: #388bfd26; + --diffBlob-addition-bgColor-word: #388bfd66; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #db6d284d; + --diffBlob-deletion-bgColor-line: #db6d2826; + --diffBlob-deletion-bgColor-word: #db6d2866; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #f0883e; + --codeMirror-syntax-fgColor-storage: #f0883e; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa657; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #1f6feb; + --control-borderColor-danger: #bd561d; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #db6d28; + --control-danger-fgColor-hover: #f0883e; + --control-danger-bgColor-hover: #db6d281a; + --control-danger-bgColor-active: #db6d2866; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #1f6feb; + --button-primary-bgColor-hover: #2a7aef; + --button-primary-bgColor-active: #3685f3; + --button-primary-bgColor-disabled: #1158c7; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #1158c7; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #db6d28; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #db6d2880; + --button-danger-iconColor-rest: #db6d28; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #9b4215; + --button-danger-bgColor-active: #b5531d; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #bd561d0d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #db6d28; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #db6d2880; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #58a6ff; + --fgColor-attention: #d29922; + --fgColor-severe: #db6d28; + --fgColor-danger: #db6d28; + --fgColor-open: #f0883e; + --fgColor-closed: #8b949e; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #388bfd26; + --bgColor-success-emphasis: #1f6feb; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #db6d281a; + --bgColor-severe-emphasis: #bd561d; + --bgColor-danger-muted: #db6d281a; + --bgColor-danger-emphasis: #bd561d; + --bgColor-open-muted: #db6d2866; + --bgColor-open-emphasis: #bd561d; + --bgColor-closed-muted: #6e768166; + --bgColor-closed-emphasis: #6e7681; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #388bfd66; + --borderColor-success-emphasis: #1f6feb; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #db6d2866; + --borderColor-severe-emphasis: #bd561d; + --borderColor-danger-muted: #db6d2866; + --borderColor-danger-emphasis: #bd561d; + --borderColor-open-muted: #db6d2866; + --borderColor-open-emphasis: #db6d28; + --borderColor-closed-muted: #6e768166; + --borderColor-closed-emphasis: #6e7681; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #f0883e; + --color-ansi-red-bright: #ffa657; + --color-ansi-green: #58a6ff; + --color-ansi-green-bright: #79c0ff; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #a5d6ff; + --color-prettylights-syntax-keyword: #f0883e; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa657; + --color-prettylights-syntax-brackethighlighter-unmatched: #db6d28; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #762d0a; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #9b4215; + --color-prettylights-syntax-string-regexp: #a5d6ff; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdfb6; + --color-prettylights-syntax-markup-deleted-bg: #5a1e02; + --color-prettylights-syntax-markup-inserted-text: #cae8ff; + --color-prettylights-syntax-markup-inserted-bg: #0c2d6b; + --color-prettylights-syntax-markup-changed-text: #ffdfb6; + --color-prettylights-syntax-markup-changed-bg: #5a1e02; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #cae8ff; + --color-scale-green-1: #a5d6ff; + --color-scale-green-2: #79c0ff; + --color-scale-green-3: #58a6ff; + --color-scale-green-4: #388bfd; + --color-scale-green-5: #1f6feb; + --color-scale-green-6: #1158c7; + --color-scale-green-7: #0d419d; + --color-scale-green-8: #0c2d6b; + --color-scale-green-9: #051d4d; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdfb6; + --color-scale-orange-1: #ffc680; + --color-scale-orange-2: #ffa657; + --color-scale-orange-3: #f0883e; + --color-scale-orange-4: #db6d28; + --color-scale-orange-5: #bd561d; + --color-scale-orange-6: #9b4215; + --color-scale-orange-7: #762d0a; + --color-scale-orange-8: #5a1e02; + --color-scale-orange-9: #3d1300; + --color-scale-red-0: #ffdfb6; + --color-scale-red-1: #ffc680; + --color-scale-red-2: #ffa657; + --color-scale-red-3: #f0883e; + --color-scale-red-4: #db6d28; + --color-scale-red-5: #bd561d; + --color-scale-red-6: #9b4215; + --color-scale-red-7: #762d0a; + --color-scale-red-8: #5a1e02; + --color-scale-red-9: #3d1300; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="dark_colorblind"], + [data-color-mode="auto"][data-dark-theme="dark_colorblind"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #58a6ff4d; + --diffBlob-addition-bgColor-line: #388bfd26; + --diffBlob-addition-bgColor-word: #388bfd66; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #db6d284d; + --diffBlob-deletion-bgColor-line: #db6d2826; + --diffBlob-deletion-bgColor-word: #db6d2866; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #f0883e; + --codeMirror-syntax-fgColor-storage: #f0883e; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa657; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #1f6feb; + --control-borderColor-danger: #bd561d; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #db6d28; + --control-danger-fgColor-hover: #f0883e; + --control-danger-bgColor-hover: #db6d281a; + --control-danger-bgColor-active: #db6d2866; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #1f6feb; + --button-primary-bgColor-hover: #2a7aef; + --button-primary-bgColor-active: #3685f3; + --button-primary-bgColor-disabled: #1158c7; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #1158c7; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #db6d28; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #db6d2880; + --button-danger-iconColor-rest: #db6d28; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #9b4215; + --button-danger-bgColor-active: #b5531d; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #bd561d0d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #db6d28; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #db6d2880; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #58a6ff; + --fgColor-attention: #d29922; + --fgColor-severe: #db6d28; + --fgColor-danger: #db6d28; + --fgColor-open: #f0883e; + --fgColor-closed: #8b949e; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #388bfd26; + --bgColor-success-emphasis: #1f6feb; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #db6d281a; + --bgColor-severe-emphasis: #bd561d; + --bgColor-danger-muted: #db6d281a; + --bgColor-danger-emphasis: #bd561d; + --bgColor-open-muted: #db6d2866; + --bgColor-open-emphasis: #bd561d; + --bgColor-closed-muted: #6e768166; + --bgColor-closed-emphasis: #6e7681; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #388bfd66; + --borderColor-success-emphasis: #1f6feb; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #db6d2866; + --borderColor-severe-emphasis: #bd561d; + --borderColor-danger-muted: #db6d2866; + --borderColor-danger-emphasis: #bd561d; + --borderColor-open-muted: #db6d2866; + --borderColor-open-emphasis: #db6d28; + --borderColor-closed-muted: #6e768166; + --borderColor-closed-emphasis: #6e7681; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #f0883e; + --color-ansi-red-bright: #ffa657; + --color-ansi-green: #58a6ff; + --color-ansi-green-bright: #79c0ff; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #a5d6ff; + --color-prettylights-syntax-keyword: #f0883e; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa657; + --color-prettylights-syntax-brackethighlighter-unmatched: #db6d28; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #762d0a; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #9b4215; + --color-prettylights-syntax-string-regexp: #a5d6ff; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdfb6; + --color-prettylights-syntax-markup-deleted-bg: #5a1e02; + --color-prettylights-syntax-markup-inserted-text: #cae8ff; + --color-prettylights-syntax-markup-inserted-bg: #0c2d6b; + --color-prettylights-syntax-markup-changed-text: #ffdfb6; + --color-prettylights-syntax-markup-changed-bg: #5a1e02; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #cae8ff; + --color-scale-green-1: #a5d6ff; + --color-scale-green-2: #79c0ff; + --color-scale-green-3: #58a6ff; + --color-scale-green-4: #388bfd; + --color-scale-green-5: #1f6feb; + --color-scale-green-6: #1158c7; + --color-scale-green-7: #0d419d; + --color-scale-green-8: #0c2d6b; + --color-scale-green-9: #051d4d; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdfb6; + --color-scale-orange-1: #ffc680; + --color-scale-orange-2: #ffa657; + --color-scale-orange-3: #f0883e; + --color-scale-orange-4: #db6d28; + --color-scale-orange-5: #bd561d; + --color-scale-orange-6: #9b4215; + --color-scale-orange-7: #762d0a; + --color-scale-orange-8: #5a1e02; + --color-scale-orange-9: #3d1300; + --color-scale-red-0: #ffdfb6; + --color-scale-red-1: #ffc680; + --color-scale-red-2: #ffa657; + --color-scale-red-3: #f0883e; + --color-scale-red-4: #db6d28; + --color-scale-red-5: #bd561d; + --color-scale-red-6: #9b4215; + --color-scale-red-7: #762d0a; + --color-scale-red-8: #5a1e02; + --color-scale-red-9: #3d1300; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/dark-dimmed.scss b/_sass/@primer/primitives/dist/css/functional/themes/dark-dimmed.scss new file mode 100644 index 00000000..ee208d8e --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/dark-dimmed.scss @@ -0,0 +1,1016 @@ +[data-color-mode="dark"][data-dark-theme="dark_dimmed"], +[data-color-mode="dark"][data-dark-theme="dark_dimmed"] ::backdrop, +[data-color-mode="auto"][data-light-theme="dark_dimmed"], +[data-color-mode="auto"][data-light-theme="dark_dimmed"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #c6902666; + --page-header-bgColor: #22272e; + --diffBlob-addition-fgColor-text: #c5d1de; + --diffBlob-addition-fgColor-num: #c5d1de; + --diffBlob-addition-bgColor-num: #57ab5a4d; + --diffBlob-addition-bgColor-line: #46954a26; + --diffBlob-addition-bgColor-word: #46954a66; + --diffBlob-deletion-fgColor-text: #c5d1de; + --diffBlob-deletion-fgColor-num: #c5d1de; + --diffBlob-deletion-bgColor-num: #e5534b4d; + --diffBlob-deletion-bgColor-line: #e5534b26; + --diffBlob-deletion-bgColor-word: #e5534b66; + --diffBlob-hunk-bgColor-num: #4184e466; + --diffBlob-expander-iconColor: #c5d1de; + --codeMirror-fgColor: #c5d1de; + --codeMirror-bgColor: #22272e; + --codeMirror-gutters-bgColor: #22272e; + --codeMirror-gutterMarker-fgColor-default: #22272e; + --codeMirror-gutterMarker-fgColor-muted: #717e8b; + --codeMirror-lineNumber-fgColor: #717e8b; + --codeMirror-cursor-fgColor: #c5d1de; + --codeMirror-selection-bgColor: #4184e466; + --codeMirror-activeline-bgColor: #636e7b66; + --codeMirror-matchingBracket-fgColor: #c5d1de; + --codeMirror-lines-bgColor: #22272e; + --codeMirror-syntax-fgColor-comment: #768390; + --codeMirror-syntax-fgColor-constant: #6cb6ff; + --codeMirror-syntax-fgColor-entity: #dcbdfb; + --codeMirror-syntax-fgColor-keyword: #f47067; + --codeMirror-syntax-fgColor-storage: #f47067; + --codeMirror-syntax-fgColor-string: #96d0ff; + --codeMirror-syntax-fgColor-support: #6cb6ff; + --codeMirror-syntax-fgColor-variable: #f69d50; + --header-fgColor-default: #cdd9e5b3; + --header-fgColor-logo: #cdd9e5; + --header-bgColor: #2d333bf2; + --header-borderColor-divider: #768390; + --headerSearch-bgColor: #22272e; + --headerSearch-borderColor: #444c56; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #cdd9e51a; + --avatar-borderColor: #cdd9e526; + --avatar-shadow: 0px 0px 0px 2px #22272e; + --avatarStack-fade-bgColor-default: #444c56; + --avatarStack-fade-bgColor-muted: #373e47; + --control-bgColor-rest: #373e47; + --control-bgColor-hover: #3d444e; + --control-bgColor-active: #434a54; + --control-bgColor-disabled: #373e47b3; + --control-bgColor-selected: #2d333b; + --control-fgColor-rest: #adbac7; + --control-fgColor-placeholder: #545d68; + --control-fgColor-disabled: #636e7b; + --control-borderColor-rest: #444c56; + --control-borderColor-emphasis: #606b77; + --control-borderColor-disabled: #373e47b3; + --control-borderColor-selected: #cdd9e5; + --control-borderColor-success: #347d39; + --control-borderColor-danger: #c93c37; + --control-borderColor-warning: #966600; + --control-iconColor-rest: #717e8b; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #909dab1f; + --control-transparent-bgColor-active: #909dab33; + --control-transparent-bgColor-disabled: #373e47b3; + --control-transparent-bgColor-selected: #909dab14; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #e5534b; + --control-danger-fgColor-hover: #f47067; + --control-danger-bgColor-hover: #e5534b1a; + --control-danger-bgColor-active: #e5534b66; + --control-checked-bgColor-rest: #316dca; + --control-checked-bgColor-hover: #3876d3; + --control-checked-bgColor-active: #3f7fdb; + --control-checked-bgColor-disabled: #636e7b; + --control-checked-fgColor-rest: #cdd9e5; + --control-checked-fgColor-disabled: #1c2128; + --control-checked-borderColor-rest: #316dca; + --control-checked-borderColor-hover: #3876d3; + --control-checked-borderColor-active: #3f7fdb; + --control-checked-borderColor-disabled: #636e7b; + --controlTrack-bgColor-rest: #373e47; + --controlTrack-bgColor-hover: #3d444e; + --controlTrack-bgColor-active: #434a54; + --controlTrack-bgColor-disabled: #636e7b; + --controlTrack-fgColor-rest: #717e8b; + --controlTrack-fgColor-disabled: #cdd9e5; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #636e7b; + --controlKnob-bgColor-rest: #1c2128; + --controlKnob-bgColor-disabled: #373e47b3; + --controlKnob-bgColor-checked: #cdd9e5; + --controlKnob-borderColor-rest: #606b77; + --controlKnob-borderColor-disabled: #373e47b3; + --controlKnob-borderColor-checked: #316dca; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #adbac7; + --button-default-bgColor-rest: #373e47; + --button-default-bgColor-hover: #3d444e; + --button-default-bgColor-active: #434a54; + --button-default-bgColor-selected: #434a54; + --button-default-bgColor-disabled: #373e47b3; + --button-default-borderColor-rest: #444c56; + --button-default-borderColor-hover: #444c56; + --button-default-borderColor-active: #444c56; + --button-default-borderColor-disabled: #373e47b3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #cdd9e566; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #347d39; + --button-primary-bgColor-hover: #3b8640; + --button-primary-bgColor-active: #428f46; + --button-primary-bgColor-disabled: #50a254; + --button-primary-borderColor-rest: #cdd9e51a; + --button-primary-borderColor-hover: #cdd9e51a; + --button-primary-borderColor-active: #cdd9e51a; + --button-primary-borderColor-disabled: #50a254; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #478be6; + --button-invisible-fgColor-hover: #539bf5; + --button-invisible-fgColor-disabled: #636e7b; + --button-invisible-iconColor-rest: #717e8b; + --button-invisible-iconColor-hover: #717e8b; + --button-invisible-iconColor-disabled: #636e7b; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #909dab1f; + --button-invisible-bgColor-active: #909dab33; + --button-invisible-bgColor-disabled: #373e47b3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #373e47b3; + --button-outline-fgColor-rest: #4184e4; + --button-outline-fgColor-hover: #539bf5; + --button-outline-fgColor-active: #cdd9e5; + --button-outline-fgColor-disabled: #478be680; + --button-outline-bgColor-rest: #cdd9e5; + --button-outline-bgColor-hover: #444c56; + --button-outline-bgColor-active: #1b4b91; + --button-outline-bgColor-disabled: #22272e; + --button-outline-borderColor-hover: #cdd9e51a; + --button-outline-borderColor-selected: #cdd9e51a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #e5534b; + --button-danger-fgColor-hover: #cdd9e5; + --button-danger-fgColor-active: #cdd9e5; + --button-danger-fgColor-disabled: #e5534b80; + --button-danger-iconColor-rest: #e5534b; + --button-danger-iconColor-hover: #cdd9e5; + --button-danger-bgColor-rest: #373e47; + --button-danger-bgColor-hover: #ad2e2c; + --button-danger-bgColor-active: #c33d38; + --button-danger-bgColor-disabled: #373e47b3; + --button-danger-borderColor-rest: #444c56; + --button-danger-borderColor-hover: #cdd9e51a; + --button-danger-borderColor-active: #cdd9e51a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #768390; + --button-inactive-bgColor: #373e47; + --button-star-iconColor: #daaa3f; + --buttonCounter-default-bgColor-rest: #444c56; + --buttonCounter-invisible-bgColor-rest: #444c56; + --buttonCounter-primary-bgColor-rest: #11341733; + --buttonCounter-outline-bgColor-rest: #0f2d5c33; + --buttonCounter-outline-bgColor-hover: #0f2d5c33; + --buttonCounter-outline-bgColor-disabled: #316dca0d; + --buttonCounter-outline-fgColor-rest: #4184e4; + --buttonCounter-outline-fgColor-hover: #539bf5; + --buttonCounter-outline-fgColor-disabled: #478be680; + --buttonCounter-danger-bgColor-hover: #cdd9e533; + --buttonCounter-danger-bgColor-disabled: #c93c370d; + --buttonCounter-danger-bgColor-rest: #5d0f1233; + --buttonCounter-danger-fgColor-rest: #e5534b; + --buttonCounter-danger-fgColor-hover: #cdd9e5; + --buttonCounter-danger-fgColor-disabled: #e5534b80; + --focus-outlineColor: #316dca; + --menu-bgColor-active: #2d333b; + --overlay-bgColor: #2d333b; + --overlay-borderColor: #444c56b3; + --overlay-backdrop-bgColor: #2d333b66; + --selectMenu-borderColor: #545d68; + --selectMenu-bgColor-active: #143d79; + --sideNav-bgColor-selected: #373e47; + --skeletonLoader-bgColor: #2d333b; + --timelineBadge-bgColor: #373e47; + --treeViewItem-leadingVisual-iconColor-rest: #717e8b; + --underlineNav-borderColor-active: #ec775c; + --underlineNav-borderColor-hover: #636e7b66; + --underlineNav-iconColor-rest: #717e8b; + --selection-bgColor: #316dcab3; + --fgColor-default: #c5d1de; + --fgColor-muted: #717e8b; + --fgColor-onEmphasis: #cdd9e5; + --fgColor-white: #cdd9e5; + --fgColor-black: #1c2128; + --fgColor-disabled: #636e7b; + --fgColor-link: #478be6; + --fgColor-neutral: #636e7b; + --fgColor-accent: #478be6; + --fgColor-success: #57ab5a; + --fgColor-attention: #c69026; + --fgColor-severe: #cc6b2c; + --fgColor-danger: #e5534b; + --fgColor-open: #57ab5a; + --fgColor-closed: #e5534b; + --fgColor-done: #986ee2; + --fgColor-sponsors: #c96198; + --bgColor-default: #22272e; + --bgColor-muted: #2d333b; + --bgColor-inset: #1c2128; + --bgColor-emphasis: #636e7b; + --bgColor-inverse: #cdd9e5; + --bgColor-white: #cdd9e5; + --bgColor-black: #1c2128; + --bgColor-disabled: #373e47b3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #636e7b66; + --bgColor-neutral-emphasis: #636e7b; + --bgColor-accent-muted: #4184e41a; + --bgColor-accent-emphasis: #316dca; + --bgColor-success-muted: #46954a26; + --bgColor-success-emphasis: #347d39; + --bgColor-attention-muted: #ae7c1426; + --bgColor-attention-emphasis: #966600; + --bgColor-severe-muted: #cc6b2c1a; + --bgColor-severe-emphasis: #ae5622; + --bgColor-danger-muted: #e5534b1a; + --bgColor-danger-emphasis: #c93c37; + --bgColor-open-muted: #46954a1a; + --bgColor-open-emphasis: #347d39; + --bgColor-closed-muted: #e5534b26; + --bgColor-closed-emphasis: #c93c37; + --bgColor-done-muted: #986ee226; + --bgColor-done-emphasis: #8256d0; + --bgColor-sponsors-muted: #c961981a; + --bgColor-sponsors-emphasis: #ae4c82; + --borderColor-default: #444c56; + --borderColor-muted: #444c56b3; + --borderColor-emphasis: #545d68; + --borderColor-disabled: #373e47b3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #636e7b66; + --borderColor-neutral-emphasis: #636e7b; + --borderColor-accent-muted: #4184e466; + --borderColor-accent-emphasis: #316dca; + --borderColor-success-muted: #46954a66; + --borderColor-success-emphasis: #347d39; + --borderColor-attention-muted: #ae7c1466; + --borderColor-attention-emphasis: #966600; + --borderColor-severe-muted: #cc6b2c66; + --borderColor-severe-emphasis: #ae5622; + --borderColor-danger-muted: #e5534b66; + --borderColor-danger-emphasis: #c93c37; + --borderColor-open-muted: #46954a66; + --borderColor-open-emphasis: #347d39; + --borderColor-closed-muted: #e5534b66; + --borderColor-closed-emphasis: #c93c37; + --borderColor-done-muted: #986ee266; + --borderColor-done-emphasis: #8256d0; + --borderColor-sponsors-muted: #c9619866; + --borderColor-sponsors-emphasis: #ae4c82; + --color-ansi-black: #545d68; + --color-ansi-black-bright: #636e7b; + --color-ansi-white: #909dab; + --color-ansi-white-bright: #cdd9e5; + --color-ansi-gray: #636e7b; + --color-ansi-red: #f47067; + --color-ansi-red-bright: #ff938a; + --color-ansi-green: #57ab5a; + --color-ansi-green-bright: #6bc46d; + --color-ansi-yellow: #c69026; + --color-ansi-yellow-bright: #daaa3f; + --color-ansi-blue: #539bf5; + --color-ansi-blue-bright: #6cb6ff; + --color-ansi-magenta: #b083f0; + --color-ansi-magenta-bright: #dcbdfb; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #768390; + --color-prettylights-syntax-constant: #6cb6ff; + --color-prettylights-syntax-constant-other-reference-link: #96d0ff; + --color-prettylights-syntax-entity: #dcbdfb; + --color-prettylights-syntax-storage-modifier-import: #adbac7; + --color-prettylights-syntax-entity-tag: #8ddb8c; + --color-prettylights-syntax-keyword: #f47067; + --color-prettylights-syntax-string: #96d0ff; + --color-prettylights-syntax-variable: #f69d50; + --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b; + --color-prettylights-syntax-brackethighlighter-angle: #768390; + --color-prettylights-syntax-invalid-illegal-text: #cdd9e5; + --color-prettylights-syntax-invalid-illegal-bg: #922323; + --color-prettylights-syntax-carriage-return-text: #cdd9e5; + --color-prettylights-syntax-carriage-return-bg: #ad2e2c; + --color-prettylights-syntax-string-regexp: #8ddb8c; + --color-prettylights-syntax-markup-list: #eac55f; + --color-prettylights-syntax-markup-heading: #316dca; + --color-prettylights-syntax-markup-italic: #adbac7; + --color-prettylights-syntax-markup-bold: #adbac7; + --color-prettylights-syntax-markup-deleted-text: #ffd8d3; + --color-prettylights-syntax-markup-deleted-bg: #78191b; + --color-prettylights-syntax-markup-inserted-text: #b4f1b4; + --color-prettylights-syntax-markup-inserted-bg: #1b4721; + --color-prettylights-syntax-markup-changed-text: #ffddb0; + --color-prettylights-syntax-markup-changed-bg: #682d0f; + --color-prettylights-syntax-markup-ignored-text: #adbac7; + --color-prettylights-syntax-markup-ignored-bg: #255ab2; + --color-prettylights-syntax-meta-diff-range: #dcbdfb; + --color-prettylights-syntax-sublimelinter-gutter-mark: #545d68; + --color-scale-black: #1c2128; + --color-scale-transparent: #00000000; + --color-scale-white: #cdd9e5; + --color-scale-gray-0: #cdd9e5; + --color-scale-gray-1: #adbac7; + --color-scale-gray-2: #909dab; + --color-scale-gray-3: #768390; + --color-scale-gray-4: #636e7b; + --color-scale-gray-5: #545d68; + --color-scale-gray-6: #444c56; + --color-scale-gray-7: #373e47; + --color-scale-gray-8: #2d333b; + --color-scale-gray-9: #22272e; + --color-scale-blue-0: #c6e6ff; + --color-scale-blue-1: #96d0ff; + --color-scale-blue-2: #6cb6ff; + --color-scale-blue-3: #539bf5; + --color-scale-blue-4: #4184e4; + --color-scale-blue-5: #316dca; + --color-scale-blue-6: #255ab2; + --color-scale-blue-7: #1b4b91; + --color-scale-blue-8: #143d79; + --color-scale-blue-9: #0f2d5c; + --color-scale-green-0: #b4f1b4; + --color-scale-green-1: #8ddb8c; + --color-scale-green-2: #6bc46d; + --color-scale-green-3: #57ab5a; + --color-scale-green-4: #46954a; + --color-scale-green-5: #347d39; + --color-scale-green-6: #2b6a30; + --color-scale-green-7: #245829; + --color-scale-green-8: #1b4721; + --color-scale-green-9: #113417; + --color-scale-yellow-0: #fbe090; + --color-scale-yellow-1: #eac55f; + --color-scale-yellow-2: #daaa3f; + --color-scale-yellow-3: #c69026; + --color-scale-yellow-4: #ae7c14; + --color-scale-yellow-5: #966600; + --color-scale-yellow-6: #805400; + --color-scale-yellow-7: #6c4400; + --color-scale-yellow-8: #593600; + --color-scale-yellow-9: #452700; + --color-scale-orange-0: #ffddb0; + --color-scale-orange-1: #ffbc6f; + --color-scale-orange-2: #f69d50; + --color-scale-orange-3: #e0823d; + --color-scale-orange-4: #cc6b2c; + --color-scale-orange-5: #ae5622; + --color-scale-orange-6: #94471b; + --color-scale-orange-7: #7f3913; + --color-scale-orange-8: #682d0f; + --color-scale-orange-9: #4d210c; + --color-scale-red-0: #ffd8d3; + --color-scale-red-1: #ffb8b0; + --color-scale-red-2: #ff938a; + --color-scale-red-3: #f47067; + --color-scale-red-4: #e5534b; + --color-scale-red-5: #c93c37; + --color-scale-red-6: #ad2e2c; + --color-scale-red-7: #922323; + --color-scale-red-8: #78191b; + --color-scale-red-9: #5d0f12; + --color-scale-purple-0: #eedcff; + --color-scale-purple-1: #dcbdfb; + --color-scale-purple-2: #dcbdfb; + --color-scale-purple-3: #b083f0; + --color-scale-purple-4: #986ee2; + --color-scale-purple-5: #8256d0; + --color-scale-purple-6: #6b44bc; + --color-scale-purple-7: #5936a2; + --color-scale-purple-8: #472c82; + --color-scale-purple-9: #352160; + --color-scale-pink-0: #ffd7eb; + --color-scale-pink-1: #ffb3d8; + --color-scale-pink-2: #fc8dc7; + --color-scale-pink-3: #e275ad; + --color-scale-pink-4: #c96198; + --color-scale-pink-5: #ae4c82; + --color-scale-pink-6: #983b6e; + --color-scale-pink-7: #7e325a; + --color-scale-pink-8: #69264a; + --color-scale-pink-9: #551639; + --color-scale-coral-0: #ffdacf; + --color-scale-coral-1: #ffb9a5; + --color-scale-coral-2: #f79981; + --color-scale-coral-3: #ec775c; + --color-scale-coral-4: #de5b41; + --color-scale-coral-5: #c2442d; + --color-scale-coral-6: #a93524; + --color-scale-coral-7: #8d291b; + --color-scale-coral-8: #771d13; + --color-scale-coral-9: #5d1008; + --shadow-inset: inset 0px 1px 0px 0px #1c21283d; + --shadow-resting-xsmall: 0px 1px 0px 0px #1c2128cc; + --shadow-resting-small: 0px 1px 0px 0px #1c212866; + --shadow-resting-medium: 0px 3px 6px 0px #1c2128cc; + --shadow-floating-small: 0px 0px 0px 1px #444c56, 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866; + --shadow-floating-medium: 0px 0px 0px 1px #444c56, 0px 8px 16px -4px #1c212866, 0px 4px 32px -4px #1c212866, 0px 24px 48px -12px #1c212866, 0px 48px 96px -24px #1c212866; + --shadow-floating-large: 0px 0px 0px 1px #444c56, 0px 24px 48px 0px #1c2128; + --shadow-floating-xlarge: 0px 0px 0px 1px #444c56, 0px 32px 64px 0px #1c2128; + --shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866; + --outline-focus: #316dca solid 2px; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="dark_dimmed"], + [data-color-mode="auto"][data-dark-theme="dark_dimmed"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #c6902666; + --page-header-bgColor: #22272e; + --diffBlob-addition-fgColor-text: #c5d1de; + --diffBlob-addition-fgColor-num: #c5d1de; + --diffBlob-addition-bgColor-num: #57ab5a4d; + --diffBlob-addition-bgColor-line: #46954a26; + --diffBlob-addition-bgColor-word: #46954a66; + --diffBlob-deletion-fgColor-text: #c5d1de; + --diffBlob-deletion-fgColor-num: #c5d1de; + --diffBlob-deletion-bgColor-num: #e5534b4d; + --diffBlob-deletion-bgColor-line: #e5534b26; + --diffBlob-deletion-bgColor-word: #e5534b66; + --diffBlob-hunk-bgColor-num: #4184e466; + --diffBlob-expander-iconColor: #c5d1de; + --codeMirror-fgColor: #c5d1de; + --codeMirror-bgColor: #22272e; + --codeMirror-gutters-bgColor: #22272e; + --codeMirror-gutterMarker-fgColor-default: #22272e; + --codeMirror-gutterMarker-fgColor-muted: #717e8b; + --codeMirror-lineNumber-fgColor: #717e8b; + --codeMirror-cursor-fgColor: #c5d1de; + --codeMirror-selection-bgColor: #4184e466; + --codeMirror-activeline-bgColor: #636e7b66; + --codeMirror-matchingBracket-fgColor: #c5d1de; + --codeMirror-lines-bgColor: #22272e; + --codeMirror-syntax-fgColor-comment: #768390; + --codeMirror-syntax-fgColor-constant: #6cb6ff; + --codeMirror-syntax-fgColor-entity: #dcbdfb; + --codeMirror-syntax-fgColor-keyword: #f47067; + --codeMirror-syntax-fgColor-storage: #f47067; + --codeMirror-syntax-fgColor-string: #96d0ff; + --codeMirror-syntax-fgColor-support: #6cb6ff; + --codeMirror-syntax-fgColor-variable: #f69d50; + --header-fgColor-default: #cdd9e5b3; + --header-fgColor-logo: #cdd9e5; + --header-bgColor: #2d333bf2; + --header-borderColor-divider: #768390; + --headerSearch-bgColor: #22272e; + --headerSearch-borderColor: #444c56; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #cdd9e51a; + --avatar-borderColor: #cdd9e526; + --avatar-shadow: 0px 0px 0px 2px #22272e; + --avatarStack-fade-bgColor-default: #444c56; + --avatarStack-fade-bgColor-muted: #373e47; + --control-bgColor-rest: #373e47; + --control-bgColor-hover: #3d444e; + --control-bgColor-active: #434a54; + --control-bgColor-disabled: #373e47b3; + --control-bgColor-selected: #2d333b; + --control-fgColor-rest: #adbac7; + --control-fgColor-placeholder: #545d68; + --control-fgColor-disabled: #636e7b; + --control-borderColor-rest: #444c56; + --control-borderColor-emphasis: #606b77; + --control-borderColor-disabled: #373e47b3; + --control-borderColor-selected: #cdd9e5; + --control-borderColor-success: #347d39; + --control-borderColor-danger: #c93c37; + --control-borderColor-warning: #966600; + --control-iconColor-rest: #717e8b; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #909dab1f; + --control-transparent-bgColor-active: #909dab33; + --control-transparent-bgColor-disabled: #373e47b3; + --control-transparent-bgColor-selected: #909dab14; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #e5534b; + --control-danger-fgColor-hover: #f47067; + --control-danger-bgColor-hover: #e5534b1a; + --control-danger-bgColor-active: #e5534b66; + --control-checked-bgColor-rest: #316dca; + --control-checked-bgColor-hover: #3876d3; + --control-checked-bgColor-active: #3f7fdb; + --control-checked-bgColor-disabled: #636e7b; + --control-checked-fgColor-rest: #cdd9e5; + --control-checked-fgColor-disabled: #1c2128; + --control-checked-borderColor-rest: #316dca; + --control-checked-borderColor-hover: #3876d3; + --control-checked-borderColor-active: #3f7fdb; + --control-checked-borderColor-disabled: #636e7b; + --controlTrack-bgColor-rest: #373e47; + --controlTrack-bgColor-hover: #3d444e; + --controlTrack-bgColor-active: #434a54; + --controlTrack-bgColor-disabled: #636e7b; + --controlTrack-fgColor-rest: #717e8b; + --controlTrack-fgColor-disabled: #cdd9e5; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #636e7b; + --controlKnob-bgColor-rest: #1c2128; + --controlKnob-bgColor-disabled: #373e47b3; + --controlKnob-bgColor-checked: #cdd9e5; + --controlKnob-borderColor-rest: #606b77; + --controlKnob-borderColor-disabled: #373e47b3; + --controlKnob-borderColor-checked: #316dca; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #adbac7; + --button-default-bgColor-rest: #373e47; + --button-default-bgColor-hover: #3d444e; + --button-default-bgColor-active: #434a54; + --button-default-bgColor-selected: #434a54; + --button-default-bgColor-disabled: #373e47b3; + --button-default-borderColor-rest: #444c56; + --button-default-borderColor-hover: #444c56; + --button-default-borderColor-active: #444c56; + --button-default-borderColor-disabled: #373e47b3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #cdd9e566; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #347d39; + --button-primary-bgColor-hover: #3b8640; + --button-primary-bgColor-active: #428f46; + --button-primary-bgColor-disabled: #50a254; + --button-primary-borderColor-rest: #cdd9e51a; + --button-primary-borderColor-hover: #cdd9e51a; + --button-primary-borderColor-active: #cdd9e51a; + --button-primary-borderColor-disabled: #50a254; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #478be6; + --button-invisible-fgColor-hover: #539bf5; + --button-invisible-fgColor-disabled: #636e7b; + --button-invisible-iconColor-rest: #717e8b; + --button-invisible-iconColor-hover: #717e8b; + --button-invisible-iconColor-disabled: #636e7b; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #909dab1f; + --button-invisible-bgColor-active: #909dab33; + --button-invisible-bgColor-disabled: #373e47b3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #373e47b3; + --button-outline-fgColor-rest: #4184e4; + --button-outline-fgColor-hover: #539bf5; + --button-outline-fgColor-active: #cdd9e5; + --button-outline-fgColor-disabled: #478be680; + --button-outline-bgColor-rest: #cdd9e5; + --button-outline-bgColor-hover: #444c56; + --button-outline-bgColor-active: #1b4b91; + --button-outline-bgColor-disabled: #22272e; + --button-outline-borderColor-hover: #cdd9e51a; + --button-outline-borderColor-selected: #cdd9e51a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #e5534b; + --button-danger-fgColor-hover: #cdd9e5; + --button-danger-fgColor-active: #cdd9e5; + --button-danger-fgColor-disabled: #e5534b80; + --button-danger-iconColor-rest: #e5534b; + --button-danger-iconColor-hover: #cdd9e5; + --button-danger-bgColor-rest: #373e47; + --button-danger-bgColor-hover: #ad2e2c; + --button-danger-bgColor-active: #c33d38; + --button-danger-bgColor-disabled: #373e47b3; + --button-danger-borderColor-rest: #444c56; + --button-danger-borderColor-hover: #cdd9e51a; + --button-danger-borderColor-active: #cdd9e51a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #768390; + --button-inactive-bgColor: #373e47; + --button-star-iconColor: #daaa3f; + --buttonCounter-default-bgColor-rest: #444c56; + --buttonCounter-invisible-bgColor-rest: #444c56; + --buttonCounter-primary-bgColor-rest: #11341733; + --buttonCounter-outline-bgColor-rest: #0f2d5c33; + --buttonCounter-outline-bgColor-hover: #0f2d5c33; + --buttonCounter-outline-bgColor-disabled: #316dca0d; + --buttonCounter-outline-fgColor-rest: #4184e4; + --buttonCounter-outline-fgColor-hover: #539bf5; + --buttonCounter-outline-fgColor-disabled: #478be680; + --buttonCounter-danger-bgColor-hover: #cdd9e533; + --buttonCounter-danger-bgColor-disabled: #c93c370d; + --buttonCounter-danger-bgColor-rest: #5d0f1233; + --buttonCounter-danger-fgColor-rest: #e5534b; + --buttonCounter-danger-fgColor-hover: #cdd9e5; + --buttonCounter-danger-fgColor-disabled: #e5534b80; + --focus-outlineColor: #316dca; + --menu-bgColor-active: #2d333b; + --overlay-bgColor: #2d333b; + --overlay-borderColor: #444c56b3; + --overlay-backdrop-bgColor: #2d333b66; + --selectMenu-borderColor: #545d68; + --selectMenu-bgColor-active: #143d79; + --sideNav-bgColor-selected: #373e47; + --skeletonLoader-bgColor: #2d333b; + --timelineBadge-bgColor: #373e47; + --treeViewItem-leadingVisual-iconColor-rest: #717e8b; + --underlineNav-borderColor-active: #ec775c; + --underlineNav-borderColor-hover: #636e7b66; + --underlineNav-iconColor-rest: #717e8b; + --selection-bgColor: #316dcab3; + --fgColor-default: #c5d1de; + --fgColor-muted: #717e8b; + --fgColor-onEmphasis: #cdd9e5; + --fgColor-white: #cdd9e5; + --fgColor-black: #1c2128; + --fgColor-disabled: #636e7b; + --fgColor-link: #478be6; + --fgColor-neutral: #636e7b; + --fgColor-accent: #478be6; + --fgColor-success: #57ab5a; + --fgColor-attention: #c69026; + --fgColor-severe: #cc6b2c; + --fgColor-danger: #e5534b; + --fgColor-open: #57ab5a; + --fgColor-closed: #e5534b; + --fgColor-done: #986ee2; + --fgColor-sponsors: #c96198; + --bgColor-default: #22272e; + --bgColor-muted: #2d333b; + --bgColor-inset: #1c2128; + --bgColor-emphasis: #636e7b; + --bgColor-inverse: #cdd9e5; + --bgColor-white: #cdd9e5; + --bgColor-black: #1c2128; + --bgColor-disabled: #373e47b3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #636e7b66; + --bgColor-neutral-emphasis: #636e7b; + --bgColor-accent-muted: #4184e41a; + --bgColor-accent-emphasis: #316dca; + --bgColor-success-muted: #46954a26; + --bgColor-success-emphasis: #347d39; + --bgColor-attention-muted: #ae7c1426; + --bgColor-attention-emphasis: #966600; + --bgColor-severe-muted: #cc6b2c1a; + --bgColor-severe-emphasis: #ae5622; + --bgColor-danger-muted: #e5534b1a; + --bgColor-danger-emphasis: #c93c37; + --bgColor-open-muted: #46954a1a; + --bgColor-open-emphasis: #347d39; + --bgColor-closed-muted: #e5534b26; + --bgColor-closed-emphasis: #c93c37; + --bgColor-done-muted: #986ee226; + --bgColor-done-emphasis: #8256d0; + --bgColor-sponsors-muted: #c961981a; + --bgColor-sponsors-emphasis: #ae4c82; + --borderColor-default: #444c56; + --borderColor-muted: #444c56b3; + --borderColor-emphasis: #545d68; + --borderColor-disabled: #373e47b3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #636e7b66; + --borderColor-neutral-emphasis: #636e7b; + --borderColor-accent-muted: #4184e466; + --borderColor-accent-emphasis: #316dca; + --borderColor-success-muted: #46954a66; + --borderColor-success-emphasis: #347d39; + --borderColor-attention-muted: #ae7c1466; + --borderColor-attention-emphasis: #966600; + --borderColor-severe-muted: #cc6b2c66; + --borderColor-severe-emphasis: #ae5622; + --borderColor-danger-muted: #e5534b66; + --borderColor-danger-emphasis: #c93c37; + --borderColor-open-muted: #46954a66; + --borderColor-open-emphasis: #347d39; + --borderColor-closed-muted: #e5534b66; + --borderColor-closed-emphasis: #c93c37; + --borderColor-done-muted: #986ee266; + --borderColor-done-emphasis: #8256d0; + --borderColor-sponsors-muted: #c9619866; + --borderColor-sponsors-emphasis: #ae4c82; + --color-ansi-black: #545d68; + --color-ansi-black-bright: #636e7b; + --color-ansi-white: #909dab; + --color-ansi-white-bright: #cdd9e5; + --color-ansi-gray: #636e7b; + --color-ansi-red: #f47067; + --color-ansi-red-bright: #ff938a; + --color-ansi-green: #57ab5a; + --color-ansi-green-bright: #6bc46d; + --color-ansi-yellow: #c69026; + --color-ansi-yellow-bright: #daaa3f; + --color-ansi-blue: #539bf5; + --color-ansi-blue-bright: #6cb6ff; + --color-ansi-magenta: #b083f0; + --color-ansi-magenta-bright: #dcbdfb; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #768390; + --color-prettylights-syntax-constant: #6cb6ff; + --color-prettylights-syntax-constant-other-reference-link: #96d0ff; + --color-prettylights-syntax-entity: #dcbdfb; + --color-prettylights-syntax-storage-modifier-import: #adbac7; + --color-prettylights-syntax-entity-tag: #8ddb8c; + --color-prettylights-syntax-keyword: #f47067; + --color-prettylights-syntax-string: #96d0ff; + --color-prettylights-syntax-variable: #f69d50; + --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b; + --color-prettylights-syntax-brackethighlighter-angle: #768390; + --color-prettylights-syntax-invalid-illegal-text: #cdd9e5; + --color-prettylights-syntax-invalid-illegal-bg: #922323; + --color-prettylights-syntax-carriage-return-text: #cdd9e5; + --color-prettylights-syntax-carriage-return-bg: #ad2e2c; + --color-prettylights-syntax-string-regexp: #8ddb8c; + --color-prettylights-syntax-markup-list: #eac55f; + --color-prettylights-syntax-markup-heading: #316dca; + --color-prettylights-syntax-markup-italic: #adbac7; + --color-prettylights-syntax-markup-bold: #adbac7; + --color-prettylights-syntax-markup-deleted-text: #ffd8d3; + --color-prettylights-syntax-markup-deleted-bg: #78191b; + --color-prettylights-syntax-markup-inserted-text: #b4f1b4; + --color-prettylights-syntax-markup-inserted-bg: #1b4721; + --color-prettylights-syntax-markup-changed-text: #ffddb0; + --color-prettylights-syntax-markup-changed-bg: #682d0f; + --color-prettylights-syntax-markup-ignored-text: #adbac7; + --color-prettylights-syntax-markup-ignored-bg: #255ab2; + --color-prettylights-syntax-meta-diff-range: #dcbdfb; + --color-prettylights-syntax-sublimelinter-gutter-mark: #545d68; + --color-scale-black: #1c2128; + --color-scale-transparent: #00000000; + --color-scale-white: #cdd9e5; + --color-scale-gray-0: #cdd9e5; + --color-scale-gray-1: #adbac7; + --color-scale-gray-2: #909dab; + --color-scale-gray-3: #768390; + --color-scale-gray-4: #636e7b; + --color-scale-gray-5: #545d68; + --color-scale-gray-6: #444c56; + --color-scale-gray-7: #373e47; + --color-scale-gray-8: #2d333b; + --color-scale-gray-9: #22272e; + --color-scale-blue-0: #c6e6ff; + --color-scale-blue-1: #96d0ff; + --color-scale-blue-2: #6cb6ff; + --color-scale-blue-3: #539bf5; + --color-scale-blue-4: #4184e4; + --color-scale-blue-5: #316dca; + --color-scale-blue-6: #255ab2; + --color-scale-blue-7: #1b4b91; + --color-scale-blue-8: #143d79; + --color-scale-blue-9: #0f2d5c; + --color-scale-green-0: #b4f1b4; + --color-scale-green-1: #8ddb8c; + --color-scale-green-2: #6bc46d; + --color-scale-green-3: #57ab5a; + --color-scale-green-4: #46954a; + --color-scale-green-5: #347d39; + --color-scale-green-6: #2b6a30; + --color-scale-green-7: #245829; + --color-scale-green-8: #1b4721; + --color-scale-green-9: #113417; + --color-scale-yellow-0: #fbe090; + --color-scale-yellow-1: #eac55f; + --color-scale-yellow-2: #daaa3f; + --color-scale-yellow-3: #c69026; + --color-scale-yellow-4: #ae7c14; + --color-scale-yellow-5: #966600; + --color-scale-yellow-6: #805400; + --color-scale-yellow-7: #6c4400; + --color-scale-yellow-8: #593600; + --color-scale-yellow-9: #452700; + --color-scale-orange-0: #ffddb0; + --color-scale-orange-1: #ffbc6f; + --color-scale-orange-2: #f69d50; + --color-scale-orange-3: #e0823d; + --color-scale-orange-4: #cc6b2c; + --color-scale-orange-5: #ae5622; + --color-scale-orange-6: #94471b; + --color-scale-orange-7: #7f3913; + --color-scale-orange-8: #682d0f; + --color-scale-orange-9: #4d210c; + --color-scale-red-0: #ffd8d3; + --color-scale-red-1: #ffb8b0; + --color-scale-red-2: #ff938a; + --color-scale-red-3: #f47067; + --color-scale-red-4: #e5534b; + --color-scale-red-5: #c93c37; + --color-scale-red-6: #ad2e2c; + --color-scale-red-7: #922323; + --color-scale-red-8: #78191b; + --color-scale-red-9: #5d0f12; + --color-scale-purple-0: #eedcff; + --color-scale-purple-1: #dcbdfb; + --color-scale-purple-2: #dcbdfb; + --color-scale-purple-3: #b083f0; + --color-scale-purple-4: #986ee2; + --color-scale-purple-5: #8256d0; + --color-scale-purple-6: #6b44bc; + --color-scale-purple-7: #5936a2; + --color-scale-purple-8: #472c82; + --color-scale-purple-9: #352160; + --color-scale-pink-0: #ffd7eb; + --color-scale-pink-1: #ffb3d8; + --color-scale-pink-2: #fc8dc7; + --color-scale-pink-3: #e275ad; + --color-scale-pink-4: #c96198; + --color-scale-pink-5: #ae4c82; + --color-scale-pink-6: #983b6e; + --color-scale-pink-7: #7e325a; + --color-scale-pink-8: #69264a; + --color-scale-pink-9: #551639; + --color-scale-coral-0: #ffdacf; + --color-scale-coral-1: #ffb9a5; + --color-scale-coral-2: #f79981; + --color-scale-coral-3: #ec775c; + --color-scale-coral-4: #de5b41; + --color-scale-coral-5: #c2442d; + --color-scale-coral-6: #a93524; + --color-scale-coral-7: #8d291b; + --color-scale-coral-8: #771d13; + --color-scale-coral-9: #5d1008; + --shadow-inset: inset 0px 1px 0px 0px #1c21283d; + --shadow-resting-xsmall: 0px 1px 0px 0px #1c2128cc; + --shadow-resting-small: 0px 1px 0px 0px #1c212866; + --shadow-resting-medium: 0px 3px 6px 0px #1c2128cc; + --shadow-floating-small: 0px 0px 0px 1px #444c56, 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866; + --shadow-floating-medium: 0px 0px 0px 1px #444c56, 0px 8px 16px -4px #1c212866, 0px 4px 32px -4px #1c212866, 0px 24px 48px -12px #1c212866, 0px 48px 96px -24px #1c212866; + --shadow-floating-large: 0px 0px 0px 1px #444c56, 0px 24px 48px 0px #1c2128; + --shadow-floating-xlarge: 0px 0px 0px 1px #444c56, 0px 32px 64px 0px #1c2128; + --shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866; + --outline-focus: #316dca solid 2px; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/dark-high-contrast.scss b/_sass/@primer/primitives/dist/css/functional/themes/dark-high-contrast.scss new file mode 100644 index 00000000..fe21ea34 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/dark-high-contrast.scss @@ -0,0 +1,1016 @@ +[data-color-mode="dark"][data-dark-theme="dark_high_contrast"], +[data-color-mode="dark"][data-dark-theme="dark_high_contrast"] ::backdrop, +[data-color-mode="auto"][data-light-theme="dark_high_contrast"], +[data-color-mode="auto"][data-light-theme="dark_high_contrast"] ::backdrop { + --topicTag-borderColor: #409eff; + --highlight-neutral-bgColor: #f0b72f66; + --page-header-bgColor: #0a0c10; + --diffBlob-addition-fgColor-text: #0a0c10; + --diffBlob-addition-fgColor-num: #fbfcfd; + --diffBlob-addition-bgColor-num: #28d7514d; + --diffBlob-addition-bgColor-line: #0ac74026; + --diffBlob-addition-bgColor-word: #0ac740; + --diffBlob-deletion-fgColor-text: #0a0c10; + --diffBlob-deletion-fgColor-num: #fbfcfd; + --diffBlob-deletion-bgColor-num: #ff80804d; + --diffBlob-deletion-bgColor-line: #ff808026; + --diffBlob-deletion-bgColor-word: #ff6a69; + --diffBlob-hunk-bgColor-num: #5cacff66; + --diffBlob-expander-iconColor: #fbfcfd; + --codeMirror-fgColor: #fbfcfd; + --codeMirror-bgColor: #0a0c10; + --codeMirror-gutters-bgColor: #0a0c10; + --codeMirror-gutterMarker-fgColor-default: #0a0c10; + --codeMirror-gutterMarker-fgColor-muted: #f0f3f6; + --codeMirror-lineNumber-fgColor: #f0f3f6; + --codeMirror-cursor-fgColor: #fbfcfd; + --codeMirror-selection-bgColor: #5cacff66; + --codeMirror-activeline-bgColor: #9ea7b366; + --codeMirror-matchingBracket-fgColor: #fbfcfd; + --codeMirror-lines-bgColor: #0a0c10; + --codeMirror-syntax-fgColor-comment: #bdc4cc; + --codeMirror-syntax-fgColor-constant: #91cbff; + --codeMirror-syntax-fgColor-entity: #dbb7ff; + --codeMirror-syntax-fgColor-keyword: #ff9492; + --codeMirror-syntax-fgColor-storage: #ff9492; + --codeMirror-syntax-fgColor-string: #addcff; + --codeMirror-syntax-fgColor-support: #91cbff; + --codeMirror-syntax-fgColor-variable: #ffb757; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #272b33f2; + --header-borderColor-divider: #bdc4cc; + --headerSearch-bgColor: #0a0c10; + --headerSearch-borderColor: #525964; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffffe6; + --avatar-shadow: 0px 0px 0px 2px #0a0c10; + --avatarStack-fade-bgColor-default: #525964; + --avatarStack-fade-bgColor-muted: #3d424d; + --control-bgColor-rest: #3d424d; + --control-bgColor-hover: #494f5a; + --control-bgColor-active: #555c67; + --control-bgColor-disabled: #3d424db3; + --control-bgColor-selected: #525964; + --control-fgColor-rest: #f0f3f6; + --control-fgColor-placeholder: #7a828e; + --control-fgColor-disabled: #9ea7b3; + --control-borderColor-rest: #7a828e; + --control-borderColor-emphasis: #7a828e; + --control-borderColor-disabled: #3d424db3; + --control-borderColor-selected: #ffffff; + --control-borderColor-success: #09b43a; + --control-borderColor-danger: #ff6a69; + --control-borderColor-warning: #e09b13; + --control-iconColor-rest: #f0f3f6; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #272b33; + --control-transparent-bgColor-active: #525964; + --control-transparent-bgColor-disabled: #3d424db3; + --control-transparent-bgColor-selected: #525964; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #7a828e; + --control-transparent-borderColor-active: #9ea7b3; + --control-danger-fgColor-rest: #ff8080; + --control-danger-fgColor-hover: #0a0c10; + --control-danger-bgColor-hover: #ff6a69; + --control-danger-bgColor-active: #f65052; + --control-checked-bgColor-rest: #409eff; + --control-checked-bgColor-hover: #4aa3ff; + --control-checked-bgColor-active: #54a8ff; + --control-checked-bgColor-disabled: #9ea7b3; + --control-checked-fgColor-rest: #0a0c10; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #409eff; + --control-checked-borderColor-hover: #4aa3ff; + --control-checked-borderColor-active: #54a8ff; + --control-checked-borderColor-disabled: #9ea7b3; + --controlTrack-bgColor-rest: #3d424d; + --controlTrack-bgColor-hover: #494f5a; + --controlTrack-bgColor-active: #555c67; + --controlTrack-bgColor-disabled: #9ea7b3; + --controlTrack-fgColor-rest: #fbfcfd; + --controlTrack-fgColor-disabled: #0a0c10; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #9ea7b3; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #3d424db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #7a828e; + --controlKnob-borderColor-disabled: #3d424db3; + --controlKnob-borderColor-checked: #409eff; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #f0f3f6; + --button-default-bgColor-rest: #3d424d; + --button-default-bgColor-hover: #494f5a; + --button-default-bgColor-active: #555c67; + --button-default-bgColor-selected: #555c67; + --button-default-bgColor-disabled: #3d424db3; + --button-default-borderColor-rest: #7a828e; + --button-default-borderColor-hover: #7a828e; + --button-default-borderColor-active: #7a828e; + --button-default-borderColor-disabled: #3d424db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #0a0c10; + --button-primary-fgColor-disabled: #0a0c1080; + --button-primary-iconColor-rest: #0a0c10; + --button-primary-bgColor-rest: #09b43a; + --button-primary-bgColor-hover: #0fbb3f; + --button-primary-bgColor-active: #15c243; + --button-primary-bgColor-disabled: #048f2f; + --button-primary-borderColor-rest: #4ae168; + --button-primary-borderColor-hover: #4ae168; + --button-primary-borderColor-active: #4ae168; + --button-primary-borderColor-disabled: #4ae16866; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #60aeff; + --button-invisible-fgColor-hover: #1e60d5; + --button-invisible-fgColor-disabled: #9ea7b3; + --button-invisible-iconColor-rest: #f0f3f6; + --button-invisible-iconColor-hover: #0a0c10; + --button-invisible-iconColor-disabled: #9ea7b3; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #f0f3f6; + --button-invisible-bgColor-active: #d9dee3; + --button-invisible-bgColor-disabled: #3d424db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #7a828e; + --button-invisible-borderColor-disabled: #3d424db3; + --button-outline-fgColor-rest: #5cacff; + --button-outline-fgColor-hover: #71b7ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #60aeff80; + --button-outline-bgColor-rest: #ffffff; + --button-outline-bgColor-hover: #525964; + --button-outline-bgColor-active: #2672f3; + --button-outline-bgColor-disabled: #0a0c10; + --button-outline-borderColor-hover: #ffffff1a; + --button-outline-borderColor-selected: #ffffff1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #ff9492; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #ff808080; + --button-danger-iconColor-rest: #ff8080; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #3d424d; + --button-danger-bgColor-hover: #ff4445; + --button-danger-bgColor-active: #ff5c5d; + --button-danger-bgColor-disabled: #3d424db3; + --button-danger-borderColor-rest: #7a828e; + --button-danger-borderColor-hover: #ffffff1a; + --button-danger-borderColor-active: #ffffff1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #bdc4cc; + --button-inactive-bgColor: #3d424d; + --button-star-iconColor: #f7c843; + --buttonCounter-default-bgColor-rest: #525964; + --buttonCounter-invisible-bgColor-rest: #525964; + --buttonCounter-primary-bgColor-rest: #01040926; + --buttonCounter-outline-bgColor-rest: #194fb133; + --buttonCounter-outline-bgColor-hover: #194fb133; + --buttonCounter-outline-bgColor-disabled: #409eff0d; + --buttonCounter-outline-fgColor-rest: #5cacff; + --buttonCounter-outline-fgColor-hover: #71b7ff; + --buttonCounter-outline-fgColor-disabled: #60aeff80; + --buttonCounter-danger-bgColor-hover: #01040926; + --buttonCounter-danger-bgColor-disabled: #ff6a690d; + --buttonCounter-danger-bgColor-rest: #01040926; + --buttonCounter-danger-fgColor-rest: #ff8080; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #ff808080; + --focus-outlineColor: #409eff; + --menu-bgColor-active: #272b33; + --overlay-bgColor: #272b33; + --overlay-borderColor: #7a828e; + --overlay-backdrop-bgColor: #272b3366; + --selectMenu-borderColor: #7a828e; + --selectMenu-bgColor-active: #1e60d5; + --sideNav-bgColor-selected: #3d424d; + --skeletonLoader-bgColor: #272b33; + --timelineBadge-bgColor: #3d424d; + --treeViewItem-leadingVisual-iconColor-rest: #f0f3f6; + --underlineNav-borderColor-active: #ff967d; + --underlineNav-borderColor-hover: #bdc4cc; + --underlineNav-iconColor-rest: #f0f3f6; + --selection-bgColor: #409effb3; + --fgColor-default: #fbfcfd; + --fgColor-muted: #f0f3f6; + --fgColor-onEmphasis: #0a0c10; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #9ea7b3; + --fgColor-link: #60aeff; + --fgColor-neutral: #9ea7b3; + --fgColor-accent: #60aeff; + --fgColor-success: #28d751; + --fgColor-attention: #f0b72f; + --fgColor-severe: #f48b25; + --fgColor-danger: #ff8080; + --fgColor-open: #28d751; + --fgColor-closed: #ff8080; + --fgColor-done: #bf8fff; + --fgColor-sponsors: #f87cbd; + --bgColor-default: #0a0c10; + --bgColor-muted: #272b33; + --bgColor-inset: #010409; + --bgColor-emphasis: #ffffff; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #3d424db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #9ea7b366; + --bgColor-neutral-emphasis: #9ea7b3; + --bgColor-accent-muted: #5cacff1a; + --bgColor-accent-emphasis: #409eff; + --bgColor-success-muted: #0ac74026; + --bgColor-success-emphasis: #09b43a; + --bgColor-attention-muted: #edaa2726; + --bgColor-attention-emphasis: #e09b13; + --bgColor-severe-muted: #f48b251a; + --bgColor-severe-emphasis: #e7811d; + --bgColor-danger-muted: #ff80801a; + --bgColor-danger-emphasis: #ff6a69; + --bgColor-open-muted: #0ac7401a; + --bgColor-open-emphasis: #09b43a; + --bgColor-closed-muted: #ff808026; + --bgColor-closed-emphasis: #ff6a69; + --bgColor-done-muted: #bf8fff26; + --bgColor-done-emphasis: #b87fff; + --bgColor-sponsors-muted: #f87cbd1a; + --bgColor-sponsors-emphasis: #ef6eb1; + --borderColor-default: #7a828e; + --borderColor-muted: #7a828e; + --borderColor-emphasis: #7a828e; + --borderColor-disabled: #3d424db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #9ea7b3; + --borderColor-neutral-emphasis: #9ea7b3; + --borderColor-accent-muted: #5cacff; + --borderColor-accent-emphasis: #409eff; + --borderColor-success-muted: #0ac740; + --borderColor-success-emphasis: #09b43a; + --borderColor-attention-muted: #edaa27; + --borderColor-attention-emphasis: #e09b13; + --borderColor-severe-muted: #f48b25; + --borderColor-severe-emphasis: #e7811d; + --borderColor-danger-muted: #ff8080; + --borderColor-danger-emphasis: #ff6a69; + --borderColor-open-muted: #0ac740; + --borderColor-open-emphasis: #09b43a; + --borderColor-closed-muted: #ff808066; + --borderColor-closed-emphasis: #ff6a69; + --borderColor-done-muted: #bf8fff; + --borderColor-done-emphasis: #b87fff; + --borderColor-sponsors-muted: #f87cbd; + --borderColor-sponsors-emphasis: #ef6eb1; + --color-ansi-black: #7a828e; + --color-ansi-black-bright: #9ea7b3; + --color-ansi-white: #d9dee3; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #9ea7b3; + --color-ansi-red: #ff9492; + --color-ansi-red-bright: #ffb1af; + --color-ansi-green: #28d751; + --color-ansi-green-bright: #4ae168; + --color-ansi-yellow: #f0b72f; + --color-ansi-yellow-bright: #f7c843; + --color-ansi-blue: #71b7ff; + --color-ansi-blue-bright: #91cbff; + --color-ansi-magenta: #cb9eff; + --color-ansi-magenta-bright: #dbb7ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #bdc4cc; + --color-prettylights-syntax-constant: #91cbff; + --color-prettylights-syntax-constant-other-reference-link: #addcff; + --color-prettylights-syntax-entity: #dbb7ff; + --color-prettylights-syntax-storage-modifier-import: #f0f3f6; + --color-prettylights-syntax-entity-tag: #72f088; + --color-prettylights-syntax-keyword: #ff9492; + --color-prettylights-syntax-string: #addcff; + --color-prettylights-syntax-variable: #ffb757; + --color-prettylights-syntax-brackethighlighter-unmatched: #ff8080; + --color-prettylights-syntax-brackethighlighter-angle: #bdc4cc; + --color-prettylights-syntax-invalid-illegal-text: #ffffff; + --color-prettylights-syntax-invalid-illegal-bg: #e82a2f; + --color-prettylights-syntax-carriage-return-text: #ffffff; + --color-prettylights-syntax-carriage-return-bg: #ff4445; + --color-prettylights-syntax-string-regexp: #72f088; + --color-prettylights-syntax-markup-list: #fbd669; + --color-prettylights-syntax-markup-heading: #409eff; + --color-prettylights-syntax-markup-italic: #f0f3f6; + --color-prettylights-syntax-markup-bold: #f0f3f6; + --color-prettylights-syntax-markup-deleted-text: #ffdedb; + --color-prettylights-syntax-markup-deleted-bg: #cc1421; + --color-prettylights-syntax-markup-inserted-text: #acf7b6; + --color-prettylights-syntax-markup-inserted-bg: #007728; + --color-prettylights-syntax-markup-changed-text: #ffe1b4; + --color-prettylights-syntax-markup-changed-bg: #a74c00; + --color-prettylights-syntax-markup-ignored-text: #f0f3f6; + --color-prettylights-syntax-markup-ignored-bg: #318bf8; + --color-prettylights-syntax-meta-diff-range: #dbb7ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #7a828e; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #ffffff; + --color-scale-gray-1: #f0f3f6; + --color-scale-gray-2: #d9dee3; + --color-scale-gray-3: #bdc4cc; + --color-scale-gray-4: #9ea7b3; + --color-scale-gray-5: #7a828e; + --color-scale-gray-6: #525964; + --color-scale-gray-7: #3d424d; + --color-scale-gray-8: #272b33; + --color-scale-gray-9: #0a0c10; + --color-scale-blue-0: #caeaff; + --color-scale-blue-1: #addcff; + --color-scale-blue-2: #91cbff; + --color-scale-blue-3: #71b7ff; + --color-scale-blue-4: #5cacff; + --color-scale-blue-5: #409eff; + --color-scale-blue-6: #318bf8; + --color-scale-blue-7: #2672f3; + --color-scale-blue-8: #1e60d5; + --color-scale-blue-9: #194fb1; + --color-scale-green-0: #acf7b6; + --color-scale-green-1: #72f088; + --color-scale-green-2: #4ae168; + --color-scale-green-3: #28d751; + --color-scale-green-4: #0ac740; + --color-scale-green-5: #09b43a; + --color-scale-green-6: #02a232; + --color-scale-green-7: #008c2c; + --color-scale-green-8: #007728; + --color-scale-green-9: #006222; + --color-scale-yellow-0: #fbe59e; + --color-scale-yellow-1: #fbd669; + --color-scale-yellow-2: #f7c843; + --color-scale-yellow-3: #f0b72f; + --color-scale-yellow-4: #edaa27; + --color-scale-yellow-5: #e09b13; + --color-scale-yellow-6: #c88508; + --color-scale-yellow-7: #ae7104; + --color-scale-yellow-8: #945d02; + --color-scale-yellow-9: #7b4900; + --color-scale-orange-0: #ffe1b4; + --color-scale-orange-1: #ffcf86; + --color-scale-orange-2: #ffb757; + --color-scale-orange-3: #fe9a2d; + --color-scale-orange-4: #f48b25; + --color-scale-orange-5: #e7811d; + --color-scale-orange-6: #d57014; + --color-scale-orange-7: #bf5e0a; + --color-scale-orange-8: #a74c00; + --color-scale-orange-9: #8f3c00; + --color-scale-red-0: #ffdedb; + --color-scale-red-1: #ffc9c7; + --color-scale-red-2: #ffb1af; + --color-scale-red-3: #ff9492; + --color-scale-red-4: #ff8080; + --color-scale-red-5: #ff6a69; + --color-scale-red-6: #ff4445; + --color-scale-red-7: #e82a2f; + --color-scale-red-8: #cc1421; + --color-scale-red-9: #ad0116; + --color-scale-purple-0: #f0dfff; + --color-scale-purple-1: #e6ccff; + --color-scale-purple-2: #dbb7ff; + --color-scale-purple-3: #cb9eff; + --color-scale-purple-4: #bf8fff; + --color-scale-purple-5: #b87fff; + --color-scale-purple-6: #a66bff; + --color-scale-purple-7: #954ffd; + --color-scale-purple-8: #8031f7; + --color-scale-purple-9: #6921d7; + --color-scale-pink-0: #ffdceb; + --color-scale-pink-1: #ffc7e1; + --color-scale-pink-2: #ffadd4; + --color-scale-pink-3: #ff8dc7; + --color-scale-pink-4: #f87cbd; + --color-scale-pink-5: #ef6eb1; + --color-scale-pink-6: #e456a3; + --color-scale-pink-7: #d23d91; + --color-scale-pink-8: #b72c7d; + --color-scale-pink-9: #9c1d6a; + --color-scale-coral-0: #ffded4; + --color-scale-coral-1: #ffcbb9; + --color-scale-coral-2: #ffb39b; + --color-scale-coral-3: #ff967d; + --color-scale-coral-4: #fd8468; + --color-scale-coral-5: #fc704f; + --color-scale-coral-6: #f75133; + --color-scale-coral-7: #e03b21; + --color-scale-coral-8: #c62612; + --color-scale-coral-9: #a91500; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #7a828e, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #7a828e, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #7a828e, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #7a828e, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #409eff solid 2px; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="dark_high_contrast"], + [data-color-mode="auto"][data-dark-theme="dark_high_contrast"] ::backdrop { + --topicTag-borderColor: #409eff; + --highlight-neutral-bgColor: #f0b72f66; + --page-header-bgColor: #0a0c10; + --diffBlob-addition-fgColor-text: #0a0c10; + --diffBlob-addition-fgColor-num: #fbfcfd; + --diffBlob-addition-bgColor-num: #28d7514d; + --diffBlob-addition-bgColor-line: #0ac74026; + --diffBlob-addition-bgColor-word: #0ac740; + --diffBlob-deletion-fgColor-text: #0a0c10; + --diffBlob-deletion-fgColor-num: #fbfcfd; + --diffBlob-deletion-bgColor-num: #ff80804d; + --diffBlob-deletion-bgColor-line: #ff808026; + --diffBlob-deletion-bgColor-word: #ff6a69; + --diffBlob-hunk-bgColor-num: #5cacff66; + --diffBlob-expander-iconColor: #fbfcfd; + --codeMirror-fgColor: #fbfcfd; + --codeMirror-bgColor: #0a0c10; + --codeMirror-gutters-bgColor: #0a0c10; + --codeMirror-gutterMarker-fgColor-default: #0a0c10; + --codeMirror-gutterMarker-fgColor-muted: #f0f3f6; + --codeMirror-lineNumber-fgColor: #f0f3f6; + --codeMirror-cursor-fgColor: #fbfcfd; + --codeMirror-selection-bgColor: #5cacff66; + --codeMirror-activeline-bgColor: #9ea7b366; + --codeMirror-matchingBracket-fgColor: #fbfcfd; + --codeMirror-lines-bgColor: #0a0c10; + --codeMirror-syntax-fgColor-comment: #bdc4cc; + --codeMirror-syntax-fgColor-constant: #91cbff; + --codeMirror-syntax-fgColor-entity: #dbb7ff; + --codeMirror-syntax-fgColor-keyword: #ff9492; + --codeMirror-syntax-fgColor-storage: #ff9492; + --codeMirror-syntax-fgColor-string: #addcff; + --codeMirror-syntax-fgColor-support: #91cbff; + --codeMirror-syntax-fgColor-variable: #ffb757; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #272b33f2; + --header-borderColor-divider: #bdc4cc; + --headerSearch-bgColor: #0a0c10; + --headerSearch-borderColor: #525964; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffffe6; + --avatar-shadow: 0px 0px 0px 2px #0a0c10; + --avatarStack-fade-bgColor-default: #525964; + --avatarStack-fade-bgColor-muted: #3d424d; + --control-bgColor-rest: #3d424d; + --control-bgColor-hover: #494f5a; + --control-bgColor-active: #555c67; + --control-bgColor-disabled: #3d424db3; + --control-bgColor-selected: #525964; + --control-fgColor-rest: #f0f3f6; + --control-fgColor-placeholder: #7a828e; + --control-fgColor-disabled: #9ea7b3; + --control-borderColor-rest: #7a828e; + --control-borderColor-emphasis: #7a828e; + --control-borderColor-disabled: #3d424db3; + --control-borderColor-selected: #ffffff; + --control-borderColor-success: #09b43a; + --control-borderColor-danger: #ff6a69; + --control-borderColor-warning: #e09b13; + --control-iconColor-rest: #f0f3f6; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #272b33; + --control-transparent-bgColor-active: #525964; + --control-transparent-bgColor-disabled: #3d424db3; + --control-transparent-bgColor-selected: #525964; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #7a828e; + --control-transparent-borderColor-active: #9ea7b3; + --control-danger-fgColor-rest: #ff8080; + --control-danger-fgColor-hover: #0a0c10; + --control-danger-bgColor-hover: #ff6a69; + --control-danger-bgColor-active: #f65052; + --control-checked-bgColor-rest: #409eff; + --control-checked-bgColor-hover: #4aa3ff; + --control-checked-bgColor-active: #54a8ff; + --control-checked-bgColor-disabled: #9ea7b3; + --control-checked-fgColor-rest: #0a0c10; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #409eff; + --control-checked-borderColor-hover: #4aa3ff; + --control-checked-borderColor-active: #54a8ff; + --control-checked-borderColor-disabled: #9ea7b3; + --controlTrack-bgColor-rest: #3d424d; + --controlTrack-bgColor-hover: #494f5a; + --controlTrack-bgColor-active: #555c67; + --controlTrack-bgColor-disabled: #9ea7b3; + --controlTrack-fgColor-rest: #fbfcfd; + --controlTrack-fgColor-disabled: #0a0c10; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #9ea7b3; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #3d424db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #7a828e; + --controlKnob-borderColor-disabled: #3d424db3; + --controlKnob-borderColor-checked: #409eff; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #f0f3f6; + --button-default-bgColor-rest: #3d424d; + --button-default-bgColor-hover: #494f5a; + --button-default-bgColor-active: #555c67; + --button-default-bgColor-selected: #555c67; + --button-default-bgColor-disabled: #3d424db3; + --button-default-borderColor-rest: #7a828e; + --button-default-borderColor-hover: #7a828e; + --button-default-borderColor-active: #7a828e; + --button-default-borderColor-disabled: #3d424db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #0a0c10; + --button-primary-fgColor-disabled: #0a0c1080; + --button-primary-iconColor-rest: #0a0c10; + --button-primary-bgColor-rest: #09b43a; + --button-primary-bgColor-hover: #0fbb3f; + --button-primary-bgColor-active: #15c243; + --button-primary-bgColor-disabled: #048f2f; + --button-primary-borderColor-rest: #4ae168; + --button-primary-borderColor-hover: #4ae168; + --button-primary-borderColor-active: #4ae168; + --button-primary-borderColor-disabled: #4ae16866; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #60aeff; + --button-invisible-fgColor-hover: #1e60d5; + --button-invisible-fgColor-disabled: #9ea7b3; + --button-invisible-iconColor-rest: #f0f3f6; + --button-invisible-iconColor-hover: #0a0c10; + --button-invisible-iconColor-disabled: #9ea7b3; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #f0f3f6; + --button-invisible-bgColor-active: #d9dee3; + --button-invisible-bgColor-disabled: #3d424db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #7a828e; + --button-invisible-borderColor-disabled: #3d424db3; + --button-outline-fgColor-rest: #5cacff; + --button-outline-fgColor-hover: #71b7ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #60aeff80; + --button-outline-bgColor-rest: #ffffff; + --button-outline-bgColor-hover: #525964; + --button-outline-bgColor-active: #2672f3; + --button-outline-bgColor-disabled: #0a0c10; + --button-outline-borderColor-hover: #ffffff1a; + --button-outline-borderColor-selected: #ffffff1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #ff9492; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #ff808080; + --button-danger-iconColor-rest: #ff8080; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #3d424d; + --button-danger-bgColor-hover: #ff4445; + --button-danger-bgColor-active: #ff5c5d; + --button-danger-bgColor-disabled: #3d424db3; + --button-danger-borderColor-rest: #7a828e; + --button-danger-borderColor-hover: #ffffff1a; + --button-danger-borderColor-active: #ffffff1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #bdc4cc; + --button-inactive-bgColor: #3d424d; + --button-star-iconColor: #f7c843; + --buttonCounter-default-bgColor-rest: #525964; + --buttonCounter-invisible-bgColor-rest: #525964; + --buttonCounter-primary-bgColor-rest: #01040926; + --buttonCounter-outline-bgColor-rest: #194fb133; + --buttonCounter-outline-bgColor-hover: #194fb133; + --buttonCounter-outline-bgColor-disabled: #409eff0d; + --buttonCounter-outline-fgColor-rest: #5cacff; + --buttonCounter-outline-fgColor-hover: #71b7ff; + --buttonCounter-outline-fgColor-disabled: #60aeff80; + --buttonCounter-danger-bgColor-hover: #01040926; + --buttonCounter-danger-bgColor-disabled: #ff6a690d; + --buttonCounter-danger-bgColor-rest: #01040926; + --buttonCounter-danger-fgColor-rest: #ff8080; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #ff808080; + --focus-outlineColor: #409eff; + --menu-bgColor-active: #272b33; + --overlay-bgColor: #272b33; + --overlay-borderColor: #7a828e; + --overlay-backdrop-bgColor: #272b3366; + --selectMenu-borderColor: #7a828e; + --selectMenu-bgColor-active: #1e60d5; + --sideNav-bgColor-selected: #3d424d; + --skeletonLoader-bgColor: #272b33; + --timelineBadge-bgColor: #3d424d; + --treeViewItem-leadingVisual-iconColor-rest: #f0f3f6; + --underlineNav-borderColor-active: #ff967d; + --underlineNav-borderColor-hover: #bdc4cc; + --underlineNav-iconColor-rest: #f0f3f6; + --selection-bgColor: #409effb3; + --fgColor-default: #fbfcfd; + --fgColor-muted: #f0f3f6; + --fgColor-onEmphasis: #0a0c10; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #9ea7b3; + --fgColor-link: #60aeff; + --fgColor-neutral: #9ea7b3; + --fgColor-accent: #60aeff; + --fgColor-success: #28d751; + --fgColor-attention: #f0b72f; + --fgColor-severe: #f48b25; + --fgColor-danger: #ff8080; + --fgColor-open: #28d751; + --fgColor-closed: #ff8080; + --fgColor-done: #bf8fff; + --fgColor-sponsors: #f87cbd; + --bgColor-default: #0a0c10; + --bgColor-muted: #272b33; + --bgColor-inset: #010409; + --bgColor-emphasis: #ffffff; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #3d424db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #9ea7b366; + --bgColor-neutral-emphasis: #9ea7b3; + --bgColor-accent-muted: #5cacff1a; + --bgColor-accent-emphasis: #409eff; + --bgColor-success-muted: #0ac74026; + --bgColor-success-emphasis: #09b43a; + --bgColor-attention-muted: #edaa2726; + --bgColor-attention-emphasis: #e09b13; + --bgColor-severe-muted: #f48b251a; + --bgColor-severe-emphasis: #e7811d; + --bgColor-danger-muted: #ff80801a; + --bgColor-danger-emphasis: #ff6a69; + --bgColor-open-muted: #0ac7401a; + --bgColor-open-emphasis: #09b43a; + --bgColor-closed-muted: #ff808026; + --bgColor-closed-emphasis: #ff6a69; + --bgColor-done-muted: #bf8fff26; + --bgColor-done-emphasis: #b87fff; + --bgColor-sponsors-muted: #f87cbd1a; + --bgColor-sponsors-emphasis: #ef6eb1; + --borderColor-default: #7a828e; + --borderColor-muted: #7a828e; + --borderColor-emphasis: #7a828e; + --borderColor-disabled: #3d424db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #9ea7b3; + --borderColor-neutral-emphasis: #9ea7b3; + --borderColor-accent-muted: #5cacff; + --borderColor-accent-emphasis: #409eff; + --borderColor-success-muted: #0ac740; + --borderColor-success-emphasis: #09b43a; + --borderColor-attention-muted: #edaa27; + --borderColor-attention-emphasis: #e09b13; + --borderColor-severe-muted: #f48b25; + --borderColor-severe-emphasis: #e7811d; + --borderColor-danger-muted: #ff8080; + --borderColor-danger-emphasis: #ff6a69; + --borderColor-open-muted: #0ac740; + --borderColor-open-emphasis: #09b43a; + --borderColor-closed-muted: #ff808066; + --borderColor-closed-emphasis: #ff6a69; + --borderColor-done-muted: #bf8fff; + --borderColor-done-emphasis: #b87fff; + --borderColor-sponsors-muted: #f87cbd; + --borderColor-sponsors-emphasis: #ef6eb1; + --color-ansi-black: #7a828e; + --color-ansi-black-bright: #9ea7b3; + --color-ansi-white: #d9dee3; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #9ea7b3; + --color-ansi-red: #ff9492; + --color-ansi-red-bright: #ffb1af; + --color-ansi-green: #28d751; + --color-ansi-green-bright: #4ae168; + --color-ansi-yellow: #f0b72f; + --color-ansi-yellow-bright: #f7c843; + --color-ansi-blue: #71b7ff; + --color-ansi-blue-bright: #91cbff; + --color-ansi-magenta: #cb9eff; + --color-ansi-magenta-bright: #dbb7ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #bdc4cc; + --color-prettylights-syntax-constant: #91cbff; + --color-prettylights-syntax-constant-other-reference-link: #addcff; + --color-prettylights-syntax-entity: #dbb7ff; + --color-prettylights-syntax-storage-modifier-import: #f0f3f6; + --color-prettylights-syntax-entity-tag: #72f088; + --color-prettylights-syntax-keyword: #ff9492; + --color-prettylights-syntax-string: #addcff; + --color-prettylights-syntax-variable: #ffb757; + --color-prettylights-syntax-brackethighlighter-unmatched: #ff8080; + --color-prettylights-syntax-brackethighlighter-angle: #bdc4cc; + --color-prettylights-syntax-invalid-illegal-text: #ffffff; + --color-prettylights-syntax-invalid-illegal-bg: #e82a2f; + --color-prettylights-syntax-carriage-return-text: #ffffff; + --color-prettylights-syntax-carriage-return-bg: #ff4445; + --color-prettylights-syntax-string-regexp: #72f088; + --color-prettylights-syntax-markup-list: #fbd669; + --color-prettylights-syntax-markup-heading: #409eff; + --color-prettylights-syntax-markup-italic: #f0f3f6; + --color-prettylights-syntax-markup-bold: #f0f3f6; + --color-prettylights-syntax-markup-deleted-text: #ffdedb; + --color-prettylights-syntax-markup-deleted-bg: #cc1421; + --color-prettylights-syntax-markup-inserted-text: #acf7b6; + --color-prettylights-syntax-markup-inserted-bg: #007728; + --color-prettylights-syntax-markup-changed-text: #ffe1b4; + --color-prettylights-syntax-markup-changed-bg: #a74c00; + --color-prettylights-syntax-markup-ignored-text: #f0f3f6; + --color-prettylights-syntax-markup-ignored-bg: #318bf8; + --color-prettylights-syntax-meta-diff-range: #dbb7ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #7a828e; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #ffffff; + --color-scale-gray-1: #f0f3f6; + --color-scale-gray-2: #d9dee3; + --color-scale-gray-3: #bdc4cc; + --color-scale-gray-4: #9ea7b3; + --color-scale-gray-5: #7a828e; + --color-scale-gray-6: #525964; + --color-scale-gray-7: #3d424d; + --color-scale-gray-8: #272b33; + --color-scale-gray-9: #0a0c10; + --color-scale-blue-0: #caeaff; + --color-scale-blue-1: #addcff; + --color-scale-blue-2: #91cbff; + --color-scale-blue-3: #71b7ff; + --color-scale-blue-4: #5cacff; + --color-scale-blue-5: #409eff; + --color-scale-blue-6: #318bf8; + --color-scale-blue-7: #2672f3; + --color-scale-blue-8: #1e60d5; + --color-scale-blue-9: #194fb1; + --color-scale-green-0: #acf7b6; + --color-scale-green-1: #72f088; + --color-scale-green-2: #4ae168; + --color-scale-green-3: #28d751; + --color-scale-green-4: #0ac740; + --color-scale-green-5: #09b43a; + --color-scale-green-6: #02a232; + --color-scale-green-7: #008c2c; + --color-scale-green-8: #007728; + --color-scale-green-9: #006222; + --color-scale-yellow-0: #fbe59e; + --color-scale-yellow-1: #fbd669; + --color-scale-yellow-2: #f7c843; + --color-scale-yellow-3: #f0b72f; + --color-scale-yellow-4: #edaa27; + --color-scale-yellow-5: #e09b13; + --color-scale-yellow-6: #c88508; + --color-scale-yellow-7: #ae7104; + --color-scale-yellow-8: #945d02; + --color-scale-yellow-9: #7b4900; + --color-scale-orange-0: #ffe1b4; + --color-scale-orange-1: #ffcf86; + --color-scale-orange-2: #ffb757; + --color-scale-orange-3: #fe9a2d; + --color-scale-orange-4: #f48b25; + --color-scale-orange-5: #e7811d; + --color-scale-orange-6: #d57014; + --color-scale-orange-7: #bf5e0a; + --color-scale-orange-8: #a74c00; + --color-scale-orange-9: #8f3c00; + --color-scale-red-0: #ffdedb; + --color-scale-red-1: #ffc9c7; + --color-scale-red-2: #ffb1af; + --color-scale-red-3: #ff9492; + --color-scale-red-4: #ff8080; + --color-scale-red-5: #ff6a69; + --color-scale-red-6: #ff4445; + --color-scale-red-7: #e82a2f; + --color-scale-red-8: #cc1421; + --color-scale-red-9: #ad0116; + --color-scale-purple-0: #f0dfff; + --color-scale-purple-1: #e6ccff; + --color-scale-purple-2: #dbb7ff; + --color-scale-purple-3: #cb9eff; + --color-scale-purple-4: #bf8fff; + --color-scale-purple-5: #b87fff; + --color-scale-purple-6: #a66bff; + --color-scale-purple-7: #954ffd; + --color-scale-purple-8: #8031f7; + --color-scale-purple-9: #6921d7; + --color-scale-pink-0: #ffdceb; + --color-scale-pink-1: #ffc7e1; + --color-scale-pink-2: #ffadd4; + --color-scale-pink-3: #ff8dc7; + --color-scale-pink-4: #f87cbd; + --color-scale-pink-5: #ef6eb1; + --color-scale-pink-6: #e456a3; + --color-scale-pink-7: #d23d91; + --color-scale-pink-8: #b72c7d; + --color-scale-pink-9: #9c1d6a; + --color-scale-coral-0: #ffded4; + --color-scale-coral-1: #ffcbb9; + --color-scale-coral-2: #ffb39b; + --color-scale-coral-3: #ff967d; + --color-scale-coral-4: #fd8468; + --color-scale-coral-5: #fc704f; + --color-scale-coral-6: #f75133; + --color-scale-coral-7: #e03b21; + --color-scale-coral-8: #c62612; + --color-scale-coral-9: #a91500; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #7a828e, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #7a828e, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #7a828e, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #7a828e, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #409eff solid 2px; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/dark-tritanopia.scss b/_sass/@primer/primitives/dist/css/functional/themes/dark-tritanopia.scss new file mode 100644 index 00000000..e3c586cf --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/dark-tritanopia.scss @@ -0,0 +1,1016 @@ +[data-color-mode="dark"][data-dark-theme="dark_tritanopia"], +[data-color-mode="dark"][data-dark-theme="dark_tritanopia"] ::backdrop, +[data-color-mode="auto"][data-light-theme="dark_tritanopia"], +[data-color-mode="auto"][data-light-theme="dark_tritanopia"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #58a6ff4d; + --diffBlob-addition-bgColor-line: #388bfd26; + --diffBlob-addition-bgColor-word: #388bfd66; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #f851494d; + --diffBlob-deletion-bgColor-line: #f8514926; + --diffBlob-deletion-bgColor-word: #f8514966; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #ff7b72; + --codeMirror-syntax-fgColor-storage: #ff7b72; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa198; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #1f6feb; + --control-borderColor-danger: #da3633; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #f85149; + --control-danger-fgColor-hover: #ff7b72; + --control-danger-bgColor-hover: #f851491a; + --control-danger-bgColor-active: #f8514966; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #1f6feb; + --button-primary-bgColor-hover: #2a7aef; + --button-primary-bgColor-active: #3685f3; + --button-primary-bgColor-disabled: #5fabfe; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #5fabfe; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #f85149; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #f8514980; + --button-danger-iconColor-rest: #f85149; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #b62324; + --button-danger-bgColor-active: #d03533; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #da36330d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #f85149; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #f8514980; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #58a6ff; + --fgColor-attention: #d29922; + --fgColor-severe: #f85149; + --fgColor-danger: #f85149; + --fgColor-open: #f85149; + --fgColor-closed: #6e7681; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #388bfd26; + --bgColor-success-emphasis: #1f6feb; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #f851491a; + --bgColor-severe-emphasis: #da3633; + --bgColor-danger-muted: #f851491a; + --bgColor-danger-emphasis: #da3633; + --bgColor-open-muted: #f851491a; + --bgColor-open-emphasis: #da3633; + --bgColor-closed-muted: #6e768126; + --bgColor-closed-emphasis: #484f58; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #388bfd66; + --borderColor-success-emphasis: #1f6feb; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #f8514966; + --borderColor-severe-emphasis: #da3633; + --borderColor-danger-muted: #f8514966; + --borderColor-danger-emphasis: #da3633; + --borderColor-open-muted: #f8514966; + --borderColor-open-emphasis: #da3633; + --borderColor-closed-muted: #6e768166; + --borderColor-closed-emphasis: #484f58; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #ff7b72; + --color-ansi-red-bright: #ffa198; + --color-ansi-green: #58a6ff; + --color-ansi-green-bright: #79c0ff; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #a5d6ff; + --color-prettylights-syntax-keyword: #ff7b72; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa198; + --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #8e1519; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #b62324; + --color-prettylights-syntax-string-regexp: #a5d6ff; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdcd7; + --color-prettylights-syntax-markup-deleted-bg: #67060c; + --color-prettylights-syntax-markup-inserted-text: #cae8ff; + --color-prettylights-syntax-markup-inserted-bg: #0c2d6b; + --color-prettylights-syntax-markup-changed-text: #ffdcd7; + --color-prettylights-syntax-markup-changed-bg: #67060c; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #cae8ff; + --color-scale-green-1: #a5d6ff; + --color-scale-green-2: #79c0ff; + --color-scale-green-3: #58a6ff; + --color-scale-green-4: #388bfd; + --color-scale-green-5: #1f6feb; + --color-scale-green-6: #1158c7; + --color-scale-green-7: #0d419d; + --color-scale-green-8: #0c2d6b; + --color-scale-green-9: #051d4d; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdcd7; + --color-scale-orange-1: #ffc1ba; + --color-scale-orange-2: #ffa198; + --color-scale-orange-3: #ff7b72; + --color-scale-orange-4: #f85149; + --color-scale-orange-5: #da3633; + --color-scale-orange-6: #b62324; + --color-scale-orange-7: #8e1519; + --color-scale-orange-8: #67060c; + --color-scale-orange-9: #490202; + --color-scale-red-0: #ffdcd7; + --color-scale-red-1: #ffc1ba; + --color-scale-red-2: #ffa198; + --color-scale-red-3: #ff7b72; + --color-scale-red-4: #f85149; + --color-scale-red-5: #da3633; + --color-scale-red-6: #b62324; + --color-scale-red-7: #8e1519; + --color-scale-red-8: #67060c; + --color-scale-red-9: #490202; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="dark_tritanopia"], + [data-color-mode="auto"][data-dark-theme="dark_tritanopia"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #58a6ff4d; + --diffBlob-addition-bgColor-line: #388bfd26; + --diffBlob-addition-bgColor-word: #388bfd66; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #f851494d; + --diffBlob-deletion-bgColor-line: #f8514926; + --diffBlob-deletion-bgColor-word: #f8514966; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #ff7b72; + --codeMirror-syntax-fgColor-storage: #ff7b72; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa198; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #1f6feb; + --control-borderColor-danger: #da3633; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #f85149; + --control-danger-fgColor-hover: #ff7b72; + --control-danger-bgColor-hover: #f851491a; + --control-danger-bgColor-active: #f8514966; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #1f6feb; + --button-primary-bgColor-hover: #2a7aef; + --button-primary-bgColor-active: #3685f3; + --button-primary-bgColor-disabled: #5fabfe; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #5fabfe; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #f85149; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #f8514980; + --button-danger-iconColor-rest: #f85149; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #b62324; + --button-danger-bgColor-active: #d03533; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #da36330d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #f85149; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #f8514980; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #58a6ff; + --fgColor-attention: #d29922; + --fgColor-severe: #f85149; + --fgColor-danger: #f85149; + --fgColor-open: #f85149; + --fgColor-closed: #6e7681; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #388bfd26; + --bgColor-success-emphasis: #1f6feb; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #f851491a; + --bgColor-severe-emphasis: #da3633; + --bgColor-danger-muted: #f851491a; + --bgColor-danger-emphasis: #da3633; + --bgColor-open-muted: #f851491a; + --bgColor-open-emphasis: #da3633; + --bgColor-closed-muted: #6e768126; + --bgColor-closed-emphasis: #484f58; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #388bfd66; + --borderColor-success-emphasis: #1f6feb; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #f8514966; + --borderColor-severe-emphasis: #da3633; + --borderColor-danger-muted: #f8514966; + --borderColor-danger-emphasis: #da3633; + --borderColor-open-muted: #f8514966; + --borderColor-open-emphasis: #da3633; + --borderColor-closed-muted: #6e768166; + --borderColor-closed-emphasis: #484f58; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #ff7b72; + --color-ansi-red-bright: #ffa198; + --color-ansi-green: #58a6ff; + --color-ansi-green-bright: #79c0ff; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #a5d6ff; + --color-prettylights-syntax-keyword: #ff7b72; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa198; + --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #8e1519; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #b62324; + --color-prettylights-syntax-string-regexp: #a5d6ff; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdcd7; + --color-prettylights-syntax-markup-deleted-bg: #67060c; + --color-prettylights-syntax-markup-inserted-text: #cae8ff; + --color-prettylights-syntax-markup-inserted-bg: #0c2d6b; + --color-prettylights-syntax-markup-changed-text: #ffdcd7; + --color-prettylights-syntax-markup-changed-bg: #67060c; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #cae8ff; + --color-scale-green-1: #a5d6ff; + --color-scale-green-2: #79c0ff; + --color-scale-green-3: #58a6ff; + --color-scale-green-4: #388bfd; + --color-scale-green-5: #1f6feb; + --color-scale-green-6: #1158c7; + --color-scale-green-7: #0d419d; + --color-scale-green-8: #0c2d6b; + --color-scale-green-9: #051d4d; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdcd7; + --color-scale-orange-1: #ffc1ba; + --color-scale-orange-2: #ffa198; + --color-scale-orange-3: #ff7b72; + --color-scale-orange-4: #f85149; + --color-scale-orange-5: #da3633; + --color-scale-orange-6: #b62324; + --color-scale-orange-7: #8e1519; + --color-scale-orange-8: #67060c; + --color-scale-orange-9: #490202; + --color-scale-red-0: #ffdcd7; + --color-scale-red-1: #ffc1ba; + --color-scale-red-2: #ffa198; + --color-scale-red-3: #ff7b72; + --color-scale-red-4: #f85149; + --color-scale-red-5: #da3633; + --color-scale-red-6: #b62324; + --color-scale-red-7: #8e1519; + --color-scale-red-8: #67060c; + --color-scale-red-9: #490202; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/dark.scss b/_sass/@primer/primitives/dist/css/functional/themes/dark.scss new file mode 100644 index 00000000..9b58f013 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/dark.scss @@ -0,0 +1,1016 @@ +[data-color-mode="dark"][data-dark-theme="dark"], +[data-color-mode="dark"][data-dark-theme="dark"] ::backdrop, +[data-color-mode="auto"][data-light-theme="dark"], +[data-color-mode="auto"][data-light-theme="dark"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #3fb9504d; + --diffBlob-addition-bgColor-line: #2ea04326; + --diffBlob-addition-bgColor-word: #2ea04366; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #f851494d; + --diffBlob-deletion-bgColor-line: #f8514926; + --diffBlob-deletion-bgColor-word: #f8514966; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #ff7b72; + --codeMirror-syntax-fgColor-storage: #ff7b72; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa657; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #238636; + --control-borderColor-danger: #da3633; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #f85149; + --control-danger-fgColor-hover: #ff7b72; + --control-danger-bgColor-hover: #f851491a; + --control-danger-bgColor-active: #f8514966; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #238636; + --button-primary-bgColor-hover: #29903b; + --button-primary-bgColor-active: #2e9a40; + --button-primary-bgColor-disabled: #105823; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #105823; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #f85149; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #f8514980; + --button-danger-iconColor-rest: #f85149; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #b62324; + --button-danger-bgColor-active: #d03533; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #da36330d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #f85149; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #f8514980; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #3fb950; + --fgColor-attention: #d29922; + --fgColor-severe: #db6d28; + --fgColor-danger: #f85149; + --fgColor-open: #3fb950; + --fgColor-closed: #f85149; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #2ea04326; + --bgColor-success-emphasis: #238636; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #db6d281a; + --bgColor-severe-emphasis: #bd561d; + --bgColor-danger-muted: #f851491a; + --bgColor-danger-emphasis: #da3633; + --bgColor-open-muted: #2ea0431a; + --bgColor-open-emphasis: #238636; + --bgColor-closed-muted: #f8514926; + --bgColor-closed-emphasis: #da3633; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #2ea04366; + --borderColor-success-emphasis: #238636; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #db6d2866; + --borderColor-severe-emphasis: #bd561d; + --borderColor-danger-muted: #f8514966; + --borderColor-danger-emphasis: #da3633; + --borderColor-open-muted: #2ea04366; + --borderColor-open-emphasis: #238636; + --borderColor-closed-muted: #f8514966; + --borderColor-closed-emphasis: #da3633; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #ff7b72; + --color-ansi-red-bright: #ffa198; + --color-ansi-green: #3fb950; + --color-ansi-green-bright: #56d364; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #7ee787; + --color-prettylights-syntax-keyword: #ff7b72; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa657; + --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #8e1519; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #b62324; + --color-prettylights-syntax-string-regexp: #7ee787; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdcd7; + --color-prettylights-syntax-markup-deleted-bg: #67060c; + --color-prettylights-syntax-markup-inserted-text: #aff5b4; + --color-prettylights-syntax-markup-inserted-bg: #033a16; + --color-prettylights-syntax-markup-changed-text: #ffdfb6; + --color-prettylights-syntax-markup-changed-bg: #5a1e02; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #aff5b4; + --color-scale-green-1: #7ee787; + --color-scale-green-2: #56d364; + --color-scale-green-3: #3fb950; + --color-scale-green-4: #2ea043; + --color-scale-green-5: #238636; + --color-scale-green-6: #196c2e; + --color-scale-green-7: #0f5323; + --color-scale-green-8: #033a16; + --color-scale-green-9: #04260f; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdfb6; + --color-scale-orange-1: #ffc680; + --color-scale-orange-2: #ffa657; + --color-scale-orange-3: #f0883e; + --color-scale-orange-4: #db6d28; + --color-scale-orange-5: #bd561d; + --color-scale-orange-6: #9b4215; + --color-scale-orange-7: #762d0a; + --color-scale-orange-8: #5a1e02; + --color-scale-orange-9: #3d1300; + --color-scale-red-0: #ffdcd7; + --color-scale-red-1: #ffc1ba; + --color-scale-red-2: #ffa198; + --color-scale-red-3: #ff7b72; + --color-scale-red-4: #f85149; + --color-scale-red-5: #da3633; + --color-scale-red-6: #b62324; + --color-scale-red-7: #8e1519; + --color-scale-red-8: #67060c; + --color-scale-red-9: #490202; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="dark"], + [data-color-mode="auto"][data-dark-theme="dark"] ::backdrop { + --topicTag-borderColor: #00000000; + --highlight-neutral-bgColor: #d2992266; + --page-header-bgColor: #0d1117; + --diffBlob-addition-fgColor-text: #e6edf3; + --diffBlob-addition-fgColor-num: #e6edf3; + --diffBlob-addition-bgColor-num: #3fb9504d; + --diffBlob-addition-bgColor-line: #2ea04326; + --diffBlob-addition-bgColor-word: #2ea04366; + --diffBlob-deletion-fgColor-text: #e6edf3; + --diffBlob-deletion-fgColor-num: #e6edf3; + --diffBlob-deletion-bgColor-num: #f851494d; + --diffBlob-deletion-bgColor-line: #f8514926; + --diffBlob-deletion-bgColor-word: #f8514966; + --diffBlob-hunk-bgColor-num: #388bfd66; + --diffBlob-expander-iconColor: #848d97; + --codeMirror-fgColor: #e6edf3; + --codeMirror-bgColor: #0d1117; + --codeMirror-gutters-bgColor: #0d1117; + --codeMirror-gutterMarker-fgColor-default: #0d1117; + --codeMirror-gutterMarker-fgColor-muted: #848d97; + --codeMirror-lineNumber-fgColor: #848d97; + --codeMirror-cursor-fgColor: #e6edf3; + --codeMirror-selection-bgColor: #388bfd66; + --codeMirror-activeline-bgColor: #6e768166; + --codeMirror-matchingBracket-fgColor: #e6edf3; + --codeMirror-lines-bgColor: #0d1117; + --codeMirror-syntax-fgColor-comment: #8b949e; + --codeMirror-syntax-fgColor-constant: #79c0ff; + --codeMirror-syntax-fgColor-entity: #d2a8ff; + --codeMirror-syntax-fgColor-keyword: #ff7b72; + --codeMirror-syntax-fgColor-storage: #ff7b72; + --codeMirror-syntax-fgColor-string: #a5d6ff; + --codeMirror-syntax-fgColor-support: #79c0ff; + --codeMirror-syntax-fgColor-variable: #ffa657; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #f0f6fc; + --header-bgColor: #161b22f2; + --header-borderColor-divider: #8b949e; + --headerSearch-bgColor: #0d1117; + --headerSearch-borderColor: #30363d; + --data-blue-color: #0576ff; + --data-auburn-color: #a86f6b; + --data-orange-color: #984b10; + --data-yellow-color: #895906; + --data-green-color: #2f6f37; + --data-teal-color: #106c70; + --data-purple-color: #975bf1; + --data-pink-color: #d34591; + --data-red-color: #eb3342; + --data-gray-color: #576270; + --display-blue-bgColor-muted: #001a47; + --display-blue-bgColor-emphasis: #0576ff; + --display-blue-fgColor: #4da0ff; + --display-blue-borderColor-muted: #002766; + --display-blue-borderColor-emphasis: #0576ff; + --display-green-bgColor-muted: #122117; + --display-green-bgColor-emphasis: #388f3f; + --display-green-fgColor: #41b445; + --display-green-borderColor-muted: #182f1f; + --display-green-borderColor-emphasis: #388f3f; + --display-orange-bgColor-muted: #311708; + --display-orange-bgColor-emphasis: #c46212; + --display-orange-fgColor: #ed8326; + --display-orange-borderColor-muted: #43200a; + --display-orange-borderColor-emphasis: #c46212; + --display-purple-bgColor-muted: #211047; + --display-purple-bgColor-emphasis: #975bf1; + --display-purple-fgColor: #b687f7; + --display-purple-borderColor-muted: #31146b; + --display-purple-borderColor-emphasis: #975bf1; + --display-red-bgColor-muted: #3c0614; + --display-red-bgColor-emphasis: #eb3342; + --display-red-fgColor: #f27d83; + --display-red-borderColor-muted: #58091a; + --display-red-borderColor-emphasis: #eb3342; + --display-yellow-bgColor-muted: #2e1a00; + --display-yellow-bgColor-emphasis: #aa7109; + --display-yellow-fgColor: #d3910d; + --display-yellow-borderColor-muted: #3d2401; + --display-yellow-borderColor-emphasis: #aa7109; + --display-gray-bgColor-muted: #1c1c1c; + --display-gray-bgColor-emphasis: #6e7f96; + --display-gray-fgColor: #92a1b5; + --display-gray-borderColor-muted: #2a2b2d; + --display-gray-borderColor-emphasis: #6e7f96; + --display-auburn-bgColor-muted: #271817; + --display-auburn-bgColor-emphasis: #a86f6b; + --display-auburn-fgColor: #bf9592; + --display-auburn-borderColor-muted: #3a2422; + --display-auburn-borderColor-emphasis: #a86f6b; + --display-brown-bgColor-muted: #241c14; + --display-brown-bgColor-emphasis: #94774c; + --display-brown-fgColor: #b69a6d; + --display-brown-borderColor-muted: #342a1d; + --display-brown-borderColor-emphasis: #94774c; + --display-lemon-bgColor-muted: #291d00; + --display-lemon-bgColor-emphasis: #977b0c; + --display-lemon-fgColor: #ba9b12; + --display-lemon-borderColor-muted: #372901; + --display-lemon-borderColor-emphasis: #977b0c; + --display-olive-bgColor-muted: #171e0b; + --display-olive-bgColor-emphasis: #7a8321; + --display-olive-fgColor: #a2a626; + --display-olive-borderColor-muted: #252d10; + --display-olive-borderColor-emphasis: #7a8321; + --display-lime-bgColor-muted: #141f0f; + --display-lime-bgColor-emphasis: #5f892f; + --display-lime-fgColor: #7dae37; + --display-lime-borderColor-muted: #1f3116; + --display-lime-borderColor-emphasis: #5f892f; + --display-pine-bgColor-muted: #082119; + --display-pine-bgColor-emphasis: #18915e; + --display-pine-fgColor: #1bb673; + --display-pine-borderColor-muted: #0b3224; + --display-pine-borderColor-emphasis: #18915e; + --display-teal-bgColor-muted: #041f25; + --display-teal-bgColor-emphasis: #158a8a; + --display-teal-fgColor: #1cb0ab; + --display-teal-borderColor-muted: #073036; + --display-teal-borderColor-emphasis: #158a8a; + --display-cyan-bgColor-muted: #001f29; + --display-cyan-bgColor-emphasis: #0587b3; + --display-cyan-fgColor: #07ace4; + --display-cyan-borderColor-muted: #002e3d; + --display-cyan-borderColor-emphasis: #0587b3; + --display-indigo-bgColor-muted: #1b183f; + --display-indigo-bgColor-emphasis: #7070e1; + --display-indigo-fgColor: #9899ec; + --display-indigo-borderColor-muted: #25215f; + --display-indigo-borderColor-emphasis: #7070e1; + --avatar-bgColor: #ffffff1a; + --avatar-borderColor: #ffffff26; + --avatar-shadow: 0px 0px 0px 2px #0d1117; + --avatarStack-fade-bgColor-default: #30363d; + --avatarStack-fade-bgColor-muted: #21262d; + --control-bgColor-rest: #21262d; + --control-bgColor-hover: #292e36; + --control-bgColor-active: #31363e; + --control-bgColor-disabled: #21262db3; + --control-bgColor-selected: #161b22; + --control-fgColor-rest: #c9d1d9; + --control-fgColor-placeholder: #484f58; + --control-fgColor-disabled: #6e7681; + --control-borderColor-rest: #30363d; + --control-borderColor-emphasis: #666e79; + --control-borderColor-disabled: #21262db3; + --control-borderColor-selected: #f0f6fc; + --control-borderColor-success: #238636; + --control-borderColor-danger: #da3633; + --control-borderColor-warning: #9e6a03; + --control-iconColor-rest: #848d97; + --control-transparent-bgColor-rest: #00000000; + --control-transparent-bgColor-hover: #b1bac41f; + --control-transparent-bgColor-active: #b1bac433; + --control-transparent-bgColor-disabled: #21262db3; + --control-transparent-bgColor-selected: #b1bac414; + --control-transparent-borderColor-rest: #00000000; + --control-transparent-borderColor-hover: #00000000; + --control-transparent-borderColor-active: #00000000; + --control-danger-fgColor-rest: #f85149; + --control-danger-fgColor-hover: #ff7b72; + --control-danger-bgColor-hover: #f851491a; + --control-danger-bgColor-active: #f8514966; + --control-checked-bgColor-rest: #1f6feb; + --control-checked-bgColor-hover: #2a7aef; + --control-checked-bgColor-active: #3685f3; + --control-checked-bgColor-disabled: #6e7681; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #010409; + --control-checked-borderColor-rest: #1f6feb; + --control-checked-borderColor-hover: #2a7aef; + --control-checked-borderColor-active: #3685f3; + --control-checked-borderColor-disabled: #6e7681; + --controlTrack-bgColor-rest: #21262d; + --controlTrack-bgColor-hover: #292e36; + --controlTrack-bgColor-active: #31363e; + --controlTrack-bgColor-disabled: #6e7681; + --controlTrack-fgColor-rest: #848d97; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #00000000; + --controlTrack-borderColor-disabled: #6e7681; + --controlKnob-bgColor-rest: #010409; + --controlKnob-bgColor-disabled: #21262db3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #666e79; + --controlKnob-borderColor-disabled: #21262db3; + --controlKnob-borderColor-checked: #1f6feb; + --counter-borderColor: #00000000; + --button-default-fgColor-rest: #c9d1d9; + --button-default-bgColor-rest: #21262d; + --button-default-bgColor-hover: #292e36; + --button-default-bgColor-active: #31363e; + --button-default-bgColor-selected: #31363e; + --button-default-bgColor-disabled: #21262db3; + --button-default-borderColor-rest: #30363d; + --button-default-borderColor-hover: #30363d; + --button-default-borderColor-active: #30363d; + --button-default-borderColor-disabled: #21262db3; + --button-default-shadow-resting: 0px 0px 0px 0px #000000; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffff66; + --button-primary-iconColor-rest: #ffffff; + --button-primary-bgColor-rest: #238636; + --button-primary-bgColor-hover: #29903b; + --button-primary-bgColor-active: #2e9a40; + --button-primary-bgColor-disabled: #105823; + --button-primary-borderColor-rest: #f0f6fc1a; + --button-primary-borderColor-hover: #f0f6fc1a; + --button-primary-borderColor-active: #f0f6fc1a; + --button-primary-borderColor-disabled: #105823; + --button-primary-shadow-selected: 0px 0px 0px 0px #000000; + --button-invisible-fgColor-rest: #4493f8; + --button-invisible-fgColor-hover: #58a6ff; + --button-invisible-fgColor-disabled: #6e7681; + --button-invisible-iconColor-rest: #848d97; + --button-invisible-iconColor-hover: #e6edf3; + --button-invisible-iconColor-disabled: #6e7681; + --button-invisible-bgColor-rest: #00000000; + --button-invisible-bgColor-hover: #b1bac41f; + --button-invisible-bgColor-active: #b1bac433; + --button-invisible-bgColor-disabled: #21262db3; + --button-invisible-borderColor-rest: #00000000; + --button-invisible-borderColor-hover: #00000000; + --button-invisible-borderColor-disabled: #21262db3; + --button-outline-fgColor-rest: #388bfd; + --button-outline-fgColor-hover: #58a6ff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #4493f880; + --button-outline-bgColor-rest: #f0f6fc; + --button-outline-bgColor-hover: #30363d; + --button-outline-bgColor-active: #0d419d; + --button-outline-bgColor-disabled: #0d1117; + --button-outline-borderColor-hover: #f0f6fc1a; + --button-outline-borderColor-selected: #f0f6fc1a; + --button-outline-shadow-selected: 0px 0px 0px 0px #000000; + --button-danger-fgColor-rest: #f85149; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #f8514980; + --button-danger-iconColor-rest: #f85149; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #21262d; + --button-danger-bgColor-hover: #b62324; + --button-danger-bgColor-active: #d03533; + --button-danger-bgColor-disabled: #21262db3; + --button-danger-borderColor-rest: #30363d; + --button-danger-borderColor-hover: #f0f6fc1a; + --button-danger-borderColor-active: #f0f6fc1a; + --button-danger-shadow-selected: 0px 0px 0px 0px #000000; + --button-inactive-fgColor: #8b949e; + --button-inactive-bgColor: #21262d; + --button-star-iconColor: #e3b341; + --buttonCounter-default-bgColor-rest: #30363d; + --buttonCounter-invisible-bgColor-rest: #30363d; + --buttonCounter-primary-bgColor-rest: #04260f33; + --buttonCounter-outline-bgColor-rest: #051d4d33; + --buttonCounter-outline-bgColor-hover: #051d4d33; + --buttonCounter-outline-bgColor-disabled: #1f6feb0d; + --buttonCounter-outline-fgColor-rest: #388bfd; + --buttonCounter-outline-fgColor-hover: #58a6ff; + --buttonCounter-outline-fgColor-disabled: #4493f880; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #da36330d; + --buttonCounter-danger-bgColor-rest: #49020233; + --buttonCounter-danger-fgColor-rest: #f85149; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #f8514980; + --focus-outlineColor: #1f6feb; + --menu-bgColor-active: #161b22; + --overlay-bgColor: #161b22; + --overlay-borderColor: #30363db3; + --overlay-backdrop-bgColor: #161b2266; + --selectMenu-borderColor: #484f58; + --selectMenu-bgColor-active: #0c2d6b; + --sideNav-bgColor-selected: #21262d; + --skeletonLoader-bgColor: #161b22; + --timelineBadge-bgColor: #21262d; + --treeViewItem-leadingVisual-iconColor-rest: #848d97; + --underlineNav-borderColor-active: #f78166; + --underlineNav-borderColor-hover: #6e768166; + --underlineNav-iconColor-rest: #848d97; + --selection-bgColor: #1f6febb3; + --fgColor-default: #e6edf3; + --fgColor-muted: #848d97; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #6e7681; + --fgColor-link: #4493f8; + --fgColor-neutral: #6e7681; + --fgColor-accent: #4493f8; + --fgColor-success: #3fb950; + --fgColor-attention: #d29922; + --fgColor-severe: #db6d28; + --fgColor-danger: #f85149; + --fgColor-open: #3fb950; + --fgColor-closed: #f85149; + --fgColor-done: #a371f7; + --fgColor-sponsors: #db61a2; + --bgColor-default: #0d1117; + --bgColor-muted: #161b22; + --bgColor-inset: #010409; + --bgColor-emphasis: #6e7681; + --bgColor-inverse: #ffffff; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #21262db3; + --bgColor-transparent: #00000000; + --bgColor-neutral-muted: #6e768166; + --bgColor-neutral-emphasis: #6e7681; + --bgColor-accent-muted: #388bfd1a; + --bgColor-accent-emphasis: #1f6feb; + --bgColor-success-muted: #2ea04326; + --bgColor-success-emphasis: #238636; + --bgColor-attention-muted: #bb800926; + --bgColor-attention-emphasis: #9e6a03; + --bgColor-severe-muted: #db6d281a; + --bgColor-severe-emphasis: #bd561d; + --bgColor-danger-muted: #f851491a; + --bgColor-danger-emphasis: #da3633; + --bgColor-open-muted: #2ea0431a; + --bgColor-open-emphasis: #238636; + --bgColor-closed-muted: #f8514926; + --bgColor-closed-emphasis: #da3633; + --bgColor-done-muted: #a371f726; + --bgColor-done-emphasis: #8957e5; + --bgColor-sponsors-muted: #db61a21a; + --bgColor-sponsors-emphasis: #bf4b8a; + --borderColor-default: #30363d; + --borderColor-muted: #30363db3; + --borderColor-emphasis: #484f58; + --borderColor-disabled: #21262db3; + --borderColor-transparent: #00000000; + --borderColor-neutral-muted: #6e768166; + --borderColor-neutral-emphasis: #6e7681; + --borderColor-accent-muted: #388bfd66; + --borderColor-accent-emphasis: #1f6feb; + --borderColor-success-muted: #2ea04366; + --borderColor-success-emphasis: #238636; + --borderColor-attention-muted: #bb800966; + --borderColor-attention-emphasis: #9e6a03; + --borderColor-severe-muted: #db6d2866; + --borderColor-severe-emphasis: #bd561d; + --borderColor-danger-muted: #f8514966; + --borderColor-danger-emphasis: #da3633; + --borderColor-open-muted: #2ea04366; + --borderColor-open-emphasis: #238636; + --borderColor-closed-muted: #f8514966; + --borderColor-closed-emphasis: #da3633; + --borderColor-done-muted: #a371f766; + --borderColor-done-emphasis: #8957e5; + --borderColor-sponsors-muted: #db61a266; + --borderColor-sponsors-emphasis: #bf4b8a; + --color-ansi-black: #484f58; + --color-ansi-black-bright: #6e7681; + --color-ansi-white: #b1bac4; + --color-ansi-white-bright: #ffffff; + --color-ansi-gray: #6e7681; + --color-ansi-red: #ff7b72; + --color-ansi-red-bright: #ffa198; + --color-ansi-green: #3fb950; + --color-ansi-green-bright: #56d364; + --color-ansi-yellow: #d29922; + --color-ansi-yellow-bright: #e3b341; + --color-ansi-blue: #58a6ff; + --color-ansi-blue-bright: #79c0ff; + --color-ansi-magenta: #bc8cff; + --color-ansi-magenta-bright: #d2a8ff; + --color-ansi-cyan: #39c5cf; + --color-ansi-cyan-bright: #56d4dd; + --color-prettylights-syntax-comment: #8b949e; + --color-prettylights-syntax-constant: #79c0ff; + --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; + --color-prettylights-syntax-entity: #d2a8ff; + --color-prettylights-syntax-storage-modifier-import: #c9d1d9; + --color-prettylights-syntax-entity-tag: #7ee787; + --color-prettylights-syntax-keyword: #ff7b72; + --color-prettylights-syntax-string: #a5d6ff; + --color-prettylights-syntax-variable: #ffa657; + --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; + --color-prettylights-syntax-brackethighlighter-angle: #8b949e; + --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; + --color-prettylights-syntax-invalid-illegal-bg: #8e1519; + --color-prettylights-syntax-carriage-return-text: #f0f6fc; + --color-prettylights-syntax-carriage-return-bg: #b62324; + --color-prettylights-syntax-string-regexp: #7ee787; + --color-prettylights-syntax-markup-list: #f2cc60; + --color-prettylights-syntax-markup-heading: #1f6feb; + --color-prettylights-syntax-markup-italic: #c9d1d9; + --color-prettylights-syntax-markup-bold: #c9d1d9; + --color-prettylights-syntax-markup-deleted-text: #ffdcd7; + --color-prettylights-syntax-markup-deleted-bg: #67060c; + --color-prettylights-syntax-markup-inserted-text: #aff5b4; + --color-prettylights-syntax-markup-inserted-bg: #033a16; + --color-prettylights-syntax-markup-changed-text: #ffdfb6; + --color-prettylights-syntax-markup-changed-bg: #5a1e02; + --color-prettylights-syntax-markup-ignored-text: #c9d1d9; + --color-prettylights-syntax-markup-ignored-bg: #1158c7; + --color-prettylights-syntax-meta-diff-range: #d2a8ff; + --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; + --color-scale-black: #010409; + --color-scale-transparent: #00000000; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f0f6fc; + --color-scale-gray-1: #c9d1d9; + --color-scale-gray-2: #b1bac4; + --color-scale-gray-3: #8b949e; + --color-scale-gray-4: #6e7681; + --color-scale-gray-5: #484f58; + --color-scale-gray-6: #30363d; + --color-scale-gray-7: #21262d; + --color-scale-gray-8: #161b22; + --color-scale-gray-9: #0d1117; + --color-scale-blue-0: #cae8ff; + --color-scale-blue-1: #a5d6ff; + --color-scale-blue-2: #79c0ff; + --color-scale-blue-3: #58a6ff; + --color-scale-blue-4: #388bfd; + --color-scale-blue-5: #1f6feb; + --color-scale-blue-6: #1158c7; + --color-scale-blue-7: #0d419d; + --color-scale-blue-8: #0c2d6b; + --color-scale-blue-9: #051d4d; + --color-scale-green-0: #aff5b4; + --color-scale-green-1: #7ee787; + --color-scale-green-2: #56d364; + --color-scale-green-3: #3fb950; + --color-scale-green-4: #2ea043; + --color-scale-green-5: #238636; + --color-scale-green-6: #196c2e; + --color-scale-green-7: #0f5323; + --color-scale-green-8: #033a16; + --color-scale-green-9: #04260f; + --color-scale-yellow-0: #f8e3a1; + --color-scale-yellow-1: #f2cc60; + --color-scale-yellow-2: #e3b341; + --color-scale-yellow-3: #d29922; + --color-scale-yellow-4: #bb8009; + --color-scale-yellow-5: #9e6a03; + --color-scale-yellow-6: #845306; + --color-scale-yellow-7: #693e00; + --color-scale-yellow-8: #4b2900; + --color-scale-yellow-9: #341a00; + --color-scale-orange-0: #ffdfb6; + --color-scale-orange-1: #ffc680; + --color-scale-orange-2: #ffa657; + --color-scale-orange-3: #f0883e; + --color-scale-orange-4: #db6d28; + --color-scale-orange-5: #bd561d; + --color-scale-orange-6: #9b4215; + --color-scale-orange-7: #762d0a; + --color-scale-orange-8: #5a1e02; + --color-scale-orange-9: #3d1300; + --color-scale-red-0: #ffdcd7; + --color-scale-red-1: #ffc1ba; + --color-scale-red-2: #ffa198; + --color-scale-red-3: #ff7b72; + --color-scale-red-4: #f85149; + --color-scale-red-5: #da3633; + --color-scale-red-6: #b62324; + --color-scale-red-7: #8e1519; + --color-scale-red-8: #67060c; + --color-scale-red-9: #490202; + --color-scale-purple-0: #eddeff; + --color-scale-purple-1: #e2c5ff; + --color-scale-purple-2: #d2a8ff; + --color-scale-purple-3: #bc8cff; + --color-scale-purple-4: #a371f7; + --color-scale-purple-5: #8957e5; + --color-scale-purple-6: #6e40c9; + --color-scale-purple-7: #553098; + --color-scale-purple-8: #3c1e70; + --color-scale-purple-9: #271052; + --color-scale-pink-0: #ffdaec; + --color-scale-pink-1: #ffbedd; + --color-scale-pink-2: #ff9bce; + --color-scale-pink-3: #f778ba; + --color-scale-pink-4: #db61a2; + --color-scale-pink-5: #bf4b8a; + --color-scale-pink-6: #9e3670; + --color-scale-pink-7: #7d2457; + --color-scale-pink-8: #5e103e; + --color-scale-pink-9: #42062a; + --color-scale-coral-0: #ffddd2; + --color-scale-coral-1: #ffc2b2; + --color-scale-coral-2: #ffa28b; + --color-scale-coral-3: #f78166; + --color-scale-coral-4: #ea6045; + --color-scale-coral-5: #cf462d; + --color-scale-coral-6: #ac3220; + --color-scale-coral-7: #872012; + --color-scale-coral-8: #640d04; + --color-scale-coral-9: #460701; + --shadow-inset: inset 0px 1px 0px 0px #0104093d; + --shadow-resting-xsmall: 0px 1px 0px 0px #010409cc; + --shadow-resting-small: 0px 1px 0px 0px #01040966; + --shadow-resting-medium: 0px 3px 6px 0px #010409cc; + --shadow-floating-small: 0px 0px 0px 1px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --shadow-floating-medium: 0px 0px 0px 1px #30363d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966; + --shadow-floating-large: 0px 0px 0px 1px #30363d, 0px 24px 48px 0px #010409; + --shadow-floating-xlarge: 0px 0px 0px 1px #30363d, 0px 32px 64px 0px #010409; + --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966; + --outline-focus: #1f6feb solid 2px; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/light-colorblind.scss b/_sass/@primer/primitives/dist/css/functional/themes/light-colorblind.scss new file mode 100644 index 00000000..75bfd925 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/light-colorblind.scss @@ -0,0 +1,1016 @@ +[data-color-mode="light"][data-light-theme="light_colorblind"], +[data-color-mode="light"][data-light-theme="light_colorblind"] ::backdrop, +[data-color-mode="auto"][data-light-theme="light_colorblind"], +[data-color-mode="auto"][data-light-theme="light_colorblind"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #54aeff66; + --diffBlob-addition-bgColor-line: #ddf4ff80; + --diffBlob-addition-bgColor-word: #54aeff66; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #fb8f4466; + --diffBlob-deletion-bgColor-line: #fff1e580; + --diffBlob-deletion-bgColor-word: #ffb77c80; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #bc4c00; + --codeMirror-syntax-fgColor-storage: #bc4c00; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #953800; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #218bff; + --control-borderColor-danger: #bc4c00; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #be4e02; + --control-danger-fgColor-hover: #be4e02; + --control-danger-bgColor-hover: #fff1e5; + --control-danger-bgColor-active: #fff1e566; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #0f72e3; + --button-primary-bgColor-hover: #0d6bd8; + --button-primary-bgColor-active: #0b64ce; + --button-primary-bgColor-disabled: #92caff; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #92caff; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #be4e02; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #be4e0280; + --button-danger-iconColor-rest: #be4e02; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #953800; + --button-danger-bgColor-active: #7e2f00; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #47170033; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #bc4c000d; + --buttonCounter-danger-bgColor-rest: #bc4c001a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #be4e0280; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #0969da; + --fgColor-attention: #9a6700; + --fgColor-severe: #bc4c00; + --fgColor-danger: #be4e02; + --fgColor-open: #bc4c00; + --fgColor-closed: #6e7781; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #ddf4ff; + --bgColor-success-emphasis: #0f72e3; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #fff1e5; + --bgColor-severe-emphasis: #bc4c00; + --bgColor-danger-muted: #fff1e5; + --bgColor-danger-emphasis: #bc4c00; + --bgColor-open-muted: #fb8f4466; + --bgColor-open-emphasis: #e16f24; + --bgColor-closed-muted: #afb8c166; + --bgColor-closed-emphasis: #6e7781; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #54aeff66; + --borderColor-success-emphasis: #218bff; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #fb8f4466; + --borderColor-severe-emphasis: #bc4c00; + --borderColor-danger-muted: #fb8f4466; + --borderColor-danger-emphasis: #bc4c00; + --borderColor-open-muted: #fb8f4466; + --borderColor-open-emphasis: #e16f24; + --borderColor-closed-muted: #afb8c166; + --borderColor-closed-emphasis: #6e7781; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #bc4c00; + --color-ansi-red-bright: #953800; + --color-ansi-green: #0550ae; + --color-ansi-green-bright: #0969da; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #bc4c00; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #953800; + --color-prettylights-syntax-brackethighlighter-unmatched: #762c00; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #762c00; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #bc4c00; + --color-prettylights-syntax-string-regexp: #0550ae; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #762c00; + --color-prettylights-syntax-markup-deleted-bg: #fff1e5; + --color-prettylights-syntax-markup-inserted-text: #0550ae; + --color-prettylights-syntax-markup-inserted-bg: #ddf4ff; + --color-prettylights-syntax-markup-changed-text: #953800; + --color-prettylights-syntax-markup-changed-bg: #ffd8b5; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #ddf4ff; + --color-scale-green-1: #b6e3ff; + --color-scale-green-2: #80ccff; + --color-scale-green-3: #54aeff; + --color-scale-green-4: #218bff; + --color-scale-green-5: #0969da; + --color-scale-green-6: #0550ae; + --color-scale-green-7: #033d8b; + --color-scale-green-8: #0a3069; + --color-scale-green-9: #002155; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #fff1e5; + --color-scale-orange-1: #ffd8b5; + --color-scale-orange-2: #ffb77c; + --color-scale-orange-3: #fb8f44; + --color-scale-orange-4: #e16f24; + --color-scale-orange-5: #bc4c00; + --color-scale-orange-6: #953800; + --color-scale-orange-7: #762c00; + --color-scale-orange-8: #5c2200; + --color-scale-orange-9: #471700; + --color-scale-red-0: #fff1e5; + --color-scale-red-1: #ffd8b5; + --color-scale-red-2: #ffb77c; + --color-scale-red-3: #fb8f44; + --color-scale-red-4: #e16f24; + --color-scale-red-5: #bc4c00; + --color-scale-red-6: #953800; + --color-scale-red-7: #762c00; + --color-scale-red-8: #5c2200; + --color-scale-red-9: #471700; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="light_colorblind"], + [data-color-mode="auto"][data-dark-theme="light_colorblind"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #54aeff66; + --diffBlob-addition-bgColor-line: #ddf4ff80; + --diffBlob-addition-bgColor-word: #54aeff66; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #fb8f4466; + --diffBlob-deletion-bgColor-line: #fff1e580; + --diffBlob-deletion-bgColor-word: #ffb77c80; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #bc4c00; + --codeMirror-syntax-fgColor-storage: #bc4c00; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #953800; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #218bff; + --control-borderColor-danger: #bc4c00; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #be4e02; + --control-danger-fgColor-hover: #be4e02; + --control-danger-bgColor-hover: #fff1e5; + --control-danger-bgColor-active: #fff1e566; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #0f72e3; + --button-primary-bgColor-hover: #0d6bd8; + --button-primary-bgColor-active: #0b64ce; + --button-primary-bgColor-disabled: #92caff; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #92caff; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #be4e02; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #be4e0280; + --button-danger-iconColor-rest: #be4e02; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #953800; + --button-danger-bgColor-active: #7e2f00; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #47170033; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #bc4c000d; + --buttonCounter-danger-bgColor-rest: #bc4c001a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #be4e0280; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #0969da; + --fgColor-attention: #9a6700; + --fgColor-severe: #bc4c00; + --fgColor-danger: #be4e02; + --fgColor-open: #bc4c00; + --fgColor-closed: #6e7781; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #ddf4ff; + --bgColor-success-emphasis: #0f72e3; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #fff1e5; + --bgColor-severe-emphasis: #bc4c00; + --bgColor-danger-muted: #fff1e5; + --bgColor-danger-emphasis: #bc4c00; + --bgColor-open-muted: #fb8f4466; + --bgColor-open-emphasis: #e16f24; + --bgColor-closed-muted: #afb8c166; + --bgColor-closed-emphasis: #6e7781; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #54aeff66; + --borderColor-success-emphasis: #218bff; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #fb8f4466; + --borderColor-severe-emphasis: #bc4c00; + --borderColor-danger-muted: #fb8f4466; + --borderColor-danger-emphasis: #bc4c00; + --borderColor-open-muted: #fb8f4466; + --borderColor-open-emphasis: #e16f24; + --borderColor-closed-muted: #afb8c166; + --borderColor-closed-emphasis: #6e7781; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #bc4c00; + --color-ansi-red-bright: #953800; + --color-ansi-green: #0550ae; + --color-ansi-green-bright: #0969da; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #bc4c00; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #953800; + --color-prettylights-syntax-brackethighlighter-unmatched: #762c00; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #762c00; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #bc4c00; + --color-prettylights-syntax-string-regexp: #0550ae; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #762c00; + --color-prettylights-syntax-markup-deleted-bg: #fff1e5; + --color-prettylights-syntax-markup-inserted-text: #0550ae; + --color-prettylights-syntax-markup-inserted-bg: #ddf4ff; + --color-prettylights-syntax-markup-changed-text: #953800; + --color-prettylights-syntax-markup-changed-bg: #ffd8b5; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #ddf4ff; + --color-scale-green-1: #b6e3ff; + --color-scale-green-2: #80ccff; + --color-scale-green-3: #54aeff; + --color-scale-green-4: #218bff; + --color-scale-green-5: #0969da; + --color-scale-green-6: #0550ae; + --color-scale-green-7: #033d8b; + --color-scale-green-8: #0a3069; + --color-scale-green-9: #002155; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #fff1e5; + --color-scale-orange-1: #ffd8b5; + --color-scale-orange-2: #ffb77c; + --color-scale-orange-3: #fb8f44; + --color-scale-orange-4: #e16f24; + --color-scale-orange-5: #bc4c00; + --color-scale-orange-6: #953800; + --color-scale-orange-7: #762c00; + --color-scale-orange-8: #5c2200; + --color-scale-orange-9: #471700; + --color-scale-red-0: #fff1e5; + --color-scale-red-1: #ffd8b5; + --color-scale-red-2: #ffb77c; + --color-scale-red-3: #fb8f44; + --color-scale-red-4: #e16f24; + --color-scale-red-5: #bc4c00; + --color-scale-red-6: #953800; + --color-scale-red-7: #762c00; + --color-scale-red-8: #5c2200; + --color-scale-red-9: #471700; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/light-high-contrast.scss b/_sass/@primer/primitives/dist/css/functional/themes/light-high-contrast.scss new file mode 100644 index 00000000..733691ff --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/light-high-contrast.scss @@ -0,0 +1,1016 @@ +[data-color-mode="light"][data-light-theme="light_high_contrast"], +[data-color-mode="light"][data-light-theme="light_high_contrast"] ::backdrop, +[data-color-mode="auto"][data-light-theme="light_high_contrast"], +[data-color-mode="auto"][data-light-theme="light_high_contrast"] ::backdrop { + --topicTag-borderColor: #0349b4; + --highlight-neutral-bgColor: #fcf7be; + --page-header-bgColor: #e7ecf0; + --diffBlob-addition-fgColor-text: #ffffff; + --diffBlob-addition-fgColor-num: #010409; + --diffBlob-addition-bgColor-num: #c2f9cd; + --diffBlob-addition-bgColor-line: #d2fedb; + --diffBlob-addition-bgColor-word: #117f32; + --diffBlob-deletion-fgColor-text: #ffffff; + --diffBlob-deletion-fgColor-num: #010409; + --diffBlob-deletion-bgColor-num: #ffc1bc; + --diffBlob-deletion-bgColor-line: #fff0ee; + --diffBlob-deletion-bgColor-word: #a0111f; + --diffBlob-hunk-bgColor-num: #9cd7ff; + --diffBlob-expander-iconColor: #0e1116; + --codeMirror-fgColor: #010409; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #0e1116; + --codeMirror-lineNumber-fgColor: #0e1116; + --codeMirror-cursor-fgColor: #010409; + --codeMirror-selection-bgColor: #368cf9; + --codeMirror-activeline-bgColor: #e7ecf0; + --codeMirror-matchingBracket-fgColor: #010409; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #0e1116; + --codeMirror-syntax-fgColor-constant: #023b95; + --codeMirror-syntax-fgColor-entity: #622cbc; + --codeMirror-syntax-fgColor-keyword: #a0111f; + --codeMirror-syntax-fgColor-storage: #a0111f; + --codeMirror-syntax-fgColor-string: #032563; + --codeMirror-syntax-fgColor-support: #023b95; + --codeMirror-syntax-fgColor-variable: #702c00; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #0e1116; + --header-borderColor-divider: #acb6c0; + --headerSearch-bgColor: #0e1116; + --headerSearch-borderColor: #4b535d; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #010409e6; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #acb6c0; + --avatarStack-fade-bgColor-muted: #ced5dc; + --control-bgColor-rest: #e7ecf0; + --control-bgColor-hover: #dbe1e6; + --control-bgColor-active: #cfd6dd; + --control-bgColor-disabled: #ced5dcb3; + --control-bgColor-selected: #acb6c0; + --control-fgColor-rest: #0e1116; + --control-fgColor-placeholder: #66707b; + --control-fgColor-disabled: #66707b; + --control-borderColor-rest: #20252c; + --control-borderColor-emphasis: #20252c; + --control-borderColor-disabled: #ced5dcb3; + --control-borderColor-selected: #ffffff; + --control-borderColor-success: #055d20; + --control-borderColor-danger: #a0111f; + --control-borderColor-warning: #744500; + --control-iconColor-rest: #0e1116; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #e7ecf0; + --control-transparent-bgColor-active: #ced5dc; + --control-transparent-bgColor-disabled: #ced5dcb3; + --control-transparent-bgColor-selected: #ced5dc33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #20252c; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #8a071e; + --control-danger-fgColor-hover: #ffffff; + --control-danger-bgColor-hover: #a0111f; + --control-danger-bgColor-active: #8c0b1d; + --control-checked-bgColor-rest: #0349b4; + --control-checked-bgColor-hover: #0344a8; + --control-checked-bgColor-active: #033f9d; + --control-checked-bgColor-disabled: #66707b; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0349b4; + --control-checked-borderColor-hover: #0344a8; + --control-checked-borderColor-active: #033f9d; + --control-checked-borderColor-disabled: #66707b; + --controlTrack-bgColor-rest: #acb6c0; + --controlTrack-bgColor-hover: #9ea8b2; + --controlTrack-bgColor-active: #909aa4; + --controlTrack-bgColor-disabled: #66707b; + --controlTrack-fgColor-rest: #010409; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #66707b; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #ced5dcb3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #20252c; + --controlKnob-borderColor-disabled: #ced5dcb3; + --controlKnob-borderColor-checked: #0349b4; + --counter-borderColor: #20252c; + --button-default-fgColor-rest: #0e1116; + --button-default-bgColor-rest: #e7ecf0; + --button-default-bgColor-hover: #dbe1e6; + --button-default-bgColor-active: #cfd6dd; + --button-default-bgColor-selected: #cfd6dd; + --button-default-bgColor-disabled: #ced5dcb3; + --button-default-borderColor-rest: #20252c; + --button-default-borderColor-hover: #20252c; + --button-default-borderColor-active: #20252c; + --button-default-borderColor-disabled: #ced5dcb3; + --button-default-shadow-resting: 0px 1px 0px 0px #0104090a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #055d20; + --button-primary-bgColor-hover: #04571e; + --button-primary-bgColor-active: #03501b; + --button-primary-bgColor-disabled: #85cb97; + --button-primary-borderColor-rest: #013d14; + --button-primary-borderColor-hover: #013d14; + --button-primary-borderColor-active: #013d14; + --button-primary-borderColor-disabled: #85cb97; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #00230b4d; + --button-invisible-fgColor-rest: #023b95; + --button-invisible-fgColor-hover: #67b3fd; + --button-invisible-fgColor-disabled: #66707b; + --button-invisible-iconColor-rest: #0e1116; + --button-invisible-iconColor-hover: #ffffff; + --button-invisible-iconColor-disabled: #66707b; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #20252c; + --button-invisible-bgColor-active: #4b535d; + --button-invisible-bgColor-disabled: #ced5dcb3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #20252c; + --button-invisible-borderColor-disabled: #ced5dcb3; + --button-outline-fgColor-rest: #023b95; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #023b9580; + --button-outline-bgColor-rest: #e7ecf0; + --button-outline-bgColor-hover: #0349b4; + --button-outline-bgColor-active: #033f9d; + --button-outline-bgColor-disabled: #ffffff; + --button-outline-borderColor-hover: #01040926; + --button-outline-borderColor-active: #01040926; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #021a4a33; + --button-danger-fgColor-rest: #8a071e; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #8a071e80; + --button-danger-iconColor-rest: #8a071e; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #e7ecf0; + --button-danger-bgColor-hover: #86061d; + --button-danger-bgColor-active: #74041a; + --button-danger-bgColor-disabled: #ced5dcb3; + --button-danger-borderColor-rest: #20252c; + --button-danger-borderColor-hover: #01040926; + --button-danger-borderColor-active: #01040926; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #43001133; + --button-inactive-fgColor: #4b535d; + --button-inactive-bgColor: #e7ecf0; + --button-star-iconColor: #d5a824; + --buttonCounter-default-bgColor-rest: #66707b33; + --buttonCounter-invisible-bgColor-rest: #66707b33; + --buttonCounter-primary-bgColor-rest: #00230b33; + --buttonCounter-outline-bgColor-rest: #0349b41a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0349b40d; + --buttonCounter-outline-fgColor-rest: #023b95; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #023b9580; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #a0111f0d; + --buttonCounter-danger-bgColor-rest: #a0111f1a; + --buttonCounter-danger-fgColor-rest: #980e1e; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #8a071e80; + --focus-outlineColor: #0349b4; + --focus-outline: #0349b4 solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #88929d; + --overlay-backdrop-bgColor: #88929d33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #9cd7ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #e7ecf0; + --timelineBadge-bgColor: #e7ecf0; + --treeViewItem-leadingVisual-iconColor-rest: #368cf9; + --underlineNav-borderColor-active: #cd3425; + --underlineNav-borderColor-hover: #88929d; + --underlineNav-iconColor-rest: #0e1116; + --selection-bgColor: #0349b433; + --fgColor-default: #010409; + --fgColor-muted: #0e1116; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #66707b; + --fgColor-link: #023b95; + --fgColor-neutral: #66707b; + --fgColor-accent: #023b95; + --fgColor-success: #055d20; + --fgColor-attention: #744500; + --fgColor-severe: #873800; + --fgColor-danger: #8a071e; + --fgColor-open: #055d20; + --fgColor-closed: #8a071e; + --fgColor-done: #622cbc; + --fgColor-sponsors: #971368; + --bgColor-default: #ffffff; + --bgColor-muted: #e7ecf0; + --bgColor-inset: #ffffff; + --bgColor-emphasis: #0e1116; + --bgColor-inverse: #0e1116; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #ced5dcb3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #e7ecf0; + --bgColor-neutral-emphasis: #66707b; + --bgColor-accent-muted: #dff7ff; + --bgColor-accent-emphasis: #0349b4; + --bgColor-success-muted: #d2fedb; + --bgColor-success-emphasis: #055d20; + --bgColor-attention-muted: #fcf7be; + --bgColor-attention-emphasis: #744500; + --bgColor-severe-muted: #fff2d5; + --bgColor-severe-emphasis: #873800; + --bgColor-danger-muted: #fff0ee; + --bgColor-danger-emphasis: #a0111f; + --bgColor-open-muted: #d2fedb; + --bgColor-open-emphasis: #055d20; + --bgColor-closed-muted: #fff0ee; + --bgColor-closed-emphasis: #a0111f; + --bgColor-done-muted: #faf0fe; + --bgColor-done-emphasis: #622cbc; + --bgColor-sponsors-muted: #feeff7; + --bgColor-sponsors-emphasis: #971368; + --borderColor-default: #20252c; + --borderColor-muted: #88929d; + --borderColor-emphasis: #66707b; + --borderColor-disabled: #ced5dcb3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #88929d; + --borderColor-neutral-emphasis: #66707b; + --borderColor-accent-muted: #368cf9; + --borderColor-accent-emphasis: #0349b4; + --borderColor-success-muted: #26a148; + --borderColor-success-emphasis: #055d20; + --borderColor-attention-muted: #b58407; + --borderColor-attention-emphasis: #744500; + --borderColor-severe-muted: #dc6d1a; + --borderColor-severe-emphasis: #873800; + --borderColor-danger-muted: #ee5a5d; + --borderColor-danger-emphasis: #a0111f; + --borderColor-open-muted: #26a148; + --borderColor-open-emphasis: #055d20; + --borderColor-closed-muted: #ee5a5d66; + --borderColor-closed-emphasis: #a0111f; + --borderColor-done-muted: #a371f7; + --borderColor-done-emphasis: #622cbc; + --borderColor-sponsors-muted: #ed4baf; + --borderColor-sponsors-emphasis: #971368; + --color-ansi-black: #0e1116; + --color-ansi-black-bright: #4b535d; + --color-ansi-white: #66707b; + --color-ansi-white-bright: #88929d; + --color-ansi-gray: #66707b; + --color-ansi-red: #a0111f; + --color-ansi-red-bright: #86061d; + --color-ansi-green: #024c1a; + --color-ansi-green-bright: #055d20; + --color-ansi-yellow: #3f2200; + --color-ansi-yellow-bright: #4e2c00; + --color-ansi-blue: #0349b4; + --color-ansi-blue-bright: #1168e3; + --color-ansi-magenta: #622cbc; + --color-ansi-magenta-bright: #844ae7; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #4b535d; + --color-prettylights-syntax-constant: #023b95; + --color-prettylights-syntax-constant-other-reference-link: #032563; + --color-prettylights-syntax-entity: #512598; + --color-prettylights-syntax-storage-modifier-import: #0e1116; + --color-prettylights-syntax-entity-tag: #023b95; + --color-prettylights-syntax-keyword: #a0111f; + --color-prettylights-syntax-string: #032563; + --color-prettylights-syntax-variable: #702c00; + --color-prettylights-syntax-brackethighlighter-unmatched: #6e011a; + --color-prettylights-syntax-brackethighlighter-angle: #4b535d; + --color-prettylights-syntax-invalid-illegal-text: #ffffff; + --color-prettylights-syntax-invalid-illegal-bg: #6e011a; + --color-prettylights-syntax-carriage-return-text: #ffffff; + --color-prettylights-syntax-carriage-return-bg: #a0111f; + --color-prettylights-syntax-string-regexp: #024c1a; + --color-prettylights-syntax-markup-list: #2e1800; + --color-prettylights-syntax-markup-heading: #023b95; + --color-prettylights-syntax-markup-italic: #0e1116; + --color-prettylights-syntax-markup-bold: #0e1116; + --color-prettylights-syntax-markup-deleted-text: #6e011a; + --color-prettylights-syntax-markup-deleted-bg: #fff0ee; + --color-prettylights-syntax-markup-inserted-text: #024c1a; + --color-prettylights-syntax-markup-inserted-bg: #d2fedb; + --color-prettylights-syntax-markup-changed-text: #702c00; + --color-prettylights-syntax-markup-changed-bg: #ffc67b; + --color-prettylights-syntax-markup-ignored-text: #e7ecf0; + --color-prettylights-syntax-markup-ignored-bg: #023b95; + --color-prettylights-syntax-meta-diff-range: #622cbc; + --color-prettylights-syntax-sublimelinter-gutter-mark: #88929d; + --color-scale-black: #010409; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #ffffff; + --color-scale-gray-1: #e7ecf0; + --color-scale-gray-2: #ced5dc; + --color-scale-gray-3: #acb6c0; + --color-scale-gray-4: #88929d; + --color-scale-gray-5: #66707b; + --color-scale-gray-6: #4b535d; + --color-scale-gray-7: #343b43; + --color-scale-gray-8: #20252c; + --color-scale-gray-9: #0e1116; + --color-scale-blue-0: #dff7ff; + --color-scale-blue-1: #9cd7ff; + --color-scale-blue-2: #67b3fd; + --color-scale-blue-3: #368cf9; + --color-scale-blue-4: #1168e3; + --color-scale-blue-5: #0349b4; + --color-scale-blue-6: #023b95; + --color-scale-blue-7: #022f7a; + --color-scale-blue-8: #032563; + --color-scale-blue-9: #021a4a; + --color-scale-green-0: #d2fedb; + --color-scale-green-1: #82e596; + --color-scale-green-2: #43c663; + --color-scale-green-3: #26a148; + --color-scale-green-4: #117f32; + --color-scale-green-5: #055d20; + --color-scale-green-6: #024c1a; + --color-scale-green-7: #013d14; + --color-scale-green-8: #003110; + --color-scale-green-9: #00230b; + --color-scale-yellow-0: #fcf7be; + --color-scale-yellow-1: #f0ce53; + --color-scale-yellow-2: #d5a824; + --color-scale-yellow-3: #b58407; + --color-scale-yellow-4: #956400; + --color-scale-yellow-5: #744500; + --color-scale-yellow-6: #603700; + --color-scale-yellow-7: #4e2c00; + --color-scale-yellow-8: #3f2200; + --color-scale-yellow-9: #2e1800; + --color-scale-orange-0: #fff2d5; + --color-scale-orange-1: #ffc67b; + --color-scale-orange-2: #f99636; + --color-scale-orange-3: #dc6d1a; + --color-scale-orange-4: #b45105; + --color-scale-orange-5: #873800; + --color-scale-orange-6: #702c00; + --color-scale-orange-7: #5b2300; + --color-scale-orange-8: #491b00; + --color-scale-orange-9: #361200; + --color-scale-red-0: #fff0ee; + --color-scale-red-1: #ffc1bc; + --color-scale-red-2: #ff8e8a; + --color-scale-red-3: #ee5a5d; + --color-scale-red-4: #d5232c; + --color-scale-red-5: #a0111f; + --color-scale-red-6: #86061d; + --color-scale-red-7: #6e011a; + --color-scale-red-8: #5a0016; + --color-scale-red-9: #430011; + --color-scale-purple-0: #faf0fe; + --color-scale-purple-1: #e0c5ff; + --color-scale-purple-2: #c49bff; + --color-scale-purple-3: #a371f7; + --color-scale-purple-4: #844ae7; + --color-scale-purple-5: #622cbc; + --color-scale-purple-6: #512598; + --color-scale-purple-7: #411d7b; + --color-scale-purple-8: #341763; + --color-scale-purple-9: #260f49; + --color-scale-pink-0: #feeff7; + --color-scale-pink-1: #ffbde0; + --color-scale-pink-2: #fc87ca; + --color-scale-pink-3: #ed4baf; + --color-scale-pink-4: #c9248e; + --color-scale-pink-5: #971368; + --color-scale-pink-6: #7d0c57; + --color-scale-pink-7: #660847; + --color-scale-pink-8: #53043a; + --color-scale-pink-9: #3e022b; + --color-scale-coral-0: #fff0ed; + --color-scale-coral-1: #ffc2b6; + --color-scale-coral-2: #ff8f7e; + --color-scale-coral-3: #cd3425; + --color-scale-coral-4: #ef5b48; + --color-scale-coral-5: #9f1710; + --color-scale-coral-6: #870706; + --color-scale-coral-7: #6f0107; + --color-scale-coral-8: #5b0002; + --color-scale-coral-9: #430200; + --shadow-inset: inset 0px 1px 0px 0px #0104090a; + --shadow-resting-xsmall: 0px 1px 0px 0px #0104091a; + --shadow-resting-small: 0px 1px 0px 0px #0104090a; + --shadow-resting-medium: 0px 3px 6px 0px #343b431f; + --shadow-floating-small: 0px 0px 0px 1px #88929d80, 0px 6px 12px -3px #343b430a, 0px 6px 18px 0px #343b431f; + --shadow-floating-medium: 0px 0px 0px 1px #88929d, 0px 8px 16px -4px #343b4314, 0px 4px 32px -4px #343b4314, 0px 24px 48px -12px #343b4314, 0px 48px 96px -24px #343b4314; + --shadow-floating-large: 0px 0px 0px 1px #88929d, 0px 40px 80px 0px #343b433d; + --shadow-floating-xlarge: 0px 0px 0px 1px #88929d, 0px 56px 112px 0px #343b4352; + --shadow-floating-legacy: 0px 6px 12px -3px #343b430a, 0px 6px 18px 0px #343b431f; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="light_high_contrast"], + [data-color-mode="auto"][data-dark-theme="light_high_contrast"] ::backdrop { + --topicTag-borderColor: #0349b4; + --highlight-neutral-bgColor: #fcf7be; + --page-header-bgColor: #e7ecf0; + --diffBlob-addition-fgColor-text: #ffffff; + --diffBlob-addition-fgColor-num: #010409; + --diffBlob-addition-bgColor-num: #c2f9cd; + --diffBlob-addition-bgColor-line: #d2fedb; + --diffBlob-addition-bgColor-word: #117f32; + --diffBlob-deletion-fgColor-text: #ffffff; + --diffBlob-deletion-fgColor-num: #010409; + --diffBlob-deletion-bgColor-num: #ffc1bc; + --diffBlob-deletion-bgColor-line: #fff0ee; + --diffBlob-deletion-bgColor-word: #a0111f; + --diffBlob-hunk-bgColor-num: #9cd7ff; + --diffBlob-expander-iconColor: #0e1116; + --codeMirror-fgColor: #010409; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #0e1116; + --codeMirror-lineNumber-fgColor: #0e1116; + --codeMirror-cursor-fgColor: #010409; + --codeMirror-selection-bgColor: #368cf9; + --codeMirror-activeline-bgColor: #e7ecf0; + --codeMirror-matchingBracket-fgColor: #010409; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #0e1116; + --codeMirror-syntax-fgColor-constant: #023b95; + --codeMirror-syntax-fgColor-entity: #622cbc; + --codeMirror-syntax-fgColor-keyword: #a0111f; + --codeMirror-syntax-fgColor-storage: #a0111f; + --codeMirror-syntax-fgColor-string: #032563; + --codeMirror-syntax-fgColor-support: #023b95; + --codeMirror-syntax-fgColor-variable: #702c00; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #0e1116; + --header-borderColor-divider: #acb6c0; + --headerSearch-bgColor: #0e1116; + --headerSearch-borderColor: #4b535d; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #010409e6; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #acb6c0; + --avatarStack-fade-bgColor-muted: #ced5dc; + --control-bgColor-rest: #e7ecf0; + --control-bgColor-hover: #dbe1e6; + --control-bgColor-active: #cfd6dd; + --control-bgColor-disabled: #ced5dcb3; + --control-bgColor-selected: #acb6c0; + --control-fgColor-rest: #0e1116; + --control-fgColor-placeholder: #66707b; + --control-fgColor-disabled: #66707b; + --control-borderColor-rest: #20252c; + --control-borderColor-emphasis: #20252c; + --control-borderColor-disabled: #ced5dcb3; + --control-borderColor-selected: #ffffff; + --control-borderColor-success: #055d20; + --control-borderColor-danger: #a0111f; + --control-borderColor-warning: #744500; + --control-iconColor-rest: #0e1116; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #e7ecf0; + --control-transparent-bgColor-active: #ced5dc; + --control-transparent-bgColor-disabled: #ced5dcb3; + --control-transparent-bgColor-selected: #ced5dc33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #20252c; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #8a071e; + --control-danger-fgColor-hover: #ffffff; + --control-danger-bgColor-hover: #a0111f; + --control-danger-bgColor-active: #8c0b1d; + --control-checked-bgColor-rest: #0349b4; + --control-checked-bgColor-hover: #0344a8; + --control-checked-bgColor-active: #033f9d; + --control-checked-bgColor-disabled: #66707b; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0349b4; + --control-checked-borderColor-hover: #0344a8; + --control-checked-borderColor-active: #033f9d; + --control-checked-borderColor-disabled: #66707b; + --controlTrack-bgColor-rest: #acb6c0; + --controlTrack-bgColor-hover: #9ea8b2; + --controlTrack-bgColor-active: #909aa4; + --controlTrack-bgColor-disabled: #66707b; + --controlTrack-fgColor-rest: #010409; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #66707b; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #ced5dcb3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #20252c; + --controlKnob-borderColor-disabled: #ced5dcb3; + --controlKnob-borderColor-checked: #0349b4; + --counter-borderColor: #20252c; + --button-default-fgColor-rest: #0e1116; + --button-default-bgColor-rest: #e7ecf0; + --button-default-bgColor-hover: #dbe1e6; + --button-default-bgColor-active: #cfd6dd; + --button-default-bgColor-selected: #cfd6dd; + --button-default-bgColor-disabled: #ced5dcb3; + --button-default-borderColor-rest: #20252c; + --button-default-borderColor-hover: #20252c; + --button-default-borderColor-active: #20252c; + --button-default-borderColor-disabled: #ced5dcb3; + --button-default-shadow-resting: 0px 1px 0px 0px #0104090a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #055d20; + --button-primary-bgColor-hover: #04571e; + --button-primary-bgColor-active: #03501b; + --button-primary-bgColor-disabled: #85cb97; + --button-primary-borderColor-rest: #013d14; + --button-primary-borderColor-hover: #013d14; + --button-primary-borderColor-active: #013d14; + --button-primary-borderColor-disabled: #85cb97; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #00230b4d; + --button-invisible-fgColor-rest: #023b95; + --button-invisible-fgColor-hover: #67b3fd; + --button-invisible-fgColor-disabled: #66707b; + --button-invisible-iconColor-rest: #0e1116; + --button-invisible-iconColor-hover: #ffffff; + --button-invisible-iconColor-disabled: #66707b; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #20252c; + --button-invisible-bgColor-active: #4b535d; + --button-invisible-bgColor-disabled: #ced5dcb3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #20252c; + --button-invisible-borderColor-disabled: #ced5dcb3; + --button-outline-fgColor-rest: #023b95; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #023b9580; + --button-outline-bgColor-rest: #e7ecf0; + --button-outline-bgColor-hover: #0349b4; + --button-outline-bgColor-active: #033f9d; + --button-outline-bgColor-disabled: #ffffff; + --button-outline-borderColor-hover: #01040926; + --button-outline-borderColor-active: #01040926; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #021a4a33; + --button-danger-fgColor-rest: #8a071e; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #8a071e80; + --button-danger-iconColor-rest: #8a071e; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #e7ecf0; + --button-danger-bgColor-hover: #86061d; + --button-danger-bgColor-active: #74041a; + --button-danger-bgColor-disabled: #ced5dcb3; + --button-danger-borderColor-rest: #20252c; + --button-danger-borderColor-hover: #01040926; + --button-danger-borderColor-active: #01040926; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #43001133; + --button-inactive-fgColor: #4b535d; + --button-inactive-bgColor: #e7ecf0; + --button-star-iconColor: #d5a824; + --buttonCounter-default-bgColor-rest: #66707b33; + --buttonCounter-invisible-bgColor-rest: #66707b33; + --buttonCounter-primary-bgColor-rest: #00230b33; + --buttonCounter-outline-bgColor-rest: #0349b41a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0349b40d; + --buttonCounter-outline-fgColor-rest: #023b95; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #023b9580; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #a0111f0d; + --buttonCounter-danger-bgColor-rest: #a0111f1a; + --buttonCounter-danger-fgColor-rest: #980e1e; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #8a071e80; + --focus-outlineColor: #0349b4; + --focus-outline: #0349b4 solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #88929d; + --overlay-backdrop-bgColor: #88929d33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #9cd7ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #e7ecf0; + --timelineBadge-bgColor: #e7ecf0; + --treeViewItem-leadingVisual-iconColor-rest: #368cf9; + --underlineNav-borderColor-active: #cd3425; + --underlineNav-borderColor-hover: #88929d; + --underlineNav-iconColor-rest: #0e1116; + --selection-bgColor: #0349b433; + --fgColor-default: #010409; + --fgColor-muted: #0e1116; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #010409; + --fgColor-disabled: #66707b; + --fgColor-link: #023b95; + --fgColor-neutral: #66707b; + --fgColor-accent: #023b95; + --fgColor-success: #055d20; + --fgColor-attention: #744500; + --fgColor-severe: #873800; + --fgColor-danger: #8a071e; + --fgColor-open: #055d20; + --fgColor-closed: #8a071e; + --fgColor-done: #622cbc; + --fgColor-sponsors: #971368; + --bgColor-default: #ffffff; + --bgColor-muted: #e7ecf0; + --bgColor-inset: #ffffff; + --bgColor-emphasis: #0e1116; + --bgColor-inverse: #0e1116; + --bgColor-white: #ffffff; + --bgColor-black: #010409; + --bgColor-disabled: #ced5dcb3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #e7ecf0; + --bgColor-neutral-emphasis: #66707b; + --bgColor-accent-muted: #dff7ff; + --bgColor-accent-emphasis: #0349b4; + --bgColor-success-muted: #d2fedb; + --bgColor-success-emphasis: #055d20; + --bgColor-attention-muted: #fcf7be; + --bgColor-attention-emphasis: #744500; + --bgColor-severe-muted: #fff2d5; + --bgColor-severe-emphasis: #873800; + --bgColor-danger-muted: #fff0ee; + --bgColor-danger-emphasis: #a0111f; + --bgColor-open-muted: #d2fedb; + --bgColor-open-emphasis: #055d20; + --bgColor-closed-muted: #fff0ee; + --bgColor-closed-emphasis: #a0111f; + --bgColor-done-muted: #faf0fe; + --bgColor-done-emphasis: #622cbc; + --bgColor-sponsors-muted: #feeff7; + --bgColor-sponsors-emphasis: #971368; + --borderColor-default: #20252c; + --borderColor-muted: #88929d; + --borderColor-emphasis: #66707b; + --borderColor-disabled: #ced5dcb3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #88929d; + --borderColor-neutral-emphasis: #66707b; + --borderColor-accent-muted: #368cf9; + --borderColor-accent-emphasis: #0349b4; + --borderColor-success-muted: #26a148; + --borderColor-success-emphasis: #055d20; + --borderColor-attention-muted: #b58407; + --borderColor-attention-emphasis: #744500; + --borderColor-severe-muted: #dc6d1a; + --borderColor-severe-emphasis: #873800; + --borderColor-danger-muted: #ee5a5d; + --borderColor-danger-emphasis: #a0111f; + --borderColor-open-muted: #26a148; + --borderColor-open-emphasis: #055d20; + --borderColor-closed-muted: #ee5a5d66; + --borderColor-closed-emphasis: #a0111f; + --borderColor-done-muted: #a371f7; + --borderColor-done-emphasis: #622cbc; + --borderColor-sponsors-muted: #ed4baf; + --borderColor-sponsors-emphasis: #971368; + --color-ansi-black: #0e1116; + --color-ansi-black-bright: #4b535d; + --color-ansi-white: #66707b; + --color-ansi-white-bright: #88929d; + --color-ansi-gray: #66707b; + --color-ansi-red: #a0111f; + --color-ansi-red-bright: #86061d; + --color-ansi-green: #024c1a; + --color-ansi-green-bright: #055d20; + --color-ansi-yellow: #3f2200; + --color-ansi-yellow-bright: #4e2c00; + --color-ansi-blue: #0349b4; + --color-ansi-blue-bright: #1168e3; + --color-ansi-magenta: #622cbc; + --color-ansi-magenta-bright: #844ae7; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #4b535d; + --color-prettylights-syntax-constant: #023b95; + --color-prettylights-syntax-constant-other-reference-link: #032563; + --color-prettylights-syntax-entity: #512598; + --color-prettylights-syntax-storage-modifier-import: #0e1116; + --color-prettylights-syntax-entity-tag: #023b95; + --color-prettylights-syntax-keyword: #a0111f; + --color-prettylights-syntax-string: #032563; + --color-prettylights-syntax-variable: #702c00; + --color-prettylights-syntax-brackethighlighter-unmatched: #6e011a; + --color-prettylights-syntax-brackethighlighter-angle: #4b535d; + --color-prettylights-syntax-invalid-illegal-text: #ffffff; + --color-prettylights-syntax-invalid-illegal-bg: #6e011a; + --color-prettylights-syntax-carriage-return-text: #ffffff; + --color-prettylights-syntax-carriage-return-bg: #a0111f; + --color-prettylights-syntax-string-regexp: #024c1a; + --color-prettylights-syntax-markup-list: #2e1800; + --color-prettylights-syntax-markup-heading: #023b95; + --color-prettylights-syntax-markup-italic: #0e1116; + --color-prettylights-syntax-markup-bold: #0e1116; + --color-prettylights-syntax-markup-deleted-text: #6e011a; + --color-prettylights-syntax-markup-deleted-bg: #fff0ee; + --color-prettylights-syntax-markup-inserted-text: #024c1a; + --color-prettylights-syntax-markup-inserted-bg: #d2fedb; + --color-prettylights-syntax-markup-changed-text: #702c00; + --color-prettylights-syntax-markup-changed-bg: #ffc67b; + --color-prettylights-syntax-markup-ignored-text: #e7ecf0; + --color-prettylights-syntax-markup-ignored-bg: #023b95; + --color-prettylights-syntax-meta-diff-range: #622cbc; + --color-prettylights-syntax-sublimelinter-gutter-mark: #88929d; + --color-scale-black: #010409; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #ffffff; + --color-scale-gray-1: #e7ecf0; + --color-scale-gray-2: #ced5dc; + --color-scale-gray-3: #acb6c0; + --color-scale-gray-4: #88929d; + --color-scale-gray-5: #66707b; + --color-scale-gray-6: #4b535d; + --color-scale-gray-7: #343b43; + --color-scale-gray-8: #20252c; + --color-scale-gray-9: #0e1116; + --color-scale-blue-0: #dff7ff; + --color-scale-blue-1: #9cd7ff; + --color-scale-blue-2: #67b3fd; + --color-scale-blue-3: #368cf9; + --color-scale-blue-4: #1168e3; + --color-scale-blue-5: #0349b4; + --color-scale-blue-6: #023b95; + --color-scale-blue-7: #022f7a; + --color-scale-blue-8: #032563; + --color-scale-blue-9: #021a4a; + --color-scale-green-0: #d2fedb; + --color-scale-green-1: #82e596; + --color-scale-green-2: #43c663; + --color-scale-green-3: #26a148; + --color-scale-green-4: #117f32; + --color-scale-green-5: #055d20; + --color-scale-green-6: #024c1a; + --color-scale-green-7: #013d14; + --color-scale-green-8: #003110; + --color-scale-green-9: #00230b; + --color-scale-yellow-0: #fcf7be; + --color-scale-yellow-1: #f0ce53; + --color-scale-yellow-2: #d5a824; + --color-scale-yellow-3: #b58407; + --color-scale-yellow-4: #956400; + --color-scale-yellow-5: #744500; + --color-scale-yellow-6: #603700; + --color-scale-yellow-7: #4e2c00; + --color-scale-yellow-8: #3f2200; + --color-scale-yellow-9: #2e1800; + --color-scale-orange-0: #fff2d5; + --color-scale-orange-1: #ffc67b; + --color-scale-orange-2: #f99636; + --color-scale-orange-3: #dc6d1a; + --color-scale-orange-4: #b45105; + --color-scale-orange-5: #873800; + --color-scale-orange-6: #702c00; + --color-scale-orange-7: #5b2300; + --color-scale-orange-8: #491b00; + --color-scale-orange-9: #361200; + --color-scale-red-0: #fff0ee; + --color-scale-red-1: #ffc1bc; + --color-scale-red-2: #ff8e8a; + --color-scale-red-3: #ee5a5d; + --color-scale-red-4: #d5232c; + --color-scale-red-5: #a0111f; + --color-scale-red-6: #86061d; + --color-scale-red-7: #6e011a; + --color-scale-red-8: #5a0016; + --color-scale-red-9: #430011; + --color-scale-purple-0: #faf0fe; + --color-scale-purple-1: #e0c5ff; + --color-scale-purple-2: #c49bff; + --color-scale-purple-3: #a371f7; + --color-scale-purple-4: #844ae7; + --color-scale-purple-5: #622cbc; + --color-scale-purple-6: #512598; + --color-scale-purple-7: #411d7b; + --color-scale-purple-8: #341763; + --color-scale-purple-9: #260f49; + --color-scale-pink-0: #feeff7; + --color-scale-pink-1: #ffbde0; + --color-scale-pink-2: #fc87ca; + --color-scale-pink-3: #ed4baf; + --color-scale-pink-4: #c9248e; + --color-scale-pink-5: #971368; + --color-scale-pink-6: #7d0c57; + --color-scale-pink-7: #660847; + --color-scale-pink-8: #53043a; + --color-scale-pink-9: #3e022b; + --color-scale-coral-0: #fff0ed; + --color-scale-coral-1: #ffc2b6; + --color-scale-coral-2: #ff8f7e; + --color-scale-coral-3: #cd3425; + --color-scale-coral-4: #ef5b48; + --color-scale-coral-5: #9f1710; + --color-scale-coral-6: #870706; + --color-scale-coral-7: #6f0107; + --color-scale-coral-8: #5b0002; + --color-scale-coral-9: #430200; + --shadow-inset: inset 0px 1px 0px 0px #0104090a; + --shadow-resting-xsmall: 0px 1px 0px 0px #0104091a; + --shadow-resting-small: 0px 1px 0px 0px #0104090a; + --shadow-resting-medium: 0px 3px 6px 0px #343b431f; + --shadow-floating-small: 0px 0px 0px 1px #88929d80, 0px 6px 12px -3px #343b430a, 0px 6px 18px 0px #343b431f; + --shadow-floating-medium: 0px 0px 0px 1px #88929d, 0px 8px 16px -4px #343b4314, 0px 4px 32px -4px #343b4314, 0px 24px 48px -12px #343b4314, 0px 48px 96px -24px #343b4314; + --shadow-floating-large: 0px 0px 0px 1px #88929d, 0px 40px 80px 0px #343b433d; + --shadow-floating-xlarge: 0px 0px 0px 1px #88929d, 0px 56px 112px 0px #343b4352; + --shadow-floating-legacy: 0px 6px 12px -3px #343b430a, 0px 6px 18px 0px #343b431f; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/light-tritanopia.scss b/_sass/@primer/primitives/dist/css/functional/themes/light-tritanopia.scss new file mode 100644 index 00000000..1d2d7bb5 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/light-tritanopia.scss @@ -0,0 +1,1016 @@ +[data-color-mode="light"][data-light-theme="light_tritanopia"], +[data-color-mode="light"][data-light-theme="light_tritanopia"] ::backdrop, +[data-color-mode="auto"][data-light-theme="light_tritanopia"], +[data-color-mode="auto"][data-light-theme="light_tritanopia"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #d5f1ff; + --diffBlob-addition-bgColor-line: #ddf4ff; + --diffBlob-addition-bgColor-word: #b6e3ff; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #ffcecb; + --diffBlob-deletion-bgColor-line: #ffebe9; + --diffBlob-deletion-bgColor-word: #ff818266; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #cf222e; + --codeMirror-syntax-fgColor-storage: #cf222e; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #a40e26; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #218bff; + --control-borderColor-danger: #cf222e; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #d1242f; + --control-danger-fgColor-hover: #d1242f; + --control-danger-bgColor-hover: #ffebe9; + --control-danger-bgColor-active: #ffebe966; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #0f72e3; + --button-primary-bgColor-hover: #0d6bd8; + --button-primary-bgColor-active: #0b64ce; + --button-primary-bgColor-disabled: #92caff; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #92caff; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #d1242f; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #d1242f80; + --button-danger-iconColor-rest: #d1242f; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #a40e26; + --button-danger-bgColor-active: #8b0820; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #cf222e0d; + --buttonCounter-danger-bgColor-rest: #cf222e1a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #d1242f80; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #0969da; + --fgColor-attention: #9a6700; + --fgColor-severe: #cf222e; + --fgColor-danger: #d1242f; + --fgColor-open: #cf222e; + --fgColor-closed: #6e7781; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #ddf4ff; + --bgColor-success-emphasis: #0f72e3; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #ffebe9; + --bgColor-severe-emphasis: #cf222e; + --bgColor-danger-muted: #ffebe9; + --bgColor-danger-emphasis: #cf222e; + --bgColor-open-muted: #ffebe9; + --bgColor-open-emphasis: #cf222e; + --bgColor-closed-muted: #f6f8fa; + --bgColor-closed-emphasis: #6e7781; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #54aeff66; + --borderColor-success-emphasis: #218bff; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #ff818266; + --borderColor-severe-emphasis: #cf222e; + --borderColor-danger-muted: #ff818266; + --borderColor-danger-emphasis: #cf222e; + --borderColor-open-muted: #ff818266; + --borderColor-open-emphasis: #cf222e; + --borderColor-closed-muted: #afb8c166; + --borderColor-closed-emphasis: #6e7781; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #cf222e; + --color-ansi-red-bright: #a40e26; + --color-ansi-green: #0550ae; + --color-ansi-green-bright: #0969da; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #cf222e; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #a40e26; + --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #82071e; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #cf222e; + --color-prettylights-syntax-string-regexp: #0550ae; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #82071e; + --color-prettylights-syntax-markup-deleted-bg: #ffebe9; + --color-prettylights-syntax-markup-inserted-text: #0550ae; + --color-prettylights-syntax-markup-inserted-bg: #ddf4ff; + --color-prettylights-syntax-markup-changed-text: #a40e26; + --color-prettylights-syntax-markup-changed-bg: #ffcecb; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #ddf4ff; + --color-scale-green-1: #b6e3ff; + --color-scale-green-2: #80ccff; + --color-scale-green-3: #54aeff; + --color-scale-green-4: #218bff; + --color-scale-green-5: #0969da; + --color-scale-green-6: #0550ae; + --color-scale-green-7: #033d8b; + --color-scale-green-8: #0a3069; + --color-scale-green-9: #002155; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #ffebe9; + --color-scale-orange-1: #ffcecb; + --color-scale-orange-2: #ffaba8; + --color-scale-orange-3: #ff8182; + --color-scale-orange-4: #fa4549; + --color-scale-orange-5: #cf222e; + --color-scale-orange-6: #a40e26; + --color-scale-orange-7: #82071e; + --color-scale-orange-8: #660018; + --color-scale-orange-9: #4c0014; + --color-scale-red-0: #ffebe9; + --color-scale-red-1: #ffcecb; + --color-scale-red-2: #ffaba8; + --color-scale-red-3: #ff8182; + --color-scale-red-4: #fa4549; + --color-scale-red-5: #cf222e; + --color-scale-red-6: #a40e26; + --color-scale-red-7: #82071e; + --color-scale-red-8: #660018; + --color-scale-red-9: #4c0014; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="light_tritanopia"], + [data-color-mode="auto"][data-dark-theme="light_tritanopia"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #d5f1ff; + --diffBlob-addition-bgColor-line: #ddf4ff; + --diffBlob-addition-bgColor-word: #b6e3ff; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #ffcecb; + --diffBlob-deletion-bgColor-line: #ffebe9; + --diffBlob-deletion-bgColor-word: #ff818266; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #cf222e; + --codeMirror-syntax-fgColor-storage: #cf222e; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #a40e26; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #218bff; + --control-borderColor-danger: #cf222e; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #d1242f; + --control-danger-fgColor-hover: #d1242f; + --control-danger-bgColor-hover: #ffebe9; + --control-danger-bgColor-active: #ffebe966; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #0f72e3; + --button-primary-bgColor-hover: #0d6bd8; + --button-primary-bgColor-active: #0b64ce; + --button-primary-bgColor-disabled: #92caff; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #92caff; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #d1242f; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #d1242f80; + --button-danger-iconColor-rest: #d1242f; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #a40e26; + --button-danger-bgColor-active: #8b0820; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #cf222e0d; + --buttonCounter-danger-bgColor-rest: #cf222e1a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #d1242f80; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #0969da; + --fgColor-attention: #9a6700; + --fgColor-severe: #cf222e; + --fgColor-danger: #d1242f; + --fgColor-open: #cf222e; + --fgColor-closed: #6e7781; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #ddf4ff; + --bgColor-success-emphasis: #0f72e3; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #ffebe9; + --bgColor-severe-emphasis: #cf222e; + --bgColor-danger-muted: #ffebe9; + --bgColor-danger-emphasis: #cf222e; + --bgColor-open-muted: #ffebe9; + --bgColor-open-emphasis: #cf222e; + --bgColor-closed-muted: #f6f8fa; + --bgColor-closed-emphasis: #6e7781; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #54aeff66; + --borderColor-success-emphasis: #218bff; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #ff818266; + --borderColor-severe-emphasis: #cf222e; + --borderColor-danger-muted: #ff818266; + --borderColor-danger-emphasis: #cf222e; + --borderColor-open-muted: #ff818266; + --borderColor-open-emphasis: #cf222e; + --borderColor-closed-muted: #afb8c166; + --borderColor-closed-emphasis: #6e7781; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #cf222e; + --color-ansi-red-bright: #a40e26; + --color-ansi-green: #0550ae; + --color-ansi-green-bright: #0969da; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #cf222e; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #a40e26; + --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #82071e; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #cf222e; + --color-prettylights-syntax-string-regexp: #0550ae; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #82071e; + --color-prettylights-syntax-markup-deleted-bg: #ffebe9; + --color-prettylights-syntax-markup-inserted-text: #0550ae; + --color-prettylights-syntax-markup-inserted-bg: #ddf4ff; + --color-prettylights-syntax-markup-changed-text: #a40e26; + --color-prettylights-syntax-markup-changed-bg: #ffcecb; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #ddf4ff; + --color-scale-green-1: #b6e3ff; + --color-scale-green-2: #80ccff; + --color-scale-green-3: #54aeff; + --color-scale-green-4: #218bff; + --color-scale-green-5: #0969da; + --color-scale-green-6: #0550ae; + --color-scale-green-7: #033d8b; + --color-scale-green-8: #0a3069; + --color-scale-green-9: #002155; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #ffebe9; + --color-scale-orange-1: #ffcecb; + --color-scale-orange-2: #ffaba8; + --color-scale-orange-3: #ff8182; + --color-scale-orange-4: #fa4549; + --color-scale-orange-5: #cf222e; + --color-scale-orange-6: #a40e26; + --color-scale-orange-7: #82071e; + --color-scale-orange-8: #660018; + --color-scale-orange-9: #4c0014; + --color-scale-red-0: #ffebe9; + --color-scale-red-1: #ffcecb; + --color-scale-red-2: #ffaba8; + --color-scale-red-3: #ff8182; + --color-scale-red-4: #fa4549; + --color-scale-red-5: #cf222e; + --color-scale-red-6: #a40e26; + --color-scale-red-7: #82071e; + --color-scale-red-8: #660018; + --color-scale-red-9: #4c0014; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/themes/light.scss b/_sass/@primer/primitives/dist/css/functional/themes/light.scss new file mode 100644 index 00000000..af02612c --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/themes/light.scss @@ -0,0 +1,1016 @@ +[data-color-mode="light"][data-light-theme="light"], +[data-color-mode="light"][data-light-theme="light"] ::backdrop, +[data-color-mode="auto"][data-light-theme="light"], +[data-color-mode="auto"][data-light-theme="light"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #d1f8d9; + --diffBlob-addition-bgColor-line: #dafbe1; + --diffBlob-addition-bgColor-word: #aceebb; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #ffcecb; + --diffBlob-deletion-bgColor-line: #ffebe9; + --diffBlob-deletion-bgColor-word: #ff818266; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #cf222e; + --codeMirror-syntax-fgColor-storage: #cf222e; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #953800; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #1a7f37; + --control-borderColor-danger: #cf222e; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #d1242f; + --control-danger-fgColor-hover: #d1242f; + --control-danger-bgColor-hover: #ffebe9; + --control-danger-bgColor-active: #ffebe966; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #1f883d; + --button-primary-bgColor-hover: #1c8139; + --button-primary-bgColor-active: #197935; + --button-primary-bgColor-disabled: #95d8a6; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #95d8a6; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #002d114d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #d1242f; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #d1242f80; + --button-danger-iconColor-rest: #d1242f; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #a40e26; + --button-danger-bgColor-active: #8b0820; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #cf222e0d; + --buttonCounter-danger-bgColor-rest: #cf222e1a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #d1242f80; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #1a7f37; + --fgColor-attention: #9a6700; + --fgColor-severe: #bc4c00; + --fgColor-danger: #d1242f; + --fgColor-open: #1a7f37; + --fgColor-closed: #d1242f; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #dafbe1; + --bgColor-success-emphasis: #1f883d; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #fff1e5; + --bgColor-severe-emphasis: #bc4c00; + --bgColor-danger-muted: #ffebe9; + --bgColor-danger-emphasis: #cf222e; + --bgColor-open-muted: #dafbe1; + --bgColor-open-emphasis: #1f883d; + --bgColor-closed-muted: #ffebe9; + --bgColor-closed-emphasis: #cf222e; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #4ac26b66; + --borderColor-success-emphasis: #1a7f37; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #fb8f4466; + --borderColor-severe-emphasis: #bc4c00; + --borderColor-danger-muted: #ff818266; + --borderColor-danger-emphasis: #cf222e; + --borderColor-open-muted: #4ac26b66; + --borderColor-open-emphasis: #1a7f37; + --borderColor-closed-muted: #ff818266; + --borderColor-closed-emphasis: #cf222e; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #cf222e; + --color-ansi-red-bright: #a40e26; + --color-ansi-green: #116329; + --color-ansi-green-bright: #1a7f37; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #cf222e; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #953800; + --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #82071e; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #cf222e; + --color-prettylights-syntax-string-regexp: #116329; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #82071e; + --color-prettylights-syntax-markup-deleted-bg: #ffebe9; + --color-prettylights-syntax-markup-inserted-text: #116329; + --color-prettylights-syntax-markup-inserted-bg: #dafbe1; + --color-prettylights-syntax-markup-changed-text: #953800; + --color-prettylights-syntax-markup-changed-bg: #ffd8b5; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #dafbe1; + --color-scale-green-1: #aceebb; + --color-scale-green-2: #6fdd8b; + --color-scale-green-3: #4ac26b; + --color-scale-green-4: #2da44e; + --color-scale-green-5: #1a7f37; + --color-scale-green-6: #116329; + --color-scale-green-7: #044f1e; + --color-scale-green-8: #003d16; + --color-scale-green-9: #002d11; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #fff1e5; + --color-scale-orange-1: #ffd8b5; + --color-scale-orange-2: #ffb77c; + --color-scale-orange-3: #fb8f44; + --color-scale-orange-4: #e16f24; + --color-scale-orange-5: #bc4c00; + --color-scale-orange-6: #953800; + --color-scale-orange-7: #762c00; + --color-scale-orange-8: #5c2200; + --color-scale-orange-9: #471700; + --color-scale-red-0: #ffebe9; + --color-scale-red-1: #ffcecb; + --color-scale-red-2: #ffaba8; + --color-scale-red-3: #ff8182; + --color-scale-red-4: #fa4549; + --color-scale-red-5: #cf222e; + --color-scale-red-6: #a40e26; + --color-scale-red-7: #82071e; + --color-scale-red-8: #660018; + --color-scale-red-9: #4c0014; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; +} +@media (prefers-color-scheme: dark) { + [data-color-mode="auto"][data-dark-theme="light"], + [data-color-mode="auto"][data-dark-theme="light"] ::backdrop { + --topicTag-borderColor: #ffffff00; + --highlight-neutral-bgColor: #fff8c5; + --page-header-bgColor: #f6f8fa; + --diffBlob-addition-fgColor-text: #1f2328; + --diffBlob-addition-fgColor-num: #1f2328; + --diffBlob-addition-bgColor-num: #d1f8d9; + --diffBlob-addition-bgColor-line: #dafbe1; + --diffBlob-addition-bgColor-word: #aceebb; + --diffBlob-deletion-fgColor-text: #1f2328; + --diffBlob-deletion-fgColor-num: #1f2328; + --diffBlob-deletion-bgColor-num: #ffcecb; + --diffBlob-deletion-bgColor-line: #ffebe9; + --diffBlob-deletion-bgColor-word: #ff818266; + --diffBlob-hunk-bgColor-num: #54aeff66; + --diffBlob-expander-iconColor: #636c76; + --codeMirror-fgColor: #1f2328; + --codeMirror-bgColor: #ffffff; + --codeMirror-gutters-bgColor: #ffffff; + --codeMirror-gutterMarker-fgColor-default: #ffffff; + --codeMirror-gutterMarker-fgColor-muted: #636c76; + --codeMirror-lineNumber-fgColor: #636c76; + --codeMirror-cursor-fgColor: #1f2328; + --codeMirror-selection-bgColor: #54aeff66; + --codeMirror-activeline-bgColor: #afb8c133; + --codeMirror-matchingBracket-fgColor: #1f2328; + --codeMirror-lines-bgColor: #ffffff; + --codeMirror-syntax-fgColor-comment: #24292f; + --codeMirror-syntax-fgColor-constant: #0550ae; + --codeMirror-syntax-fgColor-entity: #8250df; + --codeMirror-syntax-fgColor-keyword: #cf222e; + --codeMirror-syntax-fgColor-storage: #cf222e; + --codeMirror-syntax-fgColor-string: #0a3069; + --codeMirror-syntax-fgColor-support: #0550ae; + --codeMirror-syntax-fgColor-variable: #953800; + --header-fgColor-default: #ffffffb3; + --header-fgColor-logo: #ffffff; + --header-bgColor: #24292f; + --header-borderColor-divider: #57606a; + --headerSearch-bgColor: #24292f; + --headerSearch-borderColor: #57606a; + --data-blue-color: #006edb; + --data-auburn-color: #9d615c; + --data-orange-color: #eb670f; + --data-yellow-color: #b88700; + --data-green-color: #30a147; + --data-teal-color: #179b9b; + --data-purple-color: #894ceb; + --data-pink-color: #ce2c85; + --data-red-color: #df0c24; + --data-gray-color: #808fa3; + --display-blue-bgColor-muted: #d1f0ff; + --display-blue-bgColor-emphasis: #006edb; + --display-blue-fgColor: #005fcc; + --display-blue-borderColor-muted: #ade1ff; + --display-blue-borderColor-emphasis: #006edb; + --display-green-bgColor-muted: #caf7ca; + --display-green-bgColor-emphasis: #2c8141; + --display-green-fgColor: #2b6e3f; + --display-green-borderColor-muted: #9ceda0; + --display-green-borderColor-emphasis: #2c8141; + --display-orange-bgColor-muted: #ffe7d1; + --display-orange-bgColor-emphasis: #b8500f; + --display-orange-fgColor: #a24610; + --display-orange-borderColor-muted: #fecfaa; + --display-orange-borderColor-emphasis: #b8500f; + --display-purple-bgColor-muted: #f1e5ff; + --display-purple-bgColor-emphasis: #894ceb; + --display-purple-fgColor: #783ae4; + --display-purple-borderColor-muted: #e6d2fe; + --display-purple-borderColor-emphasis: #894ceb; + --display-red-bgColor-muted: #ffe2e0; + --display-red-bgColor-emphasis: #df0c24; + --display-red-fgColor: #c50d28; + --display-red-borderColor-muted: #fecdcd; + --display-red-borderColor-emphasis: #df0c24; + --display-yellow-bgColor-muted: #ffec9e; + --display-yellow-bgColor-emphasis: #946a00; + --display-yellow-fgColor: #805900; + --display-yellow-borderColor-muted: #ffd642; + --display-yellow-borderColor-emphasis: #946a00; + --display-gray-bgColor-muted: #e8ecf2; + --display-gray-bgColor-emphasis: #647182; + --display-gray-fgColor: #5c6570; + --display-gray-borderColor-muted: #d2dae4; + --display-gray-borderColor-emphasis: #647182; + --display-auburn-bgColor-muted: #f2e9e9; + --display-auburn-bgColor-emphasis: #9d615c; + --display-auburn-fgColor: #8a5551; + --display-auburn-borderColor-muted: #e6d6d5; + --display-auburn-borderColor-emphasis: #9d615c; + --display-brown-bgColor-muted: #eeeae2; + --display-brown-bgColor-emphasis: #856d4c; + --display-brown-fgColor: #755f43; + --display-brown-borderColor-muted: #dfd7c8; + --display-brown-borderColor-emphasis: #856d4c; + --display-lemon-bgColor-muted: #f7eea1; + --display-lemon-bgColor-emphasis: #866e04; + --display-lemon-fgColor: #786002; + --display-lemon-borderColor-muted: #f0db3d; + --display-lemon-borderColor-emphasis: #866e04; + --display-olive-bgColor-muted: #f0f0ad; + --display-olive-bgColor-emphasis: #64762d; + --display-olive-fgColor: #56682c; + --display-olive-borderColor-muted: #dbe170; + --display-olive-borderColor-emphasis: #64762d; + --display-lime-bgColor-muted: #e3f2b5; + --display-lime-bgColor-emphasis: #527a29; + --display-lime-fgColor: #476c28; + --display-lime-borderColor-muted: #c7e580; + --display-lime-borderColor-emphasis: #527a29; + --display-pine-bgColor-muted: #bff8db; + --display-pine-bgColor-emphasis: #167e53; + --display-pine-fgColor: #156f4b; + --display-pine-borderColor-muted: #80efb9; + --display-pine-borderColor-emphasis: #167e53; + --display-teal-bgColor-muted: #c7f5ef; + --display-teal-bgColor-emphasis: #127e81; + --display-teal-fgColor: #106e75; + --display-teal-borderColor-muted: #89ebe1; + --display-teal-borderColor-emphasis: #127e81; + --display-cyan-bgColor-muted: #bdf4ff; + --display-cyan-bgColor-emphasis: #007b94; + --display-cyan-fgColor: #006a80; + --display-cyan-borderColor-muted: #7ae9ff; + --display-cyan-borderColor-emphasis: #007b94; + --display-indigo-bgColor-muted: #e5e9ff; + --display-indigo-bgColor-emphasis: #5a61e7; + --display-indigo-fgColor: #494edf; + --display-indigo-borderColor-muted: #d2d7fe; + --display-indigo-borderColor-emphasis: #5a61e7; + --avatar-bgColor: #ffffff; + --avatar-borderColor: #1f232826; + --avatar-shadow: 0px 0px 0px 2px #ffffffcc; + --avatarStack-fade-bgColor-default: #afb8c1; + --avatarStack-fade-bgColor-muted: #d0d7de; + --control-bgColor-rest: #f6f8fa; + --control-bgColor-hover: #eef1f4; + --control-bgColor-active: #e7ebef; + --control-bgColor-disabled: #eaeef2b3; + --control-bgColor-selected: #f6f8fa; + --control-fgColor-rest: #24292f; + --control-fgColor-placeholder: #6e7781; + --control-fgColor-disabled: #8c959f; + --control-borderColor-rest: #d0d7de; + --control-borderColor-emphasis: #868f99; + --control-borderColor-disabled: #eaeef2b3; + --control-borderColor-selected: #f6f8fa; + --control-borderColor-success: #1a7f37; + --control-borderColor-danger: #cf222e; + --control-borderColor-warning: #bf8700; + --control-iconColor-rest: #636c76; + --control-transparent-bgColor-rest: #ffffff00; + --control-transparent-bgColor-hover: #d0d7de33; + --control-transparent-bgColor-active: #d0d7de66; + --control-transparent-bgColor-disabled: #eaeef2b3; + --control-transparent-bgColor-selected: #d0d7de33; + --control-transparent-borderColor-rest: #ffffff00; + --control-transparent-borderColor-hover: #ffffff00; + --control-transparent-borderColor-active: #ffffff00; + --control-danger-fgColor-rest: #d1242f; + --control-danger-fgColor-hover: #d1242f; + --control-danger-bgColor-hover: #ffebe9; + --control-danger-bgColor-active: #ffebe966; + --control-checked-bgColor-rest: #0969da; + --control-checked-bgColor-hover: #0860ca; + --control-checked-bgColor-active: #0757ba; + --control-checked-bgColor-disabled: #8c959f; + --control-checked-fgColor-rest: #ffffff; + --control-checked-fgColor-disabled: #ffffff; + --control-checked-borderColor-rest: #0969da; + --control-checked-borderColor-hover: #0860ca; + --control-checked-borderColor-active: #0757ba; + --control-checked-borderColor-disabled: #8c959f; + --controlTrack-bgColor-rest: #eaeef2; + --controlTrack-bgColor-hover: #dee3e8; + --controlTrack-bgColor-active: #d2d8de; + --controlTrack-bgColor-disabled: #8c959f; + --controlTrack-fgColor-rest: #636c76; + --controlTrack-fgColor-disabled: #ffffff; + --controlTrack-borderColor-rest: #ffffff00; + --controlTrack-borderColor-disabled: #8c959f; + --controlKnob-bgColor-rest: #ffffff; + --controlKnob-bgColor-disabled: #eaeef2b3; + --controlKnob-bgColor-checked: #ffffff; + --controlKnob-borderColor-rest: #868f99; + --controlKnob-borderColor-disabled: #eaeef2b3; + --controlKnob-borderColor-checked: #0969da; + --counter-borderColor: #ffffff00; + --button-default-fgColor-rest: #24292f; + --button-default-bgColor-rest: #f6f8fa; + --button-default-bgColor-hover: #eef1f4; + --button-default-bgColor-active: #e7ebef; + --button-default-bgColor-selected: #e7ebef; + --button-default-bgColor-disabled: #eaeef2b3; + --button-default-borderColor-rest: #d0d7de; + --button-default-borderColor-hover: #d0d7de; + --button-default-borderColor-active: #d0d7de; + --button-default-borderColor-disabled: #eaeef2b3; + --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a; + --button-primary-fgColor-rest: #ffffff; + --button-primary-fgColor-disabled: #ffffffcc; + --button-primary-iconColor-rest: #ffffffcc; + --button-primary-bgColor-rest: #1f883d; + --button-primary-bgColor-hover: #1c8139; + --button-primary-bgColor-active: #197935; + --button-primary-bgColor-disabled: #95d8a6; + --button-primary-borderColor-rest: #1f232826; + --button-primary-borderColor-hover: #1f232826; + --button-primary-borderColor-active: #1f232826; + --button-primary-borderColor-disabled: #95d8a6; + --button-primary-shadow-selected: inset 0px 1px 0px 0px #002d114d; + --button-invisible-fgColor-rest: #0969da; + --button-invisible-fgColor-hover: #0969da; + --button-invisible-fgColor-disabled: #8c959f; + --button-invisible-iconColor-rest: #636c76; + --button-invisible-iconColor-hover: #636c76; + --button-invisible-iconColor-disabled: #8c959f; + --button-invisible-bgColor-rest: #ffffff00; + --button-invisible-bgColor-hover: #d0d7de33; + --button-invisible-bgColor-active: #d0d7de66; + --button-invisible-bgColor-disabled: #eaeef2b3; + --button-invisible-borderColor-rest: #ffffff00; + --button-invisible-borderColor-hover: #ffffff00; + --button-invisible-borderColor-disabled: #eaeef2b3; + --button-outline-fgColor-rest: #0969da; + --button-outline-fgColor-hover: #ffffff; + --button-outline-fgColor-active: #ffffff; + --button-outline-fgColor-disabled: #0969da80; + --button-outline-bgColor-rest: #f6f8fa; + --button-outline-bgColor-hover: #0969da; + --button-outline-bgColor-active: #0757ba; + --button-outline-bgColor-disabled: #f6f8fa; + --button-outline-borderColor-hover: #1f232826; + --button-outline-borderColor-active: #1f232826; + --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533; + --button-danger-fgColor-rest: #d1242f; + --button-danger-fgColor-hover: #ffffff; + --button-danger-fgColor-active: #ffffff; + --button-danger-fgColor-disabled: #d1242f80; + --button-danger-iconColor-rest: #d1242f; + --button-danger-iconColor-hover: #ffffff; + --button-danger-bgColor-rest: #f6f8fa; + --button-danger-bgColor-hover: #a40e26; + --button-danger-bgColor-active: #8b0820; + --button-danger-bgColor-disabled: #eaeef2b3; + --button-danger-borderColor-rest: #d0d7de; + --button-danger-borderColor-hover: #1f232826; + --button-danger-borderColor-active: #1f232826; + --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433; + --button-inactive-fgColor: #57606a; + --button-inactive-bgColor: #eaeef2; + --button-star-iconColor: #eac54f; + --buttonCounter-default-bgColor-rest: #afb8c133; + --buttonCounter-invisible-bgColor-rest: #afb8c133; + --buttonCounter-primary-bgColor-rest: #002d1133; + --buttonCounter-outline-bgColor-rest: #0969da1a; + --buttonCounter-outline-bgColor-hover: #ffffff33; + --buttonCounter-outline-bgColor-disabled: #0969da0d; + --buttonCounter-outline-fgColor-rest: #0550ae; + --buttonCounter-outline-fgColor-hover: #ffffff; + --buttonCounter-outline-fgColor-disabled: #0969da80; + --buttonCounter-danger-bgColor-hover: #ffffff33; + --buttonCounter-danger-bgColor-disabled: #cf222e0d; + --buttonCounter-danger-bgColor-rest: #cf222e1a; + --buttonCounter-danger-fgColor-rest: #c21c2c; + --buttonCounter-danger-fgColor-hover: #ffffff; + --buttonCounter-danger-fgColor-disabled: #d1242f80; + --focus-outlineColor: #0969da; + --focus-outline: #0969da solid 2px; + --menu-bgColor-active: #ffffff00; + --overlay-bgColor: #ffffff; + --overlay-borderColor: #d0d7de80; + --overlay-backdrop-bgColor: #8c959f33; + --selectMenu-borderColor: #ffffff00; + --selectMenu-bgColor-active: #b6e3ff; + --sideNav-bgColor-selected: #ffffff; + --skeletonLoader-bgColor: #f6f8fa; + --timelineBadge-bgColor: #eaeef2; + --treeViewItem-leadingVisual-iconColor-rest: #54aeff; + --underlineNav-borderColor-active: #fd8c73; + --underlineNav-borderColor-hover: #afb8c133; + --underlineNav-iconColor-rest: #636c76; + --selection-bgColor: #0969da33; + --fgColor-default: #1f2328; + --fgColor-muted: #636c76; + --fgColor-onEmphasis: #ffffff; + --fgColor-white: #ffffff; + --fgColor-black: #1f2328; + --fgColor-disabled: #8c959f; + --fgColor-link: #0969da; + --fgColor-neutral: #6e7781; + --fgColor-accent: #0969da; + --fgColor-success: #1a7f37; + --fgColor-attention: #9a6700; + --fgColor-severe: #bc4c00; + --fgColor-danger: #d1242f; + --fgColor-open: #1a7f37; + --fgColor-closed: #d1242f; + --fgColor-done: #8250df; + --fgColor-sponsors: #bf3989; + --bgColor-default: #ffffff; + --bgColor-muted: #f6f8fa; + --bgColor-inset: #f6f8fa; + --bgColor-emphasis: #24292f; + --bgColor-inverse: #24292f; + --bgColor-white: #ffffff; + --bgColor-black: #1f2328; + --bgColor-disabled: #eaeef2b3; + --bgColor-transparent: #ffffff00; + --bgColor-neutral-muted: #afb8c133; + --bgColor-neutral-emphasis: #6e7781; + --bgColor-accent-muted: #ddf4ff; + --bgColor-accent-emphasis: #0969da; + --bgColor-success-muted: #dafbe1; + --bgColor-success-emphasis: #1f883d; + --bgColor-attention-muted: #fff8c5; + --bgColor-attention-emphasis: #9a6700; + --bgColor-severe-muted: #fff1e5; + --bgColor-severe-emphasis: #bc4c00; + --bgColor-danger-muted: #ffebe9; + --bgColor-danger-emphasis: #cf222e; + --bgColor-open-muted: #dafbe1; + --bgColor-open-emphasis: #1f883d; + --bgColor-closed-muted: #ffebe9; + --bgColor-closed-emphasis: #cf222e; + --bgColor-done-muted: #fbefff; + --bgColor-done-emphasis: #8250df; + --bgColor-sponsors-muted: #ffeff7; + --bgColor-sponsors-emphasis: #bf3989; + --borderColor-default: #d0d7de; + --borderColor-muted: #d0d7deb3; + --borderColor-emphasis: #6e7781; + --borderColor-disabled: #eaeef2b3; + --borderColor-transparent: #ffffff00; + --borderColor-neutral-muted: #afb8c133; + --borderColor-neutral-emphasis: #6e7781; + --borderColor-accent-muted: #54aeff66; + --borderColor-accent-emphasis: #0969da; + --borderColor-success-muted: #4ac26b66; + --borderColor-success-emphasis: #1a7f37; + --borderColor-attention-muted: #d4a72c66; + --borderColor-attention-emphasis: #bf8700; + --borderColor-severe-muted: #fb8f4466; + --borderColor-severe-emphasis: #bc4c00; + --borderColor-danger-muted: #ff818266; + --borderColor-danger-emphasis: #cf222e; + --borderColor-open-muted: #4ac26b66; + --borderColor-open-emphasis: #1a7f37; + --borderColor-closed-muted: #ff818266; + --borderColor-closed-emphasis: #cf222e; + --borderColor-done-muted: #c297ff66; + --borderColor-done-emphasis: #8250df; + --borderColor-sponsors-muted: #ff80c866; + --borderColor-sponsors-emphasis: #bf3989; + --color-ansi-black: #24292f; + --color-ansi-black-bright: #57606a; + --color-ansi-white: #6e7781; + --color-ansi-white-bright: #8c959f; + --color-ansi-gray: #6e7781; + --color-ansi-red: #cf222e; + --color-ansi-red-bright: #a40e26; + --color-ansi-green: #116329; + --color-ansi-green-bright: #1a7f37; + --color-ansi-yellow: #4d2d00; + --color-ansi-yellow-bright: #633c01; + --color-ansi-blue: #0969da; + --color-ansi-blue-bright: #218bff; + --color-ansi-magenta: #8250df; + --color-ansi-magenta-bright: #a475f9; + --color-ansi-cyan: #1b7c83; + --color-ansi-cyan-bright: #3192aa; + --color-prettylights-syntax-comment: #57606a; + --color-prettylights-syntax-constant: #0550ae; + --color-prettylights-syntax-constant-other-reference-link: #0a3069; + --color-prettylights-syntax-entity: #6639ba; + --color-prettylights-syntax-storage-modifier-import: #24292f; + --color-prettylights-syntax-entity-tag: #0550ae; + --color-prettylights-syntax-keyword: #cf222e; + --color-prettylights-syntax-string: #0a3069; + --color-prettylights-syntax-variable: #953800; + --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; + --color-prettylights-syntax-brackethighlighter-angle: #57606a; + --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; + --color-prettylights-syntax-invalid-illegal-bg: #82071e; + --color-prettylights-syntax-carriage-return-text: #f6f8fa; + --color-prettylights-syntax-carriage-return-bg: #cf222e; + --color-prettylights-syntax-string-regexp: #116329; + --color-prettylights-syntax-markup-list: #3b2300; + --color-prettylights-syntax-markup-heading: #0550ae; + --color-prettylights-syntax-markup-italic: #24292f; + --color-prettylights-syntax-markup-bold: #24292f; + --color-prettylights-syntax-markup-deleted-text: #82071e; + --color-prettylights-syntax-markup-deleted-bg: #ffebe9; + --color-prettylights-syntax-markup-inserted-text: #116329; + --color-prettylights-syntax-markup-inserted-bg: #dafbe1; + --color-prettylights-syntax-markup-changed-text: #953800; + --color-prettylights-syntax-markup-changed-bg: #ffd8b5; + --color-prettylights-syntax-markup-ignored-text: #eaeef2; + --color-prettylights-syntax-markup-ignored-bg: #0550ae; + --color-prettylights-syntax-meta-diff-range: #8250df; + --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; + --color-scale-black: #1f2328; + --color-scale-transparent: #ffffff00; + --color-scale-white: #ffffff; + --color-scale-gray-0: #f6f8fa; + --color-scale-gray-1: #eaeef2; + --color-scale-gray-2: #d0d7de; + --color-scale-gray-3: #afb8c1; + --color-scale-gray-4: #8c959f; + --color-scale-gray-5: #6e7781; + --color-scale-gray-6: #57606a; + --color-scale-gray-7: #424a53; + --color-scale-gray-8: #32383f; + --color-scale-gray-9: #24292f; + --color-scale-blue-0: #ddf4ff; + --color-scale-blue-1: #b6e3ff; + --color-scale-blue-2: #80ccff; + --color-scale-blue-3: #54aeff; + --color-scale-blue-4: #218bff; + --color-scale-blue-5: #0969da; + --color-scale-blue-6: #0550ae; + --color-scale-blue-7: #033d8b; + --color-scale-blue-8: #0a3069; + --color-scale-blue-9: #002155; + --color-scale-green-0: #dafbe1; + --color-scale-green-1: #aceebb; + --color-scale-green-2: #6fdd8b; + --color-scale-green-3: #4ac26b; + --color-scale-green-4: #2da44e; + --color-scale-green-5: #1a7f37; + --color-scale-green-6: #116329; + --color-scale-green-7: #044f1e; + --color-scale-green-8: #003d16; + --color-scale-green-9: #002d11; + --color-scale-yellow-0: #fff8c5; + --color-scale-yellow-1: #fae17d; + --color-scale-yellow-2: #eac54f; + --color-scale-yellow-3: #d4a72c; + --color-scale-yellow-4: #bf8700; + --color-scale-yellow-5: #9a6700; + --color-scale-yellow-6: #7d4e00; + --color-scale-yellow-7: #633c01; + --color-scale-yellow-8: #4d2d00; + --color-scale-yellow-9: #3b2300; + --color-scale-orange-0: #fff1e5; + --color-scale-orange-1: #ffd8b5; + --color-scale-orange-2: #ffb77c; + --color-scale-orange-3: #fb8f44; + --color-scale-orange-4: #e16f24; + --color-scale-orange-5: #bc4c00; + --color-scale-orange-6: #953800; + --color-scale-orange-7: #762c00; + --color-scale-orange-8: #5c2200; + --color-scale-orange-9: #471700; + --color-scale-red-0: #ffebe9; + --color-scale-red-1: #ffcecb; + --color-scale-red-2: #ffaba8; + --color-scale-red-3: #ff8182; + --color-scale-red-4: #fa4549; + --color-scale-red-5: #cf222e; + --color-scale-red-6: #a40e26; + --color-scale-red-7: #82071e; + --color-scale-red-8: #660018; + --color-scale-red-9: #4c0014; + --color-scale-purple-0: #fbefff; + --color-scale-purple-1: #ecd8ff; + --color-scale-purple-2: #d8b9ff; + --color-scale-purple-3: #c297ff; + --color-scale-purple-4: #a475f9; + --color-scale-purple-5: #8250df; + --color-scale-purple-6: #6639ba; + --color-scale-purple-7: #512a97; + --color-scale-purple-8: #3e1f79; + --color-scale-purple-9: #2e1461; + --color-scale-pink-0: #ffeff7; + --color-scale-pink-1: #ffd3eb; + --color-scale-pink-2: #ffadda; + --color-scale-pink-3: #ff80c8; + --color-scale-pink-4: #e85aad; + --color-scale-pink-5: #bf3989; + --color-scale-pink-6: #99286e; + --color-scale-pink-7: #772057; + --color-scale-pink-8: #611347; + --color-scale-pink-9: #4d0336; + --color-scale-coral-0: #fff0eb; + --color-scale-coral-1: #ffd6cc; + --color-scale-coral-2: #ffb4a1; + --color-scale-coral-3: #fd8c73; + --color-scale-coral-4: #ec6547; + --color-scale-coral-5: #c4432b; + --color-scale-coral-6: #9e2f1c; + --color-scale-coral-7: #801f0f; + --color-scale-coral-8: #691105; + --color-scale-coral-9: #510901; + --shadow-inset: inset 0px 1px 0px 0px #1f23280a; + --shadow-resting-xsmall: 0px 1px 0px 0px #1f23281a; + --shadow-resting-small: 0px 1px 0px 0px #1f23280a; + --shadow-resting-medium: 0px 3px 6px 0px #424a531f; + --shadow-floating-small: 0px 0px 0px 1px #d0d7de80, 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + --shadow-floating-medium: 0px 0px 0px 1px #d0d7de, 0px 8px 16px -4px #424a5314, 0px 4px 32px -4px #424a5314, 0px 24px 48px -12px #424a5314, 0px 48px 96px -24px #424a5314; + --shadow-floating-large: 0px 0px 0px 1px #d0d7de, 0px 40px 80px 0px #424a533d; + --shadow-floating-xlarge: 0px 0px 0px 1px #d0d7de, 0px 56px 112px 0px #424a5352; + --shadow-floating-legacy: 0px 6px 12px -3px #424a530a, 0px 6px 18px 0px #424a531f; + } +} diff --git a/_sass/@primer/primitives/dist/css/functional/typography/typography.scss b/_sass/@primer/primitives/dist/css/functional/typography/typography.scss new file mode 100644 index 00000000..4fff15d6 --- /dev/null +++ b/_sass/@primer/primitives/dist/css/functional/typography/typography.scss @@ -0,0 +1,47 @@ +:root { + --text-codeInline-size: 0.9285em; + --text-codeBlock-lineHeight: 1.5385; + --text-codeBlock-size: 0.8125rem; + --text-caption-lineHeight: 1.3333; + --text-caption-size: 0.75rem; + --text-body-lineHeight-small: 1.6666; + --text-body-lineHeight-medium: 1.4285; + --text-body-lineHeight-large: 1.5; + --text-body-size-small: 0.75rem; + --text-body-size-medium: 0.875rem; + --text-body-size-large: 1rem; + --text-subtitle-lineHeight: 1.6; + --text-subtitle-size: 1.25rem; + --text-title-lineHeight-small: 1.5; + --text-title-lineHeight-medium: 1.6; + --text-title-lineHeight-large: 1.5; + --text-title-size-small: 1rem; + --text-title-size-medium: 1.25rem; + --text-title-size-large: 2rem; + --text-display-lineHeight: 1.4; + --text-display-size: 2.5rem; + --text-display-lineBoxHeight: 3.5rem; + --fontStack-monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace; + --fontStack-sansSerif: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; + --fontStack-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; + --text-codeInline-weight: 400; + --text-codeBlock-weight: 400; + --text-caption-weight: 400; + --text-body-weight: 400; + --text-subtitle-weight: 400; + --text-title-weight-small: 600; + --text-title-weight-medium: 600; + --text-title-weight-large: 600; + --text-display-weight: 500; + --text-codeInline-shorthand: var(--text-codeInline-weight) var(--text-codeInline-size) var(--fontStack-monospace); + --text-codeBlock-shorthand: var(--text-codeBlock-weight) var(--text-codeBlock-size)/var(--text-codeBlock-lineHeight) var(--fontStack-monospace); + --text-caption-shorthand: var(--text-caption-weight) var(--text-caption-size)/var(--text-caption-lineHeight) var(--fontStack-sansSerif); + --text-body-shorthand-small: var(--text-body-weight) var(--text-body-size-small)/var(--text-body-lineHeight-small) var(--fontStack-sansSerif); + --text-body-shorthand-medium: var(--text-body-weight) var(--text-body-size-medium)/var(--text-body-lineHeight-medium) var(--fontStack-sansSerif); + --text-body-shorthand-large: var(--text-body-weight) var(--text-body-size-large)/var(--text-body-lineHeight-large) var(--fontStack-sansSerif); + --text-subtitle-shorthand: var(--text-subtitle-weight) var(--text-subtitle-size)/var(--text-subtitle-lineHeight) var(--fontStack-sansSerif); + --text-title-shorthand-small: var(--text-title-weight-small) var(--text-title-size-small)/var(--text-title-lineHeight-small) var(--fontStack-sansSerif); + --text-title-shorthand-medium: var(--text-title-weight-medium) var(--text-title-size-medium)/var(--text-title-lineHeight-medium) var(--fontStack-sansSerif); + --text-title-shorthand-large: var(--text-title-weight-large) var(--text-title-size-large)/var(--text-title-lineHeight-large) var(--fontStack-sansSerif); + --text-display-shorthand: var(--text-display-weight) var(--text-display-size)/var(--text-display-lineHeight) var(--fontStack-sansSerif); +} diff --git a/_sass/jekyll-v4-theme-primer.scss b/_sass/jekyll-v4-theme-primer.scss index 00b7ad8f..d9d77d21 100644 --- a/_sass/jekyll-v4-theme-primer.scss +++ b/_sass/jekyll-v4-theme-primer.scss @@ -1,4 +1,14 @@ +@import "@primer/primitives/dist/css/base/size/size.scss"; +@import "@primer/primitives/dist/css/base/typography/typography.scss"; +@import "@primer/primitives/dist/css/functional/size/border.scss"; +@import "@primer/primitives/dist/css/functional/size/breakpoints.scss"; +@import "@primer/primitives/dist/css/functional/size/size-coarse.scss"; +@import "@primer/primitives/dist/css/functional/size/size-fine.scss"; +@import "@primer/primitives/dist/css/functional/size/size.scss"; +@import "@primer/primitives/dist/css/functional/size/viewport.scss"; +@import "@primer/primitives/dist/css/functional/typography/typography.scss"; + @import "@primer/css/color-modes/index.scss"; @import "@primer/css/support/index.scss"; @import "@primer/css/base/index.scss"; diff --git a/script/install b/script/install index 15960e75..9c4fc830 100755 --- a/script/install +++ b/script/install @@ -13,8 +13,23 @@ if test -e "_sass/normalize.css/normalize.css"; then mv -f _sass/normalize.css/normalize.css _sass/normalize.css/normalize.scss fi +# All of the primitives are CSS, which Sass doesn't like. Convert to scss. +for file in $(find _sass/@primer/primitives/dist/css -name "*.css"); do + mv -f ${file} ${file%.css}.scss +done + # Add our own theme scss file for consistency of naming in `assets/style.scss` content=' +@import "@primer/primitives/dist/css/base/size/size.scss"; +@import "@primer/primitives/dist/css/base/typography/typography.scss"; +@import "@primer/primitives/dist/css/functional/size/border.scss"; +@import "@primer/primitives/dist/css/functional/size/breakpoints.scss"; +@import "@primer/primitives/dist/css/functional/size/size-coarse.scss"; +@import "@primer/primitives/dist/css/functional/size/size-fine.scss"; +@import "@primer/primitives/dist/css/functional/size/size.scss"; +@import "@primer/primitives/dist/css/functional/size/viewport.scss"; +@import "@primer/primitives/dist/css/functional/typography/typography.scss"; + @import "@primer/css/color-modes/index.scss"; @import "@primer/css/support/index.scss"; @import "@primer/css/base/index.scss"; diff --git a/script/update b/script/update index 692bf654..9b47a18d 100755 --- a/script/update +++ b/script/update @@ -8,5 +8,6 @@ rm -Rf _sass/@primer npm update npx primer-sync _sass cp -r node_modules/@primer/view-components _sass/@primer # primer-sync doesn't copy this because there are no scss files +cp -r node_modules/@primer/primitives/dist/css _sass/@primer/primitives/dist # primer-sync doesn't copy this because there are no scss files rm -rf node_modules