.theme-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(var(--primer-breakpoint-xsmall), auto));
  grid-gap: 1px;
}

.theme-wrap .preview-wrap {
  /* Lookbook border color */
  outline: 1px solid #d4d4d8;
  padding-bottom: 40px;
}

@media (max-width: calc(20rem * 4)) {
  .theme-wrap {
    grid-template-columns: repeat(3, minmax(var(--primer-breakpoint-xsmall), auto));
  }
}

@media (max-width: calc(20rem * 3)) {
  .theme-wrap {
    grid-template-columns: repeat(2, minmax(var(--primer-breakpoint-xsmall), auto));
  }
}

@media (max-width: calc(20rem * 2)) {
  .theme-wrap {
    display: block;
  }
}

.theme-name {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--bgColor-muted);
  padding: var(--base-size-4) var(--base-size-8);
  font: var(--primer-text-caption-shorthand);
}

.preview-wrap {
  position: relative;
  padding: 16px;
}

:root,[data-color-mode="light"][data-light-theme*="light"],[data-color-mode="dark"][data-dark-theme*="light"] {
  --csstools-color-scheme--light: initial;
  color-scheme: light
}

@media(prefers-color-scheme: light) {
  [data-color-mode="auto"][data-light-theme*="light"] {
      --csstools-color-scheme--light:initial;
      color-scheme:light
  }
}

@media(prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme*="light"] {
      --csstools-color-scheme--light:initial;
      color-scheme:light
  }
}

[data-color-mode="light"][data-light-theme*="dark"],[data-color-mode="dark"][data-dark-theme*="dark"] {
  --csstools-color-scheme--light:  ;
  color-scheme: dark
}

@media(prefers-color-scheme: light) {
  [data-color-mode="auto"][data-light-theme*="dark"] {
      --csstools-color-scheme--light: ;
      color-scheme:dark
  }
}

@media(prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme*="dark"] {
      --csstools-color-scheme--light: ;
      color-scheme:dark
  }
}

[data-color-mode] {
  color: var(--fgColor-default, var(--color-fg-default));
  background-color: var(--bgColor-default, var(--color-canvas-default))
}

@media(forced-colors: active) {
  body {
      --color-accent-emphasis: Highlight;
      --color-fg-on-emphasis: LinkText;
      --fgColor-onEmphasis: LinkText;
      --fgColor-accent: Highlight
  }
}

/* CSS component styles here */

/* alpha */

/* stylelint-disable selector-max-compound-selectors */

/* stylelint-disable selector-max-specificity */

/* stylelint-disable max-nesting-depth */

:root {
  --actionListContent-paddingBlock: var(--control-medium-paddingBlock);
}

/* ActionList */

/* stylelint-disable-next-line selector-max-type */

action-list {
  display: block;
}

/* stylelint-disable-next-line selector-max-type */

nav-list {
  display: block;
}

.ActionListHeader {
  margin-bottom: var(--base-size-16);
  margin-left: var(--base-size-8);
}

/* <ul> */

.ActionListWrap {
  list-style: none;
}

.ActionListWrap--inset,
.ActionListWrap--inset[popover] {
  padding: var(--base-size-8);
}

/* list dividers */

.ActionListWrap--divided .ActionListItem-label::before {
    position: absolute;
    /* stylelint-disable-next-line primer/spacing */
    top: calc(-1 * var(--actionListContent-paddingBlock));
    display: block;
    width: 100%;
    height: 1px;
    content: '';
    /* stylelint-disable-next-line primer/colors */
    background: var(--borderColor-muted);
  }

/* if descriptionWrap--inline exists, move pseudo divider to wrapper */

:is(.ActionListWrap--divided .ActionListItem-descriptionWrap--inline)::before {
      position: absolute;
      /* stylelint-disable-next-line primer/spacing */
      top: calc(-1 * var(--actionListContent-paddingBlock));
      display: block;
      width: 100%;
      height: var(--borderWidth-thin);
      content: '';
      /* stylelint-disable-next-line primer/colors */
      background: var(--borderColor-muted);
    }

/* unset the default label pseudo */

:is(.ActionListWrap--divided .ActionListItem-descriptionWrap--inline) .ActionListItem-label::before {
      content: unset;
    }

/* hide divider if item is active */

:is(.ActionListWrap--divided .ActionListItem--navActive) .ActionListItem-label::before,:is(.ActionListWrap--divided .ActionListItem--navActive) + .ActionListItem .ActionListItem-label::before {
      visibility: hidden;
    }

/* hide if item is first of type with label::before, or is the first item after a sectionDivider */

.ActionListItem:first-of-type .ActionListItem-label::before,
.ActionList-sectionDivider + .ActionListItem .ActionListItem-label::before {
  visibility: hidden;
}

/* hide if item is first of type with label::before, or is the first item after a sectionDivider */

.ActionListItem:first-of-type .ActionListItem-descriptionWrap--inline::before,
.ActionList-sectionDivider + .ActionListItem .ActionListItem-descriptionWrap--inline::before {
  visibility: hidden;
}

/* ActionList::Item */

.ActionListItem {
  position: relative;
  list-style: none;
  background-color: var(--control-transparent-bgColor-rest);
  border-radius: var(--borderRadius-medium);

  /* state */
}

.ActionListItem:hover,.ActionListItem:active {
    cursor: pointer;
  }

/* hide dividers  */

@media (hover: hover) {
      .ActionListItem:hover .ActionListItem-label::before,.ActionListItem:hover + .ActionListItem .ActionListItem-label::before {
        visibility: hidden;
      }

      .ActionListItem:hover .ActionListItem-descriptionWrap--inline::before,.ActionListItem:hover + .ActionListItem .ActionListItem-descriptionWrap--inline::before {
        visibility: hidden;
      }
  }

/* Make sure that the first visible item isn't a divider */

.ActionListItem[hidden] + .ActionList-sectionDivider {
    display: none;
  }

/* collapse styles here */

/* first child */

.ActionListItem.ActionListItem--hasSubItem > .ActionListContent {
      z-index: 1;
    }

@media (hover: hover) {
        :is(.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):hover {
          background-color: var(--control-transparent-bgColor-hover);
        }
      }

:is(.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):active {
        background-color: var(--control-transparent-bgColor-active);
      }

/* only hover li without list as children */

@media (hover: hover) {
      :is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):hover {
        cursor: pointer;
        background-color: var(--control-transparent-bgColor-hover);
      }

        :is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):hover:not(.ActionListItem--navActive,:focus-visible) {
          /* Support for "Windows high contrast mode" */
          outline: solid var(--borderWidth-thin) transparent;
          outline-offset: calc(-1 * var(--borderWidth-thin));
          box-shadow: var(--boxShadow-thin) var(--control-transparent-borderColor-active);
        }
    }

:is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):active {
      background: var(--control-transparent-bgColor-active);
    }

:is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):active:not(.ActionListItem--navActive) {
        /* Support for "Windows high contrast mode" https:sarahmhigley.com/writing/whcm-quick-tips/ */
        outline: solid var(--borderWidth-thin) transparent;
        outline-offset: calc(-1 * var(--borderWidth-thin));
        box-shadow: var(--boxShadow-thin) var(--control-transparent-borderColor-active);
      }

:is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):active .ActionListItem-label::before,:is(.ActionListItem:not(.ActionListItem--hasSubItem),.ActionListItem.ActionListItem--hasSubItem > .ActionListContent):active + .ActionListItem .ActionListItem-label::before {
        visibility: hidden;
      }

/* Autocomplete [aria-selected] items */

.ActionListItem[aria-selected='true'] {
    font-weight: var(--base-text-weight-normal);
    background: var(--control-transparent-bgColor-selected);
  }

@media (hover: hover) {
      .ActionListItem[aria-selected='true']:hover {
        background-color: var(--control-transparent-bgColor-hover);
      }
    }

.ActionListItem[aria-selected='true']::before,.ActionListItem[aria-selected='true'] + .ActionListItem::before {
      visibility: hidden;
    }

/* blue accent line */

.ActionListItem[aria-selected='true']::after {
      position: absolute;
      top: calc(50% - 12px);
      left: calc(-1 * var(--base-size-4));
      width: var(--base-size-4);
      height: var(--base-size-24);
      content: '';
      background: var(--borderColor-accent-emphasis);
      border-radius: var(--borderRadius-medium);
    }

/* active state [aria-current] */

.ActionListItem.ActionListItem--navActive {
    /* provides a visual indication of the current item for Windows high-contrast mode */
    outline: 2px solid transparent;
  }

.ActionListItem.ActionListItem--navActive:not(.ActionListItem--subItem) .ActionListItem-label {
        font-weight: var(--base-text-weight-semibold);
      }

.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger) {
      background: var(--control-transparent-bgColor-selected);
    }

@media (hover: hover) {
        .ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):hover {
          background-color: var(--control-transparent-bgColor-hover);
        }
      }

.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger)::before,.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger) + .ActionListItem::before {
        visibility: hidden;
      }

/* blue accent line  */

.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger)::after {
        position: absolute;
        top: calc(50% - 12px);
        left: calc(-1 * var(--base-size-8));
        width: var(--base-size-4);
        height: var(--base-size-24);
        content: '';
        background: var(--borderColor-accent-emphasis);
        border-radius: var(--borderRadius-medium);
      }

/* disabled */

:is(:is(.ActionListItem.ActionListItem--disabled,.ActionListItem[aria-disabled='true']) .ActionListContent) .ActionListItem-label,:is(:is(.ActionListItem.ActionListItem--disabled,.ActionListItem[aria-disabled='true']) .ActionListContent) .ActionListItem-description {
        color: var(--control-fgColor-disabled);
      }

:is(:is(.ActionListItem.ActionListItem--disabled,.ActionListItem[aria-disabled='true']) .ActionListContent) .ActionListItem-visual {
        fill: var(--control-fgColor-disabled);
      }

@media (hover: hover) {
      :is(.ActionListItem.ActionListItem--disabled,.ActionListItem[aria-disabled='true']):hover {
        cursor: not-allowed;
        background-color: transparent;
      }
    }

/* variants */

/* danger */

.ActionListItem.ActionListItem--danger .ActionListItem-label {
      color: var(--control-danger-fgColor-rest);
    }

.ActionListItem.ActionListItem--danger .ActionListItem-visual {
      color: var(--control-danger-fgColor-rest);
    }

@media (hover: hover) {
      .ActionListItem.ActionListItem--danger:hover {
        background: var(--control-danger-bgColor-hover);
      }

        .ActionListItem.ActionListItem--danger:hover .ActionListItem-label,.ActionListItem.ActionListItem--danger:hover .ActionListItem-visual,.ActionListItem.ActionListItem--danger:hover .ActionListItem-description {
          color: var(--control-danger-fgColor-hover);
        }
    }

:is(.ActionListItem.ActionListItem--danger .ActionListContent):active {
        background: var(--control-danger-bgColor-active);
      }

:is(.ActionListItem.ActionListItem--danger .ActionListContent):active .ActionListItem-label,:is(.ActionListItem.ActionListItem--danger .ActionListContent):active .ActionListItem-visual,:is(.ActionListItem.ActionListItem--danger .ActionListContent):active .ActionListItem-description {
          color: var(--control-danger-fgColor-hover);
        }

/* button or a href */

.ActionListContent {
  position: relative;
  display: grid;
  width: 100%;
  /* stylelint-disable-next-line primer/spacing */
  padding-block: var(--actionListContent-paddingBlock);
  /* stylelint-disable-next-line primer/spacing */
  padding-inline: var(--control-medium-paddingInline-condensed);
  color: var(--control-fgColor-rest);
  text-align: left;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
  border: none;
  border-radius: var(--borderRadius-medium);
  transition: background 33.333ms linear;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  grid-template-rows: min-content;
  grid-template-areas: 'leadingAction leadingVisual label trailingVisual trailingAction';
  grid-template-columns: min-content min-content minmax(0, auto) min-content min-content;
  align-items: start;

  /* column-gap persists with empty grid-areas, margin applies only when children exist */
}

.ActionListContent > :not(:last-child) {
    /* stylelint-disable-next-line primer/spacing */
    margin-right: var(--control-medium-gap);
  }

/* state */

.ActionListContent:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/* disabled */

.ActionListContent[aria-disabled='true'] .ActionListItem-label,.ActionListContent[aria-disabled='true'] .ActionListItem-description {
      color: var(--control-fgColor-disabled);
    }

.ActionListContent[aria-disabled='true'] .ActionListItem-visual {
      fill: var(--control-fgColor-disabled);
    }

@media (hover: hover) {
      .ActionListContent[aria-disabled='true']:hover {
        cursor: not-allowed;
        background-color: transparent;
      }
    }

/* collapsible item [aria-expanded] */

/* nesting (single level)
   target items inside expanded subgroups */

@media screen and (prefers-reduced-motion: no-preference) {

.ActionListContent[aria-expanded] + .ActionList--subGroup {
        transition:
          opacity 160ms cubic-bezier(0.25, 1, 0.5, 1),
          transform 160ms cubic-bezier(0.25, 1, 0.5, 1);
    }
      }

:is(.ActionListContent[aria-expanded] + .ActionList--subGroup) .ActionListContent {
        padding-left: var(--base-size-24);
      }

/* has 16px leading visual */

:is(.ActionListContent.ActionListContent--visual16[aria-expanded] + .ActionList--subGroup) .ActionListContent {
        padding-left: var(--base-size-32);
      }

/* has 20px leading visual */

:is(.ActionListContent.ActionListContent--visual20[aria-expanded] + .ActionList--subGroup) .ActionListContent {
        padding-left: var(--base-size-36);
      }

/* has 24px leading visual */

:is(.ActionListContent.ActionListContent--visual24[aria-expanded] + .ActionList--subGroup) .ActionListContent {
        padding-left: var(--base-size-40);
      }

.ActionListContent[aria-expanded='true'] .ActionListItem-collapseIcon {
      transition: transform 120ms linear;
      transform: scaleY(-1);
    }

.ActionListContent[aria-expanded='true'] + .ActionList--subGroup {
      height: auto;
      overflow: visible;
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='true'] > .ActionListItem-label {
        font-weight: var(--base-text-weight-semibold);
      }

.ActionListContent[aria-expanded='false'] .ActionListItem-collapseIcon {
      transition: transform 120ms linear;
      transform: scaleY(1);
    }

.ActionListContent[aria-expanded='false'] + .ActionList--subGroup {
      height: 0;
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
      transform: translateY(calc(-1 * var(--base-size-16)));
    }

/* show active indicator on parent collapse if child is active */

.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='false'] {
      background: var(--control-transparent-bgColor-selected);
    }

.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='false'] .ActionListItem-label {
        font-weight: var(--base-text-weight-semibold);
      }

.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='false']::before,.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='false'] + .ActionListItem::before {
        visibility: hidden;
      }

/* blue accent line */

.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded='false']::after {
        position: absolute;
        top: calc(50% - 12px);
        left: calc(-1 * var(--base-size-8));
        width: var(--base-size-4);
        height: var(--base-size-24);
        content: '';
        background: var(--borderColor-accent-emphasis);
        border-radius: var(--borderRadius-medium);
      }

/*
  * checkbox item [aria-checked]
  * listbox [aria-selected]
  */

:is(.ActionListContent[aria-checked='true'],.ActionListContent[aria-selected='true']) .FormControl-checkbox {
      background: var(--control-checked-bgColor-rest);
      border-color: var(--control-checked-borderColor-rest);
      transition: background-color, border-color 80ms cubic-bezier(0.32, 0, 0.67, 0) 0ms; /* unchecked -> checked */
    }

:is(:is(.ActionListContent[aria-checked='true'],.ActionListContent[aria-selected='true']) .FormControl-checkbox)::before {
        visibility: visible;
        transition: visibility 0s linear 0s;
        animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards 80ms;
      }

/* singleselect checkmark */

:is(.ActionListContent[aria-checked='true'],.ActionListContent[aria-selected='true']) .ActionListItem-singleSelectCheckmark {
      visibility: visible;
    }

/* singleselect checkmark */

:is(.ActionListContent[aria-checked='false'],.ActionListContent[aria-selected='false']) .ActionListItem-singleSelectCheckmark {
      visibility: hidden;
      transition: visibility 0s linear 200ms;
    }

/* sizes */

.ActionListContent.ActionListContent--sizeLarge {
    --actionListContent-paddingBlock: var(--control-large-paddingBlock);
  }

.ActionListContent.ActionListContent--sizeXLarge {
    --actionListContent-paddingBlock: var(--control-xlarge-paddingBlock);
  }

/* On pointer:coarse (mobile), all list items are large */

@media (pointer: coarse) {

.ActionListContent {
    --actionListContent-paddingBlock: var(--control-large-paddingBlock);
}
  }

/* if leading/trailing visual, align with first line of content */

.ActionListContent.ActionListContent--blockDescription .ActionListItem-visual {
      place-self: start;
    }

/* place children on grid */

.ActionListItem-action--leading {
  grid-area: leadingAction;
}

.ActionListItem-visual--leading {
  grid-area: leadingVisual;
}

.ActionListItem-visual--trailing {
  grid-area: trailingVisual;
}

.ActionListItem-action--trailing {
  grid-area: trailingAction;
}

/* have leading visual svg filled with chosen color */

/* stylelint-disable-next-line selector-max-type */

.ActionListItem-visual--leading svg {
  fill: currentcolor;
}

/* wrapper span
 default block */

.ActionListItem-descriptionWrap {
  grid-area: label;
  display: flex;
  flex-direction: column;
  gap: var(--base-size-4);
}

.ActionListItem-descriptionWrap .ActionListItem-label {
    font-weight: var(--base-text-weight-semibold);
  }

/* inline */

.ActionListItem-descriptionWrap--inline {
  position: relative;
  flex-direction: row;
  align-items: baseline;
  gap: var(--base-size-8);
}

/* description */

.ActionListItem-description {
  font-size: var(--text-body-size-small);
  font-weight: var(--base-text-weight-normal);
  line-height: var(--text-body-lineHeight-small);
  color: var(--fgColor-muted);
}

/* helper for grid alignment with multi-line content
 span wrapping svg or text */

.ActionListItem-visual,
.ActionListItem-action {
  display: flex;
  min-height: var(--control-medium-lineBoxHeight);
  color: var(--fgColor-muted);
  pointer-events: none;
  fill: var(--fgColor-muted);
  align-items: center;
}

/* text */

.ActionListItem-label {
  position: relative;
  font-size: var(--text-body-size-medium);
  font-weight: var(--base-text-weight-normal);
  line-height: var(--text-body-lineHeight-medium);
  color: var(--fgColor-default);
  grid-area: label;
}

.ActionListItem-label--truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* nested lists (only supports 1 level currently)
 target ActionListItem--subItem for padding-left to maintain :active :after state */

.ActionListItem--subItem > .ActionListContent > .ActionListItem-label {
  font-size: var(--text-body-size-small);
  line-height: var(--text-body-lineHeight-small);
}

/* trailing action icon button */

.ActionListItem--withActions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.ActionListItem-trailingAction {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* show trailing action button on hover */

.ActionListItem--trailingActionHover .ActionListItem-trailingAction {
    visibility: hidden;
  }

:is(.ActionListItem--trailingActionHover:hover,.ActionListItem--trailingActionHover:focus-within) .ActionListItem-trailingAction {
      visibility: visible;
    }

/* ActionList::Divider */

/* with children */

.ActionList-sectionDivider:not(:empty) {
    display: flex;
    font-size: var(--text-body-size-small);
    font-weight: var(--base-text-weight-semibold);
    line-height: var(--text-body-lineHeight-small);
    color: var(--fgColor-muted);
    flex-direction: column;
    /* stylelint-disable-next-line primer/spacing */
    padding-inline: var(--actionListContent-paddingBlock);
    padding-block: var(--base-size-8);
  }

/* no children */

.ActionList-sectionDivider:empty {
    display: block;
    height: var(--borderWidth-thin);
    padding: 0;
    /* stylelint-disable-next-line primer/spacing */
    margin-block-start: calc(var(--base-size-8) - var(--borderWidth-thin));
    margin-block-end: var(--base-size-8);
    margin-inline: calc(-1 * var(--base-size-8));
    list-style: none;
    /* stylelint-disable-next-line primer/colors */
    background: var(--borderColor-muted);
    border: 0;
  }

.ActionList-sectionDivider .ActionList-sectionDivider-title {
    font-size: var(--text-body-size-small);
    font-weight: var(--base-text-weight-semibold);
    color: var(--fgColor-muted);
    align-self: flex-start;
  }

.ActionList-sectionDivider--filled {
  /* stylelint-disable-next-line primer/spacing */
  margin-block-start: calc(var(--base-size-8) - var(--borderWidth-thin));
  margin-block-end: var(--base-size-8);
  margin-inline: calc(-1 * var(--base-size-8));
  background: var(--bgColor-muted);
  border-top: solid var(--borderWidth-thin) var(--borderColor-muted, var(--color-action-list-item-inline-divider));
  border-bottom: solid var(--borderWidth-thin) var(--borderColor-muted, var(--color-action-list-item-inline-divider));

  /* if no children, treat as divider */
}

.ActionList-sectionDivider--filled:empty {
    height: var(--base-size-8);
    box-sizing: border-box;
  }

.ActionList-sectionDivider--filled:first-child {
    margin-block-start: 0;
  }

/* autocomplete */

/* This file can be deprecated when AutoComplete is upstreamed to PVC + rolled out to dotcom https://github.com/github/primer/issues/796
** AutoComplete relies on FormControl, Overlay and ActionList CSS */

/* Stacked label (default) */

.autocomplete-label-stacked {
  display: block;
  margin-bottom: var(--base-size-6);
}

/* Inline label (non-default) */

.autocomplete-label-inline {
  display: inline;
  margin-right: var(--base-size-6);
}

/* Switch to stacked at smaller viewport */

@media (max-width: 543.98px) {
  .autocomplete-label-inline {
    display: block;
    margin-bottom: var(--base-size-6);
  }
}

/* Wrapper for the input and result elements to ensure alignment */

.autocomplete-body {
  position: relative;
  display: inline;
}

/* Wrapper and conditional styles for when an icon is added */

.autocomplete-embedded-icon-wrap {
  display: inline-flex;
  padding: var(--base-size-4) var(--base-size-8);
  align-items: center;
}

.autocomplete-embedded-icon-wrap:focus-within {
    border-color: var(--borderColor-accent-emphasis);

    border-color: var(--focus-outlineColor);

    outline: none;

    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);
  }

.autocomplete-embedded-icon-wrap .form-control {
    padding: 0;
    margin-left: var(--base-size-8);
    border: none;
    box-shadow: none;
  }

:is(.autocomplete-embedded-icon-wrap .form-control):focus {
      box-shadow: none;
    }

:is(.autocomplete-embedded-icon-wrap .form-control):focus-visible {
      box-shadow: none;
    }

/* A pop up list of items used to show autocompleted results */

.autocomplete-results {
  position: absolute;
  left: 0;
  z-index: 99;
  width: max-content;
  min-width: 100%;
  max-height: 20em;
  overflow-y: auto;
  font-size: var(--text-codeBlock-size);
  list-style: none;
  background: var(--overlay-bgColor);
  border: var(--borderWidth-thin) solid var(--borderColor-default);
  border-radius: var(--borderRadius-medium);
  box-shadow: var(--shadow-resting-medium);
}

/* One of the items that appears within an autocomplete group
** Bold black text on white background */

.autocomplete-item {
  display: block;
  width: 100%;
  padding: var(--base-size-4) var(--base-size-8);
  overflow: hidden;
  font-weight: var(--base-text-weight-semibold);
  color: var(--fgColor-default);
  text-align: left;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--overlay-bgColor);
  border: 0;
}

.autocomplete-item:hover {
    color: var(--fgColor-onEmphasis);
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--bgColor-accent-emphasis);

    /* Inherit color on all child elements to ensure enough contrast */
  }

.autocomplete-item:hover * {
      color: inherit !important;
    }

.autocomplete-item.selected,.autocomplete-item[aria-selected='true'],.autocomplete-item.navigation-focus {
    color: var(--fgColor-onEmphasis);
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--bgColor-accent-emphasis);

    /* Inherit color on all child elements to ensure enough contrast */
  }

:is(.autocomplete-item.selected,.autocomplete-item[aria-selected='true'],.autocomplete-item.navigation-focus) * {
      color: inherit !important;
    }

/* Banner alert */

.Banner {
  position: relative;
  display: grid;
  padding: var(--base-size-8);
  color: var(--fgColor-default);
  background-image: linear-gradient(var(--bgColor-accent-muted), var(--bgColor-accent-muted));
  border: var(--borderWidth-thin) solid var(--borderColor-accent-muted);
  border-radius: var(--borderRadius-medium);
  grid-auto-flow: column;
  grid-template-areas: 'visual message actions close';
  grid-template-columns: min-content 1fr minmax(0, auto) min-content;
  grid-template-rows: min-content;

  /* `sm` breakpoint variation */
}

@media (max-width: 543.98px) {

.Banner {
    grid-template-areas:
      'visual message close'
      '. actions actions';
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: min-content min-content;
}

    .Banner .Banner-actions {
      margin: var(--base-size-8) 0 0 var(--base-size-8);
    }
  }

/* Elements */

.Banner .Banner-visual {
    display: grid;
    padding: var(--base-size-6) var(--base-size-8);
    grid-area: visual;
    align-self: start;
  }

:is(.Banner .Banner-visual) > .octicon {
      margin-block: calc(var(--base-size-4) / 2);
    }

:is(.Banner .Banner-visual) > * {
      align-self: center;
    }

.Banner .Banner-message {
    padding: var(--base-size-6) var(--base-size-8);
    grid-area: message;
    align-self: center;

    /* stylelint-disable-next-line selector-max-type */
  }

:is(.Banner .Banner-message) p:last-child {
      margin-bottom: 0;
    }

:is(.Banner .Banner-message) .Banner-title:not(:only-child) {
      margin-bottom: 0;
      font-weight: var(--base-text-weight-semibold);
    }

.Banner .Banner-actions {
    grid-area: actions;
  }

:is(.Banner .Banner-actions):last-child {
      align-self: center;
    }

/* is this used anywhere? could not find any use, but unsure */

.Banner .Banner-close {
    grid-area: close;
    /* stylelint-disable-next-line primer/spacing */
    margin-left: var(--controlStack-medium-gap-condensed);
  }

.Banner .Banner-visual .octicon {
    color: var(--fgColor-accent);
  }

.Banner.Banner--warning {
    color: var(--fgColor-default);
    background-image: linear-gradient(var(--bgColor-attention-muted), var(--bgColor-attention-muted));
    border-color: var(--borderColor-attention-muted);
  }

.Banner.Banner--warning .Banner-visual .octicon {
      color: var(--fgColor-attention);
    }

.Banner.Banner--error {
    color: var(--fgColor-default);
    background-image: linear-gradient(var(--bgColor-danger-muted), var(--bgColor-danger-muted));
    border-color: var(--borderColor-danger-muted);
  }

.Banner.Banner--error .Banner-visual .octicon {
      color: var(--fgColor-danger);
    }

.Banner.Banner--success {
    color: var(--fgColor-default);
    background-image: linear-gradient(var(--bgColor-success-muted), var(--bgColor-success-muted));
    border-color: var(--borderColor-success-muted);
  }

.Banner.Banner--success .Banner-visual .octicon {
      color: var(--fgColor-success);
    }

.Banner.Banner--upsell {
    color: var(--fgColor-default);
    background-image: linear-gradient(var(--bgColor-done-muted), var(--bgColor-done-muted));
    border-color: var(--borderColor-done-muted);
  }

.Banner.Banner--upsell .Banner-visual .octicon {
      color: var(--fgColor-done);
    }

/* Full-width */

.Banner.Banner--full {
    /* stylelint-disable-next-line primer/spacing */
    margin-top: calc(var(--borderWidth-thin) * -1);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

@media (max-width: 767.98px) {
    .Banner.Banner--full-whenNarrow {
      /* stylelint-disable-next-line primer/spacing */
      margin-top: calc(var(--borderWidth-thin) * -1);
      border-right: 0;
      border-left: 0;
      border-radius: 0;
    }
  }

.btn-mktg {
  position: relative;
  z-index: 1;
  display: inline-block;

  /* stylelint-disable-next-line primer/spacing */
  padding: 0.9rem 1.5rem 1.1rem;

  /* stylelint-disable-next-line primer/typography */
  font-size: 1rem;
  font-weight: var(--base-text-weight-semibold);
  /* stylelint-disable-next-line primer/typography */
  line-height: 1;
  /* stylelint-disable-next-line primer/colors */
  color: var(--bgColor-default);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
          user-select: none;
  /* stylelint-disable-next-line primer/colors */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%),
    var(--color-mktg-btn-bg) !important;
  border: 0;

  /* stylelint-disable-next-line primer/borders */
  border-radius: 0.375rem;
  transition: box-shadow 0.2s, outline 0.2s ease;
  appearance: none !important;
}

.btn-mktg::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';

    /* stylelint-disable-next-line primer/colors */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.2s;
    background-blend-mode: normal;
  }

.btn-mktg:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: var(--color-mktg-btn-shadow-hover) !important;
  }

:is(.btn-mktg:hover,.btn-mktg:focus,.btn-mktg:focus-visible,.btn-mktg.focus)::before {
      opacity: 1;
    }

/* fallback :focus state */

.btn-mktg:focus {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;

    /* remove fallback :focus if :focus-visible is supported */
  }

.btn-mktg:focus:not(:focus-visible) {
      outline: solid 1px transparent;
      box-shadow: none;
    }

/* default focus state */

.btn-mktg:focus-visible {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;
  }

.btn-mktg:active::before {
      opacity: 0.5 !important;
    }

.btn-mktg.disabled,.btn-mktg[disabled] {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
  }

.btn-muted-mktg {
  color: var(--fgColor-default) !important;
  background: none !important;
  /* stylelint-disable-next-line primer/box-shadow */
  box-shadow: var(--color-mktg-btn-shadow-outline);
}

.btn-muted-mktg::before {
    display: none;
  }

.btn-muted-mktg:hover {
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: var(--color-mktg-btn-shadow-hover-muted) !important;
  }

.btn-muted-mktg:active {
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: var(--fgColor-default) 0 0 0 3px inset !important;
  }

.btn-muted-mktg:disabled {
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: var(--fgColor-default) 0 0 0 1px inset !important;
  }

.btn-subtle-mktg {
  color: var(--fgColor-default) !important;
  background: none !important;
  box-shadow: none !important;
}

.btn-subtle-mktg::before {
    background: none !important;
  }

.btn-subtle-mktg:hover {
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: var(--color-mktg-btn-shadow-hover-muted) !important;
  }

.btn-signup-mktg {
  /* stylelint-disable-next-line primer/colors */
  color: #fff;

  /* stylelint-disable-next-line primer/colors */
  background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%), rgb(46, 164, 79) !important;
}

.btn-signup-mktg::before {
    /* stylelint-disable-next-line primer/colors */
    background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%) !important;
  }

/* fallback :focus state */

.btn-signup-mktg:focus {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;

    /* remove fallback :focus if :focus-visible is supported */
  }

.btn-signup-mktg:focus:not(:focus-visible) {
      outline: solid 1px transparent;
      box-shadow: none;
    }

/* default focus state */

.btn-signup-mktg:focus-visible {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;
  }

/* Size modifiers */

.btn-small-mktg {
  /* stylelint-disable-next-line primer/spacing */
  padding: 0.625rem 1rem 0.8125rem;
}

.btn-large-mktg {
  /* stylelint-disable-next-line primer/spacing */
  padding: 16px 30px 20px !important;

  /* stylelint-disable-next-line primer/typography */
  font-size: 1.25rem;
}

/* stylelint-disable selector-max-specificity */

/* stylelint-disable selector-max-compound-selectors */

/* stylelint-disable max-nesting-depth */

/* stylelint-disable primer/responsive-widths */

/* stylelint-disable primer/spacing */

/* stylelint-disable selector-no-qualifying-type */

/* stylelint-disable selector-max-type */

/* Overlay */

/* The --dialog-scrollgutter property is used only on the body element to
 * simulate scrollbar-gutter:stable. This property is not and should not
 * be used elsewhere in the DOM. There is a performance penalty to
 * setting inherited properties which can cause a large style recalc to
 * occur, so it benefits us to prevent inheritance for this property.
 * See https://web.dev/blog/at-property-performance
 */

@property --dialog-scrollgutter {
  initial-value: 0;
  inherits: false;
  syntax: "<length>";
}

body:has(dialog:modal.Overlay--disableScroll) {
  padding-right: var(--dialog-scrollgutter) !important;
  overflow: hidden !important;
}

dialog.Overlay:not([open]) {
  display: none;
}

.Overlay--hidden {
  display: none !important;
}

.Overlay--visibilityHidden {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

/* This is for @oddbird/popover-polyfill;
 * A FOUC occurs in browsers which do not support :popover-open.
 * We can try to hide the popover if :popover-open is not supported.
 */

@supports not selector(:popover-open) {
  [popover]:not(.\:popover-open) {
    display: none;
  }
}

.Overlay {
  position: static;
  display: flex;
  width: min(var(--overlay-width), 100vw - 2rem);
  min-width: 192px;
  max-height: min(calc(100vh - 2rem), var(--overlay-height));
  padding: 0;
  margin: auto;
  color: var(--fgColor-default);
  white-space: normal;
  flex-direction: column;
  background-color: var(--overlay-bgColor);
  border: 0;
  border-radius: var(--borderRadius-large);
  box-shadow: var(--shadow-floating-small);
  opacity: 1;
  inset: 0;
}

.Overlay.Overlay--size-auto {
    min-width: 192px;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }

.Overlay.Overlay--size-full {
    width: 100vw;
    height: 100vh;
  }

.Overlay.Overlay--size-xsmall {
    --overlay-width: 192px;

    max-height: calc(100vh - 2rem);
  }

.Overlay.Overlay--size-small {
    --overlay-height: 256px;
    --overlay-width: 320px;
  }

.Overlay.Overlay--size-small-portrait {
    --overlay-height: 432px;
    --overlay-width: 320px;
  }

.Overlay.Overlay--size-medium {
    --overlay-height: 320px;
    --overlay-width: 480px;
  }

.Overlay.Overlay--size-medium-portrait {
    --overlay-height: 600px;
    --overlay-width: 480px;
  }

.Overlay.Overlay--size-large {
    --overlay-height: 432px;
    --overlay-width: 640px;
  }

.Overlay.Overlay--size-xlarge {
    --overlay-height: 600px;
    --overlay-width: 960px;
  }

.Overlay.Overlay--height-auto {
    height: auto;
  }

.Overlay.Overlay--placement-left,.Overlay.Overlay--placement-right {
    position: fixed;
    height: 100%;
    max-height: unset;
  }

@media screen and (prefers-reduced-motion: no-preference) {

.Overlay.Overlay--motion-scaleFade,.Overlay.Overlay--placement-left,.Overlay.Overlay--placement-right {
      animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-scaleFade;
  }
    }

.Overlay.Overlay--placement-left {
    inset: 0 auto 0 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    animation-name: Overlay--motion-slideInRight;
  }

.Overlay.Overlay--placement-right {
    inset: 0 0 0 auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    animation-name: Overlay--motion-slideInLeft;
  }

/* start deprecate in favor of Alpha::Dialog */

.Overlay.Overlay--height-xsmall {
    height: min(192px, 100vh - 2rem);
  }

.Overlay.Overlay--height-small {
    height: min(256px, 100vh - 2rem);
  }

.Overlay.Overlay--height-medium {
    height: min(320px, 100vh - 2rem);
  }

.Overlay.Overlay--height-large {
    height: min(432px, 100vh - 2rem);
  }

.Overlay.Overlay--height-xlarge {
    height: min(600px, 100vh - 2rem);
  }

.Overlay.Overlay--width-auto {
    width: auto;
  }

.Overlay.Overlay--width-small {
    width: min(256px, 100vw - 2rem);
  }

.Overlay.Overlay--width-medium {
    width: min(320px, 100vw - 2rem);
  }

.Overlay.Overlay--width-large {
    width: min(480px, 100vw - 2rem);
  }

.Overlay.Overlay--width-xlarge {
    width: min(640px, 100vw - 2rem);
  }

.Overlay.Overlay--width-xxlarge {
    width: min(960px, 100vw - 2rem);
  }

/* end deprecate */

.Overlay:modal {
  position: fixed;
}

@keyframes Overlay--motion-scaleFade {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* for <form> element that wraps entire contents of overlay */

.Overlay-form {
  display: flex;
  overflow: auto;
  flex-direction: column;
  flex-grow: 1;
}

.Overlay-header {
  z-index: 1;
  display: flex;
  color: var(--fgColor-default);
  flex-direction: column;
}

.Overlay-header.Overlay-header--divided {
    padding-bottom: var(--stack-padding-condensed);
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: inset 0 calc(var(--borderWidth-thin) * -1) var(--borderColor-default);
  }

:is(.Overlay-header.Overlay-header--large .Overlay-headerContentWrap) .Overlay-titleWrap {
        gap: var(--stack-gap-condensed);
      }

:is(:is(.Overlay-header.Overlay-header--large .Overlay-headerContentWrap) .Overlay-titleWrap) .Overlay-title {
          font-size: var(--text-title-size-medium);
        }

:is(:is(.Overlay-header.Overlay-header--large .Overlay-headerContentWrap) .Overlay-titleWrap) .Overlay-description {
          font-size: var(--text-body-size-medium);
        }

.Overlay-header .Overlay-headerContentWrap {
    display: flex;
    align-items: flex-start;
    gap: var(--stack-gap-condensed);
    padding: var(--stack-gap-condensed) var(--stack-gap-condensed) 0 var(--stack-gap-condensed);
  }

:is(.Overlay-header .Overlay-headerContentWrap) .Overlay-actionWrap {
      display: flex;
      flex-direction: row;
      gap: var(--stack-gap-condensed);
    }

:is(.Overlay-header .Overlay-headerContentWrap) .Overlay-titleWrap {
      display: flex;
      padding: calc(var(--stack-gap-condensed) * 0.75) 0 calc(var(--stack-gap-condensed) * 0.75)
        var(--stack-gap-condensed);
      flex-direction: column;
      flex-grow: 1;
      gap: var(--control-small-gap);
    }

:is(:is(.Overlay-header .Overlay-headerContentWrap) .Overlay-titleWrap) .Overlay-title {
        margin: 0;
        font-size: var(--text-body-size-medium);
        font-weight: var(--base-text-weight-semibold);
      }

:is(:is(.Overlay-header .Overlay-headerContentWrap) .Overlay-titleWrap) .Overlay-description {
        margin: 0;
        font-size: var(--text-body-size-small);
        font-weight: var(--base-text-weight-normal);
        color: var(--fgColor-muted);
      }

.Overlay-headerFilter {
  padding: var(--stack-gap-condensed) var(--stack-gap-condensed) 0 var(--stack-gap-condensed);
}

/* generic body content slot */

.Overlay-body {
  padding: var(--stack-padding-normal);
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: var(--text-body-size-medium);
  flex-grow: 1;
}

.Overlay-body.Overlay-body--paddingCondensed {
    padding: var(--stack-padding-condensed);
    padding-top: 0;
  }

.Overlay-body.Overlay-body--paddingNone {
    padding: 0;
  }

/* generic footer slot */

.Overlay-footer {
  z-index: 1;
  display: flex;
  padding: 0 var(--stack-padding-normal) var(--stack-padding-normal) var(--stack-padding-normal);
  flex-direction: row;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.Overlay-footer.Overlay-footer--divided {
    padding-top: var(--stack-padding-normal);
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: inset 0 var(--borderWidth-thin) var(--borderColor-default);
  }

.Overlay-footer.Overlay-footer--alignStart {
    justify-content: flex-start;
    gap: var(--stack-gap-condensed);
  }

.Overlay-footer.Overlay-footer--alignCenter {
    justify-content: center;
    gap: var(--stack-gap-condensed);
  }

.Overlay-footer.Overlay-footer--alignEnd {
    justify-content: flex-end;
    gap: var(--stack-gap-condensed);
  }

/* TODO: replace with refactored IconButton */

.Overlay-closeButton {
  position: relative;
  display: grid;
  width: var(--base-size-32);
  height: var(--base-size-32);
  padding: 0;
  color: var(--fgColor-muted);
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
  border: var(--borderWidth-thin) solid transparent;
  border-radius: var(--borderRadius-medium);
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
  place-content: center;
  align-self: flex-start;
  flex-shrink: 0;
}

.Overlay-closeButton:hover,.Overlay-closeButton:focus {
    background-color: var(--button-default-bgColor-hover);
    /* stylelint-disable-next-line primer/colors */
    border: var(--borderWidth-thin) solid var(--control-bgColor-hover);
  }

/* Override .close-button's `border: 0` that triggers a border-color transition on hover  */

.Overlay-closeButton.close-button {
    border: var(--borderWidth-thin) solid transparent;
  }

/* variants must be mixins so we can extend within a media query (@extend is not supported inside media queries) */

/* border-radius repeats within placement options to ensure the original radius is reset when two classes co-exist */

/* full width */

.Overlay--full {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  border-radius: unset !important;
  flex-grow: 1;
}

/* responsive variants */

/* --viewportRange-narrowLandscape */

@media (max-width: 767px) {
  .Overlay.Overlay--placement-left-whenNarrow, .Overlay--placement-right-whenNarrow {
    position: fixed;
    height: 100%;
    max-height: 100vh;
  }

  .Overlay.Overlay--placement-left-whenNarrow {
    inset: 0 auto 0 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    animation-name: Overlay--motion-slideInLeft;
  }

  .Overlay.Overlay--placement-right-whenNarrow {
    inset: 0 0 0 auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    animation-name: Overlay--motion-slideInLeft;
  }

  .Overlay.Overlay--placement-bottom-whenNarrow {
    width: 100%;
    max-width: 100vw;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    animation-name: Overlay--motion-slideUp;
    inset: auto 0 0;
  }

  .Overlay--full-whenNarrow {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: 100vh;
    border-radius: unset !important;
    flex-grow: 1;
  }
}

@keyframes Overlay--motion-slideDown {
  from {
    transform: translateY(-100%);
  }
}

@keyframes Overlay--motion-slideUp {
  from {
    transform: translateY(100%);
  }
}

@keyframes Overlay--motion-slideInRight {
  from {
    transform: translateX(-100%);
  }
}

@keyframes Overlay--motion-slideInLeft {
  from {
    transform: translateX(100%);
  }
}

/* dropdown */

.dropdown {
  position: relative;
}

.dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: '';
  border-style: solid;
  border-width: var(--borderWidth-thicker) var(--borderWidth-thicker) 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

/* Requires a positioning class (e.g., `.dropdown-menu-w`) to determine which
** way the menu should render from the element triggering it. */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 160px;
  /* stylelint-disable-next-line primer/spacing */
  padding-top: var(--control-small-paddingBlock);
  /* stylelint-disable-next-line primer/spacing */
  padding-bottom: var(--control-small-paddingBlock);
  margin-top: var(--base-size-2);
  list-style: none;
  background-color: var(--overlay-bgColor);
  background-clip: padding-box;
  border: var(--borderWidth-thin) solid var(--borderColor-default);
  border-radius: var(--borderRadius-medium);
  box-shadow: var(--shadow-floating-legacy, var(--color-shadow-large));
}

.dropdown-menu::before,.dropdown-menu::after {
    position: absolute;
    display: inline-block;
    content: '';
  }

/* caret border */

.dropdown-menu::before {
    /* stylelint-disable-next-line primer/borders */
    border: 8px solid transparent;
    border-bottom-color: var(--borderColor-default);
  }

/* caret background (should match dropdown background) */

.dropdown-menu::after {
    /* stylelint-disable-next-line primer/borders */
    border: 7px solid transparent;
    /* stylelint-disable-next-line primer/colors */
    border-bottom-color: var(--overlay-bgColor);
  }

/* stylelint-disable-next-line selector-max-type */

.dropdown-menu > ul {
    list-style: none;
  }

.dropdown-menu-no-overflow {
  width: auto;
}

.dropdown-menu-no-overflow .dropdown-item {
    /* stylelint-disable-next-line primer/spacing */
    padding: var(--control-small-paddingBlock) var(--control-medium-paddingInline-spacious);
    overflow: visible;
    text-overflow: inherit;
  }

/* Dropdown items (can be links or buttons) */

.dropdown-item {
  display: block;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--control-small-paddingBlock) var(--control-medium-paddingInline-condensed) var(--control-small-paddingBlock) var(--control-medium-paddingInline-spacious);
  overflow: hidden;
  color: var(--fgColor-default);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--fgColor-onEmphasis);
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--bgColor-accent-emphasis);
  }

.dropdown-item:hover > .octicon {
      color: inherit;
      opacity: 1;
    }

.dropdown-item:hover [class*='color-fg-'] {
      color: inherit !important;
    }

.dropdown-item:hover > .Label {
      color: inherit !important;
      border-color: currentcolor;
    }

.dropdown-item.btn-link {
    width: 100%;
    text-align: left;
  }

.dropdown-signout {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
}

.dropdown-divider {
  display: block;
  height: 0;
  /* stylelint-disable-next-line primer/spacing */
  margin: var(--stack-gap-condensed) 0;
  border-top: var(--borderWidth-thin) solid var(--borderColor-default);
}

.dropdown-header {
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--control-small-paddingBlock) var(--control-medium-paddingInline-spacious);
  font-size: var(--text-body-size-small);
  color: var(--fgColor-muted);
}

.dropdown-item[aria-checked='false'] .octicon-check {
  display: none;
}

/* Directional classes
**
** Move the menu and the caret attached to it. Requires at least one of these on
** the `.dropdown-menu` element. */

.dropdown-menu-w {
  top: 0;
  right: 100%;
  left: auto;
  width: auto;
  margin-top: 0;
  margin-right: var(--base-size-8);
}

.dropdown-menu-w::before {
    /* stylelint-disable-next-line primer/spacing */
    top: 10px;
    /* stylelint-disable-next-line primer/spacing */
    right: -16px;
    left: auto;
    border-color: transparent;
    border-left-color: var(--borderColor-default);
  }

.dropdown-menu-w::after {
    top: var(--base-size-12);
    /* stylelint-disable-next-line primer/spacing */
    right: -14px;
    left: auto;
    border-color: transparent;
    /* stylelint-disable-next-line primer/colors */
    border-left-color: var(--overlay-bgColor);
  }

.dropdown-menu-e {
  top: 0;
  left: 100%;
  width: auto;
  margin-top: 0;
  margin-left: var(--base-size-8);
}

.dropdown-menu-e::before {
    /* stylelint-disable-next-line primer/spacing */
    top: 10px;
    /* stylelint-disable-next-line primer/spacing */
    left: -16px;
    border-color: transparent;
    border-right-color: var(--borderColor-default);
  }

.dropdown-menu-e::after {
    top: var(--base-size-12);
    /* stylelint-disable-next-line primer/spacing */
    left: -14px;
    border-color: transparent;
    /* stylelint-disable-next-line primer/colors */
    border-right-color: var(--overlay-bgColor);
  }

.dropdown-menu-ne {
  top: auto;
  bottom: 100%;
  left: 0;
  margin-bottom: var(--base-size-4);
}

.dropdown-menu-ne::before,.dropdown-menu-ne::after {
    top: auto;
    right: auto;
  }

.dropdown-menu-ne::before {
    /* stylelint-disable-next-line primer/spacing */
    bottom: -8px;
    left: var(--base-size-8);
    /* stylelint-disable-next-line primer/borders */
    border-top: 8px solid var(--borderColor-default);
    /* stylelint-disable-next-line primer/borders */
    border-right: 8px solid transparent;
    border-bottom: 0;
    /* stylelint-disable-next-line primer/borders */
    border-left: 8px solid transparent;
  }

.dropdown-menu-ne::after {
    /* stylelint-disable-next-line primer/spacing */
    bottom: -7px;
    /* stylelint-disable-next-line primer/spacing */
    left: 10px;
    /* stylelint-disable-next-line primer/borders, primer/colors */
    border-top: 7px solid var(--overlay-bgColor);
    /* stylelint-disable-next-line primer/borders */
    border-right: 7px solid transparent;
    border-bottom: 0;
    /* stylelint-disable-next-line primer/borders */
    border-left: 7px solid transparent;
  }

.dropdown-menu-s {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

.dropdown-menu-s::before {
    /* stylelint-disable-next-line primer/spacing */
    top: -16px;
    right: 50%;
    transform: translateX(50%);
  }

.dropdown-menu-s::after {
    /* stylelint-disable-next-line primer/spacing */
    top: -14px;
    right: 50%;
    transform: translateX(50%);
  }

.dropdown-menu-sw {
  right: 0;
  left: auto;
}

.dropdown-menu-sw::before {
    /* stylelint-disable-next-line primer/spacing */
    top: -16px;
    right: var(--base-size-8);
    left: auto;
  }

.dropdown-menu-sw::after {
    /* stylelint-disable-next-line primer/spacing */
    top: -14px;
    /* stylelint-disable-next-line primer/spacing */
    right: 10px;
    left: auto;
  }

.dropdown-menu-se::before {
    /* stylelint-disable-next-line primer/spacing */
    top: -16px;
    left: var(--base-size-8);
  }

.dropdown-menu-se::after {
    /* stylelint-disable-next-line primer/spacing */
    top: -14px;
    /* stylelint-disable-next-line primer/spacing */
    left: 10px;
  }

/* Layout */

.Layout {
  display: grid;

  --Layout-sidebar-width: 220px;
  --Layout-gutter: 16px;
}

@media (max-width: calc(544px - 0.02px)) {

.Layout {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;
}
    .Layout .Layout-sidebar,.Layout .Layout-divider,.Layout .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
    .Layout.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
      grid-row: 1;
    }

    .Layout.Layout--sidebarPosition-flowRow-start .Layout-main {
      grid-row: 2 / span 2;
    }
    .Layout.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
      grid-row: 2 / span 2;
    }

    .Layout.Layout--sidebarPosition-flowRow-end .Layout-main {
      grid-row: 1;
    }
    .Layout.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
      display: none;
    }
    .Layout.Layout--divided {
    --Layout-gutter: 0;
  }
    .Layout.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }

    .Layout-divider--flowRow-hidden:is(.Layout.Layout--divided .Layout-divider) {
      display: none;
    }

    .Layout-divider--flowRow-shallow:is(.Layout.Layout--divided .Layout-divider) {
      height: 8px;
      margin-right: 0;
      background: var(--bgColor-inset);
      border-color: var(--borderColor-default);
      border-style: solid;
      border-width: var(--borderWidth-thin) 0;
    }

    .Layout.Layout--divided .Layout-main {
      grid-row: 3 / span 1;
    }
      .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
        grid-row: 3 / span 1;
      }

      .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
        grid-row: 1;
      }
  }

@media (max-width: calc(768px - 0.02px)) {

.Layout.Layout--flowRow-until-md {
      grid-auto-flow: row;
      grid-template-columns: 1fr !important;
  }
      .Layout.Layout--flowRow-until-md .Layout-sidebar,.Layout.Layout--flowRow-until-md .Layout-divider,.Layout.Layout--flowRow-until-md .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
    .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
      grid-row: 1;
    }

    .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-main {
      grid-row: 2 / span 2;
    }
    .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
      grid-row: 2 / span 2;
    }

    .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-main {
      grid-row: 1;
    }
    .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
      display: none;
    }
      .Layout.Layout--flowRow-until-md.Layout--divided {
    --Layout-gutter: 0;
  }
    .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }

    .Layout-divider--flowRow-hidden:is(.Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider) {
      display: none;
    }

    .Layout-divider--flowRow-shallow:is(.Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider) {
      height: 8px;
      margin-right: 0;
      background: var(--bgColor-inset);
      border-color: var(--borderColor-default);
      border-style: solid;
      border-width: var(--borderWidth-thin) 0;
    }

    .Layout.Layout--flowRow-until-md.Layout--divided .Layout-main {
      grid-row: 3 / span 1;
    }
      .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
        grid-row: 3 / span 1;
      }

      .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
        grid-row: 1;
      }
    }

@media (max-width: calc(1012px - 0.02px)) {

.Layout.Layout--flowRow-until-lg {
      grid-auto-flow: row;
      grid-template-columns: 1fr !important;
  }
      .Layout.Layout--flowRow-until-lg .Layout-sidebar,.Layout.Layout--flowRow-until-lg .Layout-divider,.Layout.Layout--flowRow-until-lg .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
    .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
      grid-row: 1;
    }

    .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-main {
      grid-row: 2 / span 2;
    }
    .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
      grid-row: 2 / span 2;
    }

    .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-main {
      grid-row: 1;
    }
    .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
      display: none;
    }
      .Layout.Layout--flowRow-until-lg.Layout--divided {
    --Layout-gutter: 0;
  }
    .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }

    .Layout-divider--flowRow-hidden:is(.Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider) {
      display: none;
    }

    .Layout-divider--flowRow-shallow:is(.Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider) {
      height: 8px;
      margin-right: 0;
      background: var(--bgColor-inset);
      border-color: var(--borderColor-default);
      border-style: solid;
      border-width: var(--borderWidth-thin) 0;
    }

    .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-main {
      grid-row: 3 / span 1;
    }
      .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
        grid-row: 3 / span 1;
      }

      .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
        grid-row: 1;
      }
    }

.Layout {

  /* Flow as column */

  grid-auto-flow: column;
  grid-template-columns: auto 0 minmax(0, calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))); /* sidebar column, separator, main column */
  grid-gap: var(--Layout-gutter);
}

.Layout .Layout-sidebar {
    grid-column: 1;
  }

.Layout .Layout-divider {
    display: none;
  }

.Layout .Layout-main {
    grid-column: 2 / span 2;
  }

/* Gutter spacing */

@media (min-width: 1012px) {

.Layout {
    --Layout-gutter: 24px;
}
  }

.Layout.Layout--gutter-none {
    --Layout-gutter: 0px;
  }

.Layout.Layout--gutter-condensed {
    --Layout-gutter: 16px;
  }

@media (min-width: 1012px) {

.Layout.Layout--gutter-spacious {
      --Layout-gutter: 32px;
  }
    }

@media (min-width: 1280px) {

.Layout.Layout--gutter-spacious {
      --Layout-gutter: 40px;
  }
    }

/* Sidebar width */

@media (min-width: 544px) {

.Layout {
    --Layout-sidebar-width: 220px;
}
  }

@media (min-width: 768px) {

.Layout {
    --Layout-sidebar-width: 256px;
}
  }

@media (min-width: 1012px) {

.Layout {
    --Layout-sidebar-width: 296px;
}
  }

@media (min-width: 768px) {

.Layout.Layout--sidebar-narrow {
      --Layout-sidebar-width: 240px;
  }
    }

@media (min-width: 1012px) {

.Layout.Layout--sidebar-narrow {
      --Layout-sidebar-width: 256px;
  }
    }

@media (min-width: 1012px) {

.Layout.Layout--sidebar-wide {
      --Layout-sidebar-width: 320px;
  }
    }

@media (min-width: 1280px) {

.Layout.Layout--sidebar-wide {
      --Layout-sidebar-width: 336px;
  }
    }

/* Sidebar position */

.Layout.Layout--sidebarPosition-start .Layout-sidebar {
      grid-column: 1;
    }

.Layout.Layout--sidebarPosition-start .Layout-main {
      grid-column: 2 / span 2;
    }

.Layout.Layout--sidebarPosition-end {
    grid-template-columns: minmax(0, calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))) 0 auto;
  }

.Layout.Layout--sidebarPosition-end .Layout-main {
      grid-column: 1;
    }

.Layout.Layout--sidebarPosition-end .Layout-sidebar {
      grid-column: 2 / span 2;
    }

/* Sidebar divider */

.Layout.Layout--divided .Layout-divider {
      display: block;
      grid-column: 2;
      width: 1px;
      /* stylelint-disable-next-line primer/spacing */
      margin-right: -1px;
      /* stylelint-disable-next-line primer/colors */
      background: var(--borderColor-default);
    }

.Layout.Layout--divided .Layout-main {
      grid-column: 3 / span 1;
    }

.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-sidebar {
        grid-column: 3 / span 1;
      }

.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-main {
        grid-column: 1;
      }

.Layout-divider {
  display: none;
  width: 1px;
}

.Layout-sidebar {
  width: var(--Layout-sidebar-width);
}

.Layout-main {
  min-width: 0;

  /* Centered main column
  ** FIXME: right-aligned sidebar */
}

.Layout-main .Layout-main-centered-md,.Layout-main .Layout-main-centered-lg,.Layout-main .Layout-main-centered-xl {
    margin-right: auto;
    margin-left: auto;
  }

:is(.Layout-main .Layout-main-centered-md,.Layout-main .Layout-main-centered-lg,.Layout-main .Layout-main-centered-xl) > .container-md,:is(.Layout-main .Layout-main-centered-md,.Layout-main .Layout-main-centered-lg,.Layout-main .Layout-main-centered-xl) > .container-lg,:is(.Layout-main .Layout-main-centered-md,.Layout-main .Layout-main-centered-lg,.Layout-main .Layout-main-centered-xl) > .container-xl {
      margin-left: 0;
    }

.Layout-main .Layout-main-centered-md {
    max-width: calc(var(--breakpoint-medium) + var(--Layout-sidebar-width) + var(--Layout-gutter));
  }

.Layout-main .Layout-main-centered-lg {
    max-width: calc(var(--breakpoint-large) + var(--Layout-sidebar-width) + var(--Layout-gutter));
  }

.Layout-main .Layout-main-centered-xl {
    max-width: calc(var(--breakpoint-xlarge) + var(--Layout-sidebar-width) + var(--Layout-gutter));
  }

/* menu */

/* A menu on the side of a page, defaults to left side. e.g. github.com/about */

.menu {
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: var(--stack-gap-normal);
  list-style: none;
  background-color: var(--bgColor-default);
  border: var(--borderWidth-thin) solid var(--borderColor-default);
  border-radius: var(--borderRadius-medium);
}

.menu-item {
  position: relative;
  display: block;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--control-medium-paddingInline-condensed) var(--control-medium-paddingInline-spacious);
  color: var(--fgColor-default);
  border-bottom: var(--borderWidth-thin) solid var(--borderColor-default);
}

.menu-item:first-child {
    border-top: 0;
    border-top-left-radius: var(--borderRadius-medium);
    border-top-right-radius: var(--borderRadius-medium);
  }

.menu-item:first-child::before {
      border-top-left-radius: var(--borderRadius-medium);
    }

.menu-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: var(--borderRadius-medium);
    border-bottom-left-radius: var(--borderRadius-medium);
  }

.menu-item:last-child::before {
      border-bottom-left-radius: var(--borderRadius-medium);
    }

.menu-item:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--bgColor-neutral-muted);
  }

.menu-item:active {
    background-color: var(--bgColor-muted);
  }

.menu-item.selected,.menu-item[aria-selected='true'],.menu-item[aria-current]:not([aria-current='false']) {
    cursor: default;
    background-color: var(--menu-bgColor-active);
  }

:is(.menu-item.selected,.menu-item[aria-selected='true'],.menu-item[aria-current]:not([aria-current='false']))::before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 2px;
      content: '';
      /* stylelint-disable-next-line primer/colors */
      background-color: var(--underlineNav-borderColor-active);
    }

.menu-item .octicon {
    width: 16px;
    /* stylelint-disable-next-line primer/spacing */
    margin-right: var(--control-medium-gap);
    color: var(--fgColor-muted);
    text-align: center;
  }

.menu-item .Counter {
    float: right;
    /* stylelint-disable-next-line primer/spacing */
    margin-left: var(--control-small-gap);
  }

.menu-item .menu-warning {
    float: right;
    color: var(--fgColor-attention);
  }

.menu-item .avatar {
    float: left;
    /* stylelint-disable-next-line primer/spacing */
    margin-right: var(--control-small-gap);
  }

.menu-item.alert .Counter {
      color: var(--fgColor-danger);
    }

.menu-heading {
  display: block;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--control-medium-paddingInline-condensed) var(--control-medium-paddingInline-spacious);
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: var(--base-text-weight-semibold);
  color: var(--fgColor-default);
  border-bottom: var(--borderWidth-thin) solid var(--borderColor-default);
}

.menu-heading:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

.menu-heading:first-child {
    border-top-left-radius: var(--borderRadius-medium);
    border-top-right-radius: var(--borderRadius-medium);
  }

.menu-heading:last-child {
    border-bottom: 0;
    border-bottom-right-radius: var(--borderRadius-medium);
    border-bottom-left-radius: var(--borderRadius-medium);
  }

/* SegmentedControl */

.SegmentedControl {
  --segmentedControl-item-padding: var(--control-small-paddingBlock);
  --overlay-offset: 0.5rem;

  display: inline-flex;
  list-style: none;
  background-color: var(--controlTrack-bgColor-rest, var(--color-segmented-control-bg));
  border-color: var(--controlTrack-borderColor-rest, transparent);
  border-radius: var(--borderRadius-medium);
}

.SegmentedControl--iconOnly .Button--iconOnly.Button--small,.SegmentedControl--iconOnly .Button--iconOnly.Button--medium {
    width: 100%;
    padding-inline: 0 !important;
  }

/* sizes */

.SegmentedControl--small {
  --segmentedControl-item-padding: var(--control-xsmall-paddingBlock);
}

.SegmentedControl--small .SegmentedControl-item {
    height: var(--control-small-size);
  }

:is(.SegmentedControl--small .SegmentedControl-item) .Button {
      /* stylelint-disable-next-line primer/spacing */
      padding-inline: calc(var(--control-xsmall-paddingInline-normal) - var(--segmentedControl-item-padding));
    }

.SegmentedControl--small.SegmentedControl--iconOnly .SegmentedControl-item {
      width: var(--control-small-size);
    }

.SegmentedControl--medium .SegmentedControl-item {
    height: var(--control-medium-size);
  }

.SegmentedControl--medium.SegmentedControl--iconOnly .SegmentedControl-item {
      width: var(--control-medium-size);
    }

/* item */

.SegmentedControl-item {
  position: relative;
  display: inline-flex;
  height: var(--control-medium-size);
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--segmentedControl-item-padding);
  border: var(--borderWidth-thin) solid transparent;
  border-radius: var(--borderRadius-medium);
  justify-content: center;

  /* button color overrides */
}

:is(.SegmentedControl-item .Button--invisible):hover:not(:disabled) {
      background-color: var(--controlTrack-bgColor-hover, var(--color-action-list-item-default-hover-bg));
    }

:is(.SegmentedControl-item .Button--invisible):active:not(:disabled) {
      background-color: var(--controlTrack-bgColor-active, var(--color-action-list-item-default-active-bg));
    }

/* Selected ---------------------------------------- */

.SegmentedControl-item.SegmentedControl-item--selected {
    background-color: var(--controlKnob-bgColor-rest, var(--color-segmented-control-button-bg));
    border-color: var(--controlKnob-borderColor-rest, var(--color-segmented-control-button-selected-border));
  }

.SegmentedControl-item.SegmentedControl-item--selected .Button {
      font-weight: var(--base-text-weight-semibold);
    }

:is(.SegmentedControl-item.SegmentedControl-item--selected .Button):hover {
        background-color: transparent;
      }

.SegmentedControl-item.SegmentedControl-item--selected::before {
      border-color: transparent !important;
    }

.SegmentedControl-item.SegmentedControl-item--selected + .SegmentedControl-item::before {
      border-color: transparent;
    }

/* renders a visibly hidden "copy" of the text in bold, reserving box space for when text becomes bold on selected */

.SegmentedControl-item .Button-label[data-content]::before {
    display: block;
    height: 0;
    font-weight: var(--base-text-weight-semibold);
    visibility: hidden;
    content: attr(data-content);
  }

/* Separator lines */

.SegmentedControl-item:not(:first-child)::before {
      position: absolute;
      inset: 0 0 0 -1px;
      /* stylelint-disable-next-line primer/spacing */
      margin-top: var(--control-medium-paddingBlock);
      /* stylelint-disable-next-line primer/spacing */
      margin-bottom: var(--control-medium-paddingBlock);
      content: '';
      border-left: var(--borderWidth-thin) solid var(--borderColor-default);
    }

/* Button ----------------------------------------- */

.SegmentedControl-item .Button {
    width: 100%;
    min-width: fit-content;
    height: 100%;
    font-weight: var(--base-text-weight-normal);
    border: 0;
    /* stylelint-disable-next-line primer/borders */
    border-radius: calc(var(--borderRadius-medium) - var(--segmentedControl-item-padding) / 2);
    /* stylelint-disable-next-line primer/spacing */
    padding-inline: calc(var(--control-medium-paddingInline-normal) - var(--segmentedControl-item-padding));
  }

:is(.SegmentedControl-item .Button):focus-visible {
      /* stylelint-disable-next-line primer/borders */
      border-radius: calc(var(--borderRadius-medium) - var(--segmentedControl-item-padding) / 1);
      outline-offset: calc(var(--segmentedControl-item-padding) - var(--borderWidth-thin));
    }

.SegmentedControl-item .Button--invisible.Button--invisible-noVisuals .Button-label {
    color: var(--button-default-fgColor-rest);
  }

.SegmentedControl-item .Button-content {
    flex: 1 1 auto;
    align-self: stretch;
  }

/* use ellipsis with the assumption that icon only variant will be used when not enough space is available */

.SegmentedControl-item .Button-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

/* fullWidth */

.SegmentedControl--fullWidth {
  display: flex;
}

.SegmentedControl--fullWidth .SegmentedControl-item {
    flex: 1;
    justify-content: center;
  }

.SelectPanel-loadingPanel {
  min-height: min(calc(var(--overlay-height) - 10rem), calc(100vh - 2rem));
}

.SelectPanel-emptyPanel {
  min-height: min(calc(var(--overlay-height) - 23rem), calc(100vh - 2rem));
  align-items: center;
  display: flex;
  justify-content: center;
}

.Stack {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  align-content: flex-start;
  gap: var(--stack-gap, var(--stack-gap-normal, 1rem));

  /* non-responsive values */
}

.Stack[data-padding='none'],.Stack[data-padding-narrow='none'] {
    padding: 0;
  }

.Stack[data-padding='condensed'],.Stack[data-padding-narrow='condensed'] {
    /* stylelint-disable-next-line primer/spacing */
    padding: var(--stack-padding-condensed, 8px);
  }

.Stack[data-padding='normal'],.Stack[data-padding-narrow='normal'] {
    /* stylelint-disable-next-line primer/spacing */
    padding: var(--stack-padding-normal, 16px);
  }

.Stack[data-padding='spacious'],.Stack[data-padding-narrow='spacious'] {
    /* stylelint-disable-next-line primer/spacing */
    padding: var(--stack-padding-spacious, 24px);
  }

.Stack[data-direction='horizontal'],.Stack[data-direction-narrow='horizontal'] {
    flex-flow: row;
  }

.Stack[data-direction='vertical'],.Stack[data-direction-narrow='vertical'] {
    flex-flow: column;
  }

.Stack[data-gap='none'],.Stack[data-gap-narrow='none'] {
    --stack-gap: var(--stack-gap-none, 0);
  }

.Stack[data-gap='condensed'],.Stack[data-gap-narrow='condensed'] {
    --stack-gap: var(--stack-gap-condensed, 0.5rem);
  }

.Stack[data-gap='normal'],.Stack[data-gap-narrow='normal'] {
    --stack-gap: var(--stack-gap-normal, 1rem);
  }

.Stack[data-gap='spacious'],.Stack[data-gap-narrow='spacious'] {
    --stack-gap: var(--stack-gap-spacious, 1.5rem);
  }

.Stack[data-align='start'],.Stack[data-align-narrow='start'] {
    align-items: flex-start;
  }

.Stack[data-align='center'],.Stack[data-align-narrow='center'] {
    align-items: center;
  }

.Stack[data-align='end'],.Stack[data-align-narrow='end'] {
    align-items: flex-end;
  }

.Stack[data-align='baseline'],.Stack[data-align-narrow='baseline'] {
    align-items: baseline;
  }

.Stack[data-justify='start'],.Stack[data-justify-narrow='start'] {
    justify-content: flex-start;
  }

.Stack[data-justify='center'],.Stack[data-justify-narrow='center'] {
    justify-content: center;
  }

.Stack[data-justify='end'],.Stack[data-justify-narrow='end'] {
    justify-content: flex-end;
  }

.Stack[data-justify='space-between'],.Stack[data-justify-narrow='space-between'] {
    justify-content: space-between;
  }

.Stack[data-justify='space-evenly'],.Stack[data-justify-narrow='space-evenly'] {
    justify-content: space-evenly;
  }

.Stack[data-wrap='wrap'],.Stack[data-wrap-narrow='wrap'] {
    flex-wrap: wrap;
  }

.Stack[data-wrap='nowrap'],.Stack[data-wrap-narrow='nowrap'] {
    flex-wrap: nowrap;
  }

/* @custom-media --veiwportRange-regular */

@media (min-width: 48rem) {
    .Stack[data-padding-regular='none'] {
      padding: 0;
    }

    .Stack[data-padding-regular='condensed'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-condensed, 8px);
    }

    .Stack[data-padding-regular='normal'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-normal, 16px);
    }

    .Stack[data-padding-regular='spacious'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-spacious, 24px);
    }

    .Stack[data-direction-regular='horizontal'] {
      flex-flow: row;
    }

    .Stack[data-direction-regular='vertical'] {
      flex-flow: column;
    }

    .Stack[data-gap-regular='none'] {
      --stack-gap: var(--stack-gap-none, 0);
    }

    .Stack[data-gap-regular='condensed'] {
      --stack-gap: var(--stack-gap-condensed, 0.5rem);
    }

    .Stack[data-gap-regular='normal'] {
      --stack-gap: var(--stack-gap-normal, 1rem);
    }

    .Stack[data-gap-regular='spacious'] {
      --stack-gap: var(--stack-gap-spacious, 1.5rem);
    }

    .Stack[data-align-regular='start'] {
      align-items: flex-start;
    }

    .Stack[data-align-regular='center'] {
      align-items: center;
    }

    .Stack[data-align-regular='end'] {
      align-items: flex-end;
    }

    .Stack[data-align-regular='baseline'] {
      align-items: baseline;
    }

    .Stack[data-justify-regular='start'] {
      justify-content: flex-start;
    }

    .Stack[data-justify-regular='center'] {
      justify-content: center;
    }

    .Stack[data-justify-regular='end'] {
      justify-content: flex-end;
    }

    .Stack[data-justify-regular='space-between'] {
      justify-content: space-between;
    }

    .Stack[data-justify-regular='space-evenly'] {
      justify-content: space-evenly;
    }

    .Stack[data-wrap-regular='wrap'] {
      flex-wrap: wrap;
    }

    .Stack[data-wrap-regular='nowrap'] {
      flex-wrap: nowrap;
    }
  }

/* @custom-media --viewportRange-wide */

@media (min-width: 87.5rem) {
    .Stack[data-padding-wide='none'] {
      padding: 0;
    }

    .Stack[data-padding-wide='condensed'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-condensed, 8px);
    }

    .Stack[data-padding-wide='normal'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-normal, 16px);
    }

    .Stack[data-padding-wide='spacious'] {
      /* stylelint-disable-next-line primer/spacing */
      padding: var(--stack-padding-spacious, 24px);
    }

    .Stack[data-direction-wide='horizontal'] {
      flex-flow: row;
    }

    .Stack[data-direction-wide='vertical'] {
      flex-flow: column;
    }

    .Stack[data-gap-wide='none'] {
      --stack-gap: var(--stack-gap-none, 0);
    }

    .Stack[data-gap-wide='condensed'] {
      --stack-gap: var(--stack-gap-condensed, 0.5rem);
    }

    .Stack[data-gap-wide='normal'] {
      --stack-gap: var(--stack-gap-normal, 1rem);
    }

    .Stack[data-gap-wide='spacious'] {
      --stack-gap: var(--stack-gap-spacious, 1.5rem);
    }

    .Stack[data-align-wide='start'] {
      align-items: flex-start;
    }

    .Stack[data-align-wide='center'] {
      align-items: center;
    }

    .Stack[data-align-wide='end'] {
      align-items: flex-end;
    }

    .Stack[data-align-wide='baseline'] {
      align-items: baseline;
    }

    .Stack[data-justify-wide='start'] {
      justify-content: flex-start;
    }

    .Stack[data-justify-wide='center'] {
      justify-content: center;
    }

    .Stack[data-justify-wide='end'] {
      justify-content: flex-end;
    }

    .Stack[data-justify-wide='space-between'] {
      justify-content: space-between;
    }

    .Stack[data-justify-wide='space-evenly'] {
      justify-content: space-evenly;
    }

    .Stack[data-wrap-wide='wrap'] {
      flex-wrap: wrap;
    }

    .Stack[data-wrap-wide='nowrap'] {
      flex-wrap: nowrap;
    }
  }

.StackItem {
  flex: 0 1 auto;
  min-inline-size: 0;
}

.StackItem[data-grow='true'],.StackItem[data-grow-narrow='true'] {
    flex-grow: 1;
  }

/* @custom-media --veiwportRange-regular */

@media (min-width: 48rem) {
    .StackItem[data-grow-regular='true'] {
      flex-grow: 1;
    }

    .StackItem[data-grow-regular='false'] {
      flex-grow: 0;
    }
  }

/* @custom-media --viewportRange-wide */

@media (min-width: 87.5rem) {
    .StackItem[data-grow-wide='true'] {
      flex-grow: 1;
    }

    .StackItem[data-grow-wide='false'] {
      flex-grow: 0;
    }
  }

/* tabnav */

/* Outer wrapper */

.tabnav {
  margin-top: 0;
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: var(--stack-gap-normal);
  border-bottom: var(--borderWidth-thin) solid var(--borderColor-default);
}

.tabnav-tabs {
  display: flex;
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: calc(var(--borderWidth-thin) * -1);
  overflow: hidden;
}

.tabnav-tab {
  display: inline-block;
  flex-shrink: 0;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--base-size-8) var(--control-medium-paddingInline-spacious);
  font-size: var(--text-body-size-medium);
  /* stylelint-disable-next-line primer/typography */
  line-height: 23px;
  color: var(--fgColor-muted);
  -webkit-text-decoration: none;
  text-decoration: none;
  background-color: transparent;
  border: var(--borderWidth-thin) solid transparent;
  border-bottom: 0;
  transition: color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}

.tabnav-tab.selected,.tabnav-tab[aria-selected='true'],.tabnav-tab[aria-current]:not([aria-current='false']) {
    color: var(--fgColor-default);
    background-color: var(--bgColor-default); /* cover bottom border */
    border-color: var(--borderColor-default);
    border-radius: var(--borderRadius-medium) var(--borderRadius-medium) 0 0;
  }

:is(.tabnav-tab.selected,.tabnav-tab[aria-selected='true'],.tabnav-tab[aria-current]:not([aria-current='false'])) .octicon {
      color: inherit;
    }

.tabnav-tab:hover {
    color: var(--fgColor-default);
    -webkit-text-decoration: none;
    text-decoration: none;
    transition-duration: 0.1s;
  }

.tabnav-tab:focus,.tabnav-tab:focus-visible {
    border-radius: var(--borderRadius-medium) var(--borderRadius-medium) 0 0 !important;
    outline-offset: -6px;
  }

.tabnav-tab:active {
    color: var(--fgColor-muted);
  }

.tabnav-tab .octicon {
    /* stylelint-disable-next-line primer/spacing */
    margin-right: var(--control-small-gap);
    color: var(--fgColor-muted);
  }

.tabnav-tab .Counter {
    /* stylelint-disable-next-line primer/spacing */
    margin-left: var(--control-small-gap);
    color: inherit;
  }

/* Tabnav extras
**
** Tabnav extras are non-tab elements that sit in the tabnav. Usually they're
** inline text or links. */

.tabnav-extra {
  display: inline-block;
  /* stylelint-disable-next-line primer/spacing */
  padding-top: 10px;
  /* stylelint-disable-next-line primer/spacing */
  margin-left: 10px;
  font-size: var(--text-body-size-small);
  color: var(--fgColor-muted);
}

.tabnav-extra > .octicon {
    margin-right: var(--base-size-2);
  }

/* When tabnav-extra are anchors */

/* stylelint-disable-next-line selector-no-qualifying-type, selector-max-type */

a.tabnav-extra:hover {
  color: var(--fgColor-accent);
  -webkit-text-decoration: none;
  text-decoration: none;
}

/* Tabnav buttons
**
** For when there are multiple buttons, space them out appropriately. Requires
** the buttons to be floated or inline-block. */

.tabnav-btn {
  /* stylelint-disable-next-line primer/spacing */
  margin-left: var(--controlStack-medium-gap-condensed);
}

/* stylelint-disable selector-max-type */

/* stylelint-disable max-nesting-depth */

/* stylelint-disable selector-max-specificity */

/* stylelint-disable primer/spacing */

/* FormControl */

/* groups label, field, caption and inline error message */

.FormControl {
  display: inline-flex;
  flex-direction: column;
  gap: var(--base-size-4);
}

/* fill container */

.FormControl--fullWidth {
  display: flex;
}

/* <label> */

.FormControl-label {
  font-size: var(--text-body-size-medium);
  font-weight: var(--base-text-weight-semibold);
  line-height: var(--text-body-lineHeight-medium);
  color: var(--fgColor-default);
}

/* optional caption */

.FormControl-caption {
  margin-bottom: 0;
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-lineHeight);
  color: var(--fgColor-muted);
}

/* inline validation message */

.FormControl-inlineValidation {
  display: flex;
  font-size: var(--text-caption-size);
  font-weight: var(--base-text-weight-semibold);
  line-height: var(--text-caption-lineHeight);
  color: var(--control-danger-fgColor-rest);
  fill: var(--control-danger-fgColor-rest);
  flex-direction: row;
  align-items: flex-start;
  gap: var(--base-size-4);
}

.FormControl-inlineValidation p {
    margin-bottom: 0;
  }

.FormControl-inlineValidation--success {
  color: var(--fgColor-success);
  fill: var(--fgColor-success);
}

.FormControl-inlineValidation--visual {
  align-items: center;
  display: flex;
  min-height: var(--base-size-16);
}

.FormControl-spacingWrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--stack-gap-normal);
}

.FormControl-horizontalGroup {
  display: flex;
  column-gap: 0.5rem;
}

/* shared among all form control components (input, select, textarea, checkbox, radio) */

/* TextInput structure
** ===================
**
** .FormControl
** ├─ .FormControl-label
** │  ├─ .FormControl-input-wrap
** │  │  ├─ .FormControl-input-trailingVisualWrap
** │  │  │  ├─ .FormControl-input-trailingVisual
** │  │  ├─ .FormControl-input-leadingVisualWrap
** │  │  │  ├─ .FormControl-input-leadingVisual
** │  │  ├─ .FormControl-input
** │  │  ├─ .FormControl-input-trailingAction
** ├─ .FormControl-inlineValidation
** ├─ .FormControl-caption */

/* // Select structure
** ===================
**
** .FormControl
** ├─ .FormControl-label
** │  ├─ .FormControl-select-wrap
** │  │  ├─ .FormControl-select
** ├─ .FormControl-inlineValidation
** ├─ .FormControl-caption */

/* // Textarea structure
** ===================
**
** .FormControl
** ├─ .FormControl-label
** ├─ .FormControl-textarea
** ├─ .FormControl-inlineValidation
** ├─ .FormControl-caption */

.FormControl-input,
.FormControl-select,
.FormControl-textarea {
  color: var(--fgColor-default);
  background-color: var(--bgColor-default);
  border: var(--borderWidth-thin) solid var(--control-borderColor-rest, var(--color-border-default));
  box-shadow: var(--shadow-inset);
}

[disabled]:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    color: var(--control-fgColor-disabled);
    cursor: not-allowed;
    background-color: var(--control-bgColor-disabled);
    border-color: var(--control-borderColor-disabled);
    box-shadow: none;
    opacity: 1;
    -webkit-text-fill-color: var(--control-fgColor-disabled);
  }

[invalid='true']:is(.FormControl-input,.FormControl-select,.FormControl-textarea):not(:focus) {
    border-color: var(--control-borderColor-danger);
  }

[invalid='false']:is(.FormControl-input,.FormControl-select,.FormControl-textarea):not(:focus) {
    border-color: var(--control-borderColor-success);
  }

:is(.FormControl-input,.FormControl-select,.FormControl-textarea):not([type='checkbox'],[type='radio']):focus {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);

    /* remove fallback :focus if :focus-visible is supported */
  }

:is(.FormControl-input,.FormControl-select,.FormControl-textarea):not([type='checkbox'],[type='radio']):focus:not(:focus-visible) {
      border-color: transparent;

      border-color: var(--focus-outlineColor);

      outline: none;

      box-shadow: inset 0 0 0 1px transparent var(--focus-outlineColor);
    }

/* default focus state */

:is(.FormControl-input,.FormControl-select,.FormControl-textarea):not([type='checkbox'],[type='radio']):focus-visible {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);
  }

.FormControl-input,
.FormControl-select,
.FormControl-textarea {

  width: 100%;
  font-size: var(--text-body-size-medium);
  line-height: var(--text-body-lineHeight-medium);
  border-radius: var(--borderRadius-medium);
  transition: 80ms cubic-bezier(0.33, 1, 0.68, 1);
  transition-property: color, background-color, box-shadow, border-color;
  padding-inline: var(--control-medium-paddingInline-condensed);
  padding-block: calc(var(--control-medium-paddingBlock) - var(--borderWidth-thin));
}

[disabled]:is(.FormControl-input,.FormControl-select,.FormControl-textarea)::placeholder {
      color: var(--control-fgColor-disabled);
    }

[readonly]:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    background-color: var(--control-bgColor-disabled);
  }

:is(.FormControl-input,.FormControl-select,.FormControl-textarea)::placeholder {
    color: var(--control-fgColor-placeholder);
    opacity: 1;
  }

/* sizes */

.FormControl-small:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    height: var(--control-small-size);
    padding-inline: var(--control-small-paddingInline-normal);
    padding-block: var(--control-small-paddingBlock);
    font-size: var(--text-body-size-small);
  }

.FormControl-medium:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    height: var(--control-medium-size);
  }

.FormControl-large:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    height: var(--control-large-size);
    padding-inline: var(--control-large-paddingInline-normal);
    padding-block: var(--control-large-paddingBlock);
  }

/* variants */

.FormControl-inset:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    background-color: var(--bgColor-muted);
  }

.FormControl-inset:is(.FormControl-input,.FormControl-select,.FormControl-textarea):focus-visible,.FormControl-inset:is(.FormControl-input,.FormControl-select,.FormControl-textarea):focus {
      background-color: var(--bgColor-default);
    }

.FormControl-monospace:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    font-family: var(--fontStack-monospace);
  }

/* validation states */

.FormControl-error:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    border-color: var(--control-borderColor-danger);
  }

.FormControl-success:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    border-color: var(--control-borderColor-success);
  }

.FormControl-warning:is(.FormControl-input,.FormControl-select,.FormControl-textarea) {
    border-color: var(--control-borderColor-warning);
  }

.FormControl-toggleSwitchInput {
  display: flex;
  align-items: flex-start;
  gap: var(--base-size-16);
}

/* positioning for leading/trailing items for TextInput */

.FormControl-input-wrap {
  position: relative;
  display: grid;
}

.FormControl-input-wrap .FormControl-input-leadingVisualWrap {
    position: absolute;
    top: var(--base-size-8);
    left: var(--base-size-8);
    display: block;
    width: var(--base-size-16);
    height: var(--base-size-16);
    color: var(--fgColor-muted);
    pointer-events: none;

    /* octicon */
  }

:is(.FormControl-input-wrap .FormControl-input-leadingVisualWrap) .FormControl-input-leadingVisual {
      display: block;
      -webkit-user-select: none;
              user-select: none;
    }

.FormControl-input-wrap .FormControl-input-trailingVisualWrap {
    position: absolute;
    top: var(--base-size-8);
    right: var(--base-size-8);
    display: flex;
    height: var(--base-size-16);
    align-items: center;
    gap: var(--base-size-4);
    color: var(--fgColor-muted);
    pointer-events: none;
  }

:is(.FormControl-input-wrap .FormControl-input-trailingVisualWrap):has(.FormControl-input-trailingVisualText) {
      max-width: 25%;
      padding-left: var(--base-size-8);
    }

:is(.FormControl-input-wrap .FormControl-input-trailingVisualWrap):has(.FormControl-input-trailingVisualLabel) {
      max-width: 25%;
      padding-left: var(--base-size-8);
    }

:is(.FormControl-input-wrap .FormControl-input-trailingVisualWrap) .FormControl-input-trailingVisualLabel {
      overflow: hidden;
      text-overflow: ellipsis;
    }

/* TODO: replace with new Button component */

.FormControl-input-wrap .FormControl-input-trailingAction {
    position: absolute;
    top: var(--base-size-4);
    right: var(--base-size-4);
    z-index: 4;
    display: grid;
    width: var(--control-xsmall-size);
    height: var(--control-xsmall-size);
    padding: 0;
    color: var(--fgColor-muted);
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: var(--borderRadius-small);
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    transition-property: color, background-color, border-color;
    align-items: center;
    justify-content: center;
  }

:is(.FormControl-input-wrap .FormControl-input-trailingAction) svg {
      -webkit-user-select: none;
              user-select: none;
    }

[disabled]:is(.FormControl-input-wrap .FormControl-input-trailingAction) {
      color: var(--control-fgColor-disabled);
      pointer-events: none;
    }

:is(.FormControl-input-wrap .FormControl-input-trailingAction):hover {
      background: var(--control-transparent-bgColor-hover);
    }

:is(.FormControl-input-wrap .FormControl-input-trailingAction):active {
      background: var(--control-transparent-bgColor-active);
    }

/* show vertical divider line between field and button */

.FormControl-input-trailingAction--divider:is(.FormControl-input-wrap .FormControl-input-trailingAction)::before {
        position: absolute;
        top: calc((var(--control-xsmall-size) - var(--base-size-16)) / 2);
        left: calc(var(--base-size-4) * -1);
        display: block;
        width: var(--borderWidth-thin);
        height: var(--base-size-16);
        content: '';
        /* stylelint-disable-next-line primer/colors */
        background: var(--borderColor-default);
      }

:is(:is(.FormControl-input-wrap .FormControl-input-trailingAction)::after) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-height: var(--control-medium-size) var(--control-medium-size);
  content: "";
  transform: translateX(-50%) translateY(-50%);
}

@media (pointer: coarse) {

:is(.FormControl-input-wrap .FormControl-input-trailingAction)::after {
        min-width: var(--control-minTarget-coarse);
        min-height: var(--control-minTarget-coarse);
    }
      }

/* if leadingVisual is present */

/*
	┌──32px──┬────────────────────┐
	╎  ┌───┐   ┌────────────────┐ ╎
	╎   16px    16px              ╎
	╎  └───┘   └────────────────┘ ╎
	└───────8px───────────────────┘
	*/

.FormControl-input-wrap.FormControl-input-wrap--leadingVisual .FormControl-input {
      padding-inline-start: calc(
        var(--control-medium-paddingInline-condensed) + var(--base-size-16) + var(--control-medium-gap)
      ); /* 32px */
    }

/* if trailingVisual is present */

/*
	┌──────────────────┬──32px──┐
	╎  ┌──────────────┐  ┌────┐ ╎
	╎   24px               24px ╎
	╎  └──────────────┘  └────┘ ╎
	└──────────────────┴────────┘
  */

.FormControl-input-wrap.FormControl-input-wrap--trailingVisual .FormControl-input {
      padding-inline-end: calc(var(--control-medium-paddingInline-condensed) + var(--base-size-16) + var(--control-medium-gap));
    }

.FormControl-input-wrap.FormControl-input-wrap--trailingVisual:has(.FormControl-input-trailingVisualText) .FormControl-input {
      padding-inline-end: 25%
    }

.FormControl-input-wrap.FormControl-input-wrap--trailingVisual:has(.FormControl-input-trailingVisualLabel) .FormControl-input {
      padding-inline-end: 25%
    }

/*
	┌──────────────────┬──32px──┐
	╎  ┌──────────────┐  ┌────┐ ╎
	╎   24px               24px ╎
	╎  └──────────────┘  └────┘ ╎
	└──────────────────┴────────┘
  */

/* if trailingAction is present */

.FormControl-input-wrap.FormControl-input-wrap--trailingAction .FormControl-input {
      padding-inline-end: calc(
        var(--control-medium-paddingInline-condensed) + var(--base-size-16) + var(--control-medium-gap)
      ); /* 32px */
    }

/*
		32px + 1px border
		┌──────────────────┬──33px──┐
		╎  ┌──────────────┐  ┌────┐ ╎
		╎   24px               24px   ╎
		╎  └──────────────┘  └────┘ ╎
		└──────────────────┴────────┘
		*/

/* if trailingAction divider is present, add 1px padding to accomodate input field text
    ** can be refactored to has(.FormControl-input-trailingAction--divider) */

.FormControl-input-wrap.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input {
        padding-inline-end: calc(
          var(--control-medium-paddingInline-condensed) + var(--base-size-16) + var(--control-medium-gap) +
            var(--borderWidth-thin)
        ); /* 33px */
      }

/* size modifications can be refactored with :has() - FormControl-input-wrap:has(.FormControl-large)
  // sizes */

.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-leadingVisualWrap {
      top: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
      left: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
    }

.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-trailingVisualWrap {
      top: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
      right: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
    }

/*
    ┌──────────────────┬──28px──┐
    ╎  ┌──────────────┐  ┌────┐ ╎
    ╎   20px               20px   ╎
    ╎  └──────────────┘  └────┘ ╎
    └──────────────────┴────────┘
    */

.FormControl-input-wrap.FormControl-input-wrap--small.FormControl-input-wrap--trailingAction .FormControl-input.FormControl-small {
        padding-inline-end: calc(
          var(--control-small-paddingInline-condensed) + var(--base-size-16) + var(--control-small-gap)
        ); /* 28px */
      }

/*
			28px + 1px border
			┌──────────────────┬──29px──┐
			╎  ┌──────────────┐  ┌────┐ ╎
			╎   20px               20px   ╎
			╎  └──────────────┘  └────┘ ╎
			└──────────────────┴────────┘
			*/

.FormControl-input-wrap.FormControl-input-wrap--small.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input.FormControl-small {
          padding-inline-end: calc(
            var(--control-small-paddingInline-condensed) + var(--base-size-16) + var(--control-small-gap) +
              var(--borderWidth-thin)
          ); /* 29px */
        }

.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-trailingAction {
      width: calc(var(--control-small-size) - var(--base-size-8));
      height: calc(var(--control-small-size) - var(--base-size-8));
    }

:is(.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-trailingAction)::before {
        top: calc((var(--control-xsmall-size) - var(--base-size-16)) / 4); /* 2px */
      }

.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-leadingVisualWrap {
      top: var(--control-medium-paddingInline-normal);
      left: var(--control-medium-paddingInline-normal);
    }

.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-trailingVisualWrap {
      top: var(--control-medium-paddingInline-normal);
      right: var(--control-medium-paddingInline-normal);
    }

/*
    ┌──36px──┬───12px padding──────┐
    ╎  ┌───┐   ┌────────────────┐ ╎
    ╎   16px    16px                ╎
    ╎  └───┘   └────────────────┘ ╎
    └12px───8px───────────────────┘
    */

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--leadingVisual .FormControl-input.FormControl-large {
        padding-inline-start: calc(
          var(--control-large-paddingInline-normal) + var(--base-size-16) + var(--control-large-gap)
        ); /* 36px */
      }

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingVisual .FormControl-input {
        padding-inline-end: calc(var(--control-large-paddingInline-normal) + var(--base-size-16) + var(--control-large-gap));
      }

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingVisual:has(.FormControl-input-trailingVisualText) .FormControl-input {
        padding-inline-end: 25%
      }

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingVisual:has(.FormControl-input-trailingVisualLabel) .FormControl-input {
        padding-inline-end: 25%
      }

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingText .FormControl-input.FormControl-large {
        padding-inline-end: 25%;
      }

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingLabel .FormControl-input.FormControl-large {
        padding-inline-end: 25%;
      }

/*
    ┌──────────────────┬──36px──┐
    ╎  ┌──────────────┐  ┌────┐ ╎
    ╎   28px               28px   ╎
    ╎  └──────────────┘  └────┘ ╎
    └──────────────────┴────────┘
    */

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingAction .FormControl-input.FormControl-large {
        padding-inline-end: calc(
          var(--control-large-paddingInline-normal) + var(--base-size-16) + var(--control-large-gap)
        ); /* 36px */
      }

/*
			┌──────────────────┬──37px──┐
			╎  ┌──────────────┐  ┌────┐ ╎
			╎   28px               28px   ╎
			╎  └──────────────┘  └────┘ ╎
			└──────────────────┴────────┘
			*/

.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input.FormControl-large {
          padding-inline-end: calc(
            var(--control-large-paddingInline-normal) + var(--base-size-16) + var(--control-large-gap) +
              var(--borderWidth-thin)
          ); /* 37px */
        }

.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-trailingAction {
      top: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
      right: calc(var(--control-medium-paddingInline-condensed) - var(--base-size-2)); /* 6px */
      width: var(--control-small-size);
      height: var(--control-small-size);
    }

:is(.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-trailingAction)::before {
        top: unset;
        height: var(--base-size-20);
      }

.FormControl-select-wrap {
  display: grid;
  grid-template-columns: minmax(0, auto) var(--base-size-16);

  /* mask allows for background-color to respect themes */
}

.FormControl-select-wrap::after {
    width: var(--base-size-16);
    height: var(--base-size-16);
    padding-right: var(--base-size-4);
    pointer-events: none;
    content: '';
    background-color: var(--bgColor-neutral-emphasis);
    mask: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzU4NjA2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4=');
    mask-size: contain;
    mask-repeat: no-repeat;
    grid-column: 2;
    grid-row: 1;
    place-self: center end;
  }

/* spans entire grid below mask */

.FormControl-select-wrap .FormControl-select {
    grid-column: 1/-1;
    grid-row: 1;
    appearance: none;
    padding-right: var(--base-size-20);
  }

.FormControl-select-wrap[data-multiple]::after {
      content: none;
    }

.FormControl-select-wrap[data-multiple] .FormControl-select {
      padding-right: var(--base-size-8);
    }

/* checkbox + radio specific styles */

/* // Checkbox + Radio structure
** ===================
**
** .FormControl-radio-wrap
** ├─ .FormControl-radio
** ├─ .FormControl-radio-labelWrap
** │  ├─ .FormControl-label
** │  ├─ .FormControl-caption */

.FormControl-checkbox-wrap,
.FormControl-radio-wrap {
  display: inline-grid;
  grid-template-columns: min-content auto;
  gap: var(--base-size-8);
}

:is(.FormControl-checkbox-wrap,.FormControl-radio-wrap) .FormControl-checkbox-labelWrap,:is(.FormControl-checkbox-wrap,.FormControl-radio-wrap) .FormControl-radio-labelWrap {
    display: flex;
    flex-direction: column;
    gap: var(--base-size-4);
  }

:is(.FormControl-checkbox-wrap,.FormControl-radio-wrap) .FormControl-label {
    cursor: pointer;
  }

.FormControl-radio-group-wrap fieldset {
    padding: 0;
    margin: 0;
    border: 0;
  }

.FormControl-check-group-wrap fieldset {
    padding: 0;
    margin: 0;
    border: 0;
  }

/* these selectors are temporary to override base.scss
** once Field styles are widely adopted, we can adjust this and the global base styles */

.FormControl-checkbox {
  color: var(--fgColor-default);
  background-color: var(--bgColor-default);
  border: var(--borderWidth-thin) solid var(--control-borderColor-rest, var(--color-border-default));
  box-shadow: var(--shadow-inset);
}

.FormControl-checkbox[disabled] {
    color: var(--control-fgColor-disabled);
    cursor: not-allowed;
    background-color: var(--control-bgColor-disabled);
    border-color: var(--control-borderColor-disabled);
    box-shadow: none;
    opacity: 1;
    -webkit-text-fill-color: var(--control-fgColor-disabled);
  }

.FormControl-checkbox[invalid='true']:not(:focus) {
    border-color: var(--control-borderColor-danger);
  }

.FormControl-checkbox[invalid='false']:not(:focus) {
    border-color: var(--control-borderColor-success);
  }

.FormControl-checkbox:not([type='checkbox'],[type='radio']):focus {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);

    /* remove fallback :focus if :focus-visible is supported */
  }

.FormControl-checkbox:not([type='checkbox'],[type='radio']):focus:not(:focus-visible) {
      border-color: transparent;

      border-color: var(--focus-outlineColor);

      outline: none;

      box-shadow: inset 0 0 0 1px transparent var(--focus-outlineColor);
    }

/* default focus state */

.FormControl-checkbox:not([type='checkbox'],[type='radio']):focus-visible {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);
  }

.FormControl-checkbox {

  position: relative;
  display: grid;
  width: var(--base-size-16);
  height: var(--base-size-16);
  margin: 0;
  margin-top: var(--base-size-2); /* 2px to center align with label (20px line-height) */
  cursor: pointer;
  border-color: var(--control-borderColor-emphasis);
  border-radius: var(--borderRadius-small);
  transition: background-color, border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); /* checked -> unchecked - add 120ms delay to fully see animation-out */
  appearance: none;
  place-content: center;
}

.FormControl-checkbox::before {
    width: var(--base-size-16);
    height: var(--base-size-16);
    visibility: hidden;
    content: '';
    /* stylelint-disable-next-line primer/colors */
    background-color: var(--control-checked-fgColor-rest);
    transition: visibility 0s linear 230ms;
    clip-path: inset(var(--base-size-16) 0 0 0);

    /* octicon checkmark image */
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNzgwMyAwLjIxOTYyNUMxMS45MjEgMC4zNjA0MjcgMTIgMC41NTEzMDUgMTIgMC43NTAzMTNDMTIgMC45NDkzMjEgMTEuOTIxIDEuMTQwMTkgMTEuNzgwMyAxLjI4MUw0LjUxODYgOC41NDA0MkM0LjM3Nzc1IDguNjgxIDQuMTg2ODIgOC43NiAzLjk4Nzc0IDguNzZDMy43ODg2NyA4Ljc2IDMuNTk3NzMgOC42ODEgMy40NTY4OSA4LjU0MDQyTDAuMjAxNjIyIDUuMjg2MkMwLjA2ODkyNzcgNS4xNDM4MyAtMC4wMDMzMDkwNSA0Ljk1NTU1IDAuMDAwMTE2NDkzIDQuNzYwOThDMC4wMDM1NTIwNSA0LjU2NjQzIDAuMDgyMzg5NCA0LjM4MDgxIDAuMjIwMDMyIDQuMjQzMjFDMC4zNTc2NjUgNC4xMDU2MiAwLjU0MzM1NSA0LjAyNjgxIDAuNzM3OTcgNC4wMjMzOEMwLjkzMjU4NCA0LjAxOTk0IDEuMTIwOTMgNC4wOTIxNyAxLjI2MzM0IDQuMjI0ODJMMy45ODc3NCA2Ljk0ODM1TDEwLjcxODYgMC4yMTk2MjVDMTAuODU5NSAwLjA3ODk5MjMgMTEuMDUwNCAwIDExLjI0OTUgMEMxMS40NDg1IDAgMTEuNjM5NSAwLjA3ODk5MjMgMTEuNzgwMyAwLjIxOTYyNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
    mask-size: 75%;
    mask-repeat: no-repeat;
    mask-position: center;
    animation: checkmarkOut 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards; /* slightly snappier animation out */
  }

/* extend touch target */

:is(.FormControl-checkbox::after) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-height: var(--control-medium-size) var(--control-medium-size);
  content: "";
  transform: translateX(-50%) translateY(-50%);
}

:is(.FormControl-checkbox[disabled] ~ .FormControl-checkbox-labelWrap) .FormControl-label {
        color: var(--control-fgColor-disabled);
        cursor: not-allowed;
      }

.FormControl-checkbox:checked {
    background: var(--control-checked-bgColor-rest, var(--color-accent-fg));
    border-color: var(--control-checked-borderColor-rest, var(--color-accent-fg));
    transition: background-color, border-color 80ms cubic-bezier(0.32, 0, 0.67, 0) 0ms; /* unchecked -> checked */
  }

.FormControl-checkbox:checked::before {
      visibility: visible;
      transition: visibility 0s linear 0s;
      animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards 80ms;
    }

.FormControl-checkbox:checked:disabled {
      cursor: not-allowed;
      /* stylelint-disable-next-line primer/colors */
      background-color: var(--control-fgColor-disabled);
      /* stylelint-disable-next-line primer/colors */
      border-color: var(--control-fgColor-disabled);
      opacity: 1;
    }

.FormControl-checkbox:checked:disabled::before {
        /* stylelint-disable-next-line primer/colors */
        background-color: var(--control-checked-fgColor-rest);
      }

/* Windows High Contrast mode */

@media (forced-colors: active) {

.FormControl-checkbox:checked {
      background-color: canvastext;
      border-color: canvastext;
  }
    }

.FormControl-checkbox:focus-visible {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;
  }

.FormControl-checkbox:indeterminate::before {
      mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDEwIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAxQzAgMC40NDc3MTUgMC40NDc3MTUgMCAxIDBIOUM5LjU1MjI5IDAgMTAgMC40NDc3MTUgMTAgMUMxMCAxLjU1MjI4IDkuNTUyMjkgMiA5IDJIMUMwLjQ0NzcxNSAyIDAgMS41NTIyOCAwIDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
      visibility: visible;
    }

.FormControl-radio {
  color: var(--fgColor-default);
  background-color: var(--bgColor-default);
  border: var(--borderWidth-thin) solid var(--control-borderColor-rest, var(--color-border-default));
  box-shadow: var(--shadow-inset);
}

.FormControl-radio[disabled] {
    color: var(--control-fgColor-disabled);
    cursor: not-allowed;
    background-color: var(--control-bgColor-disabled);
    border-color: var(--control-borderColor-disabled);
    box-shadow: none;
    opacity: 1;
    -webkit-text-fill-color: var(--control-fgColor-disabled);
  }

.FormControl-radio[invalid='true']:not(:focus) {
    border-color: var(--control-borderColor-danger);
  }

.FormControl-radio[invalid='false']:not(:focus) {
    border-color: var(--control-borderColor-success);
  }

.FormControl-radio:not([type='checkbox'],[type='radio']):focus {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);

    /* remove fallback :focus if :focus-visible is supported */
  }

.FormControl-radio:not([type='checkbox'],[type='radio']):focus:not(:focus-visible) {
      border-color: transparent;

      border-color: var(--focus-outlineColor);

      outline: none;

      box-shadow: inset 0 0 0 1px transparent var(--focus-outlineColor);
    }

/* default focus state */

.FormControl-radio:not([type='checkbox'],[type='radio']):focus-visible {
    border-color: var(--focus-outlineColor);
    outline: none;
    box-shadow: inset 0 0 0 1px var(--focus-outlineColor);
  }

.FormControl-radio {

  position: relative;
  width: var(--base-size-16);
  height: var(--base-size-16);
  margin: 0;
  margin-top: var(--base-size-2); /* 2px to center align with label (20px line-height) */
  cursor: pointer;
  border-color: var(--control-borderColor-emphasis);
  border-radius: var(--borderRadius-full);
  transition: background-color, border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); /* checked -> unchecked - add 120ms delay to fully see animation-out */
  appearance: none;
}

:is(.FormControl-radio::after) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-height: var(--control-medium-size) var(--control-medium-size);
  content: "";
  transform: translateX(-50%) translateY(-50%);
}

:is(.FormControl-radio[disabled] ~ .FormControl-radio-labelWrap) .FormControl-label {
        color: var(--control-fgColor-disabled);
        cursor: not-allowed;
      }

.FormControl-radio:checked {
    border-color: var(--control-checked-borderColor-rest, var(--color-accent-fg));
    /* stylelint-disable-next-line primer/borders */
    border-width: var(--base-size-4);
  }

.FormControl-radio[disabled]:checked,.FormControl-radio:checked:disabled {
      cursor: not-allowed;
      /* stylelint-disable-next-line primer/colors */
      border-color: var(--control-fgColor-disabled);
    }

:is(:is(.FormControl-radio[disabled]:checked,.FormControl-radio:checked:disabled) ~ .FormControl-radio-labelWrap) .FormControl-label {
          color: var(--control-fgColor-disabled);
          cursor: not-allowed;
        }

.FormControl-radio:focus-visible {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: 2px;
    box-shadow: none;
  }

/* Windows High Contrast mode */

@media (forced-colors: active) {

.FormControl-radio {
    background-color: canvastext;
    border-color: canvastext;
}
  }

@keyframes checkmarkIn {
  from {
    clip-path: inset(var(--base-size-16) 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes checkmarkOut {
  from {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(var(--base-size-16) 0 0 0);
  }
}

/* ToggleSwitch */

/* Catalyst in dotcom applies a display: block to all web component elements. This
** rule overrides it so the status label and toggle switch are laid out correctly. */

.ToggleSwitch.ToggleSwitch {
  display: inline-flex;
}

.ToggleSwitch {
  align-items: center;
  display: inline-flex;
  gap: var(--controlStack-medium-gap-condensed);
}

.ToggleSwitch--checked .ToggleSwitch-statusOn {
    height: auto;
    visibility: visible;
  }

.ToggleSwitch--checked .ToggleSwitch-statusOff {
    height: 0;
    visibility: hidden;
  }

.ToggleSwitch-track {
  position: relative;
  display: block;
  width: var(--base-size-64);
  height: var(--control-medium-size);
  padding: 0;
  overflow: hidden;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  background-color: var(--controlTrack-bgColor-rest);
  border: var(--borderWidth-thin) solid var(--controlTrack-borderColor-rest);
  border-radius: var(--borderRadius-medium);
  transition-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  transition-duration: 80ms;
  transition-property: background-color, border-color;
  appearance: none;
}

.ToggleSwitch-track:focus,.ToggleSwitch-track:focus-visible {
    outline-offset: 1px;
  }

.ToggleSwitch-track:hover {
    background-color: var(--controlTrack-bgColor-hover);
  }

.ToggleSwitch-track:active {
    background-color: var(--controlTrack-bgColor-active);
  }

@media (pointer: coarse) {
      :is(.ToggleSwitch-track::before) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-height: 44px;
    content: "";
    transform: translateX(-50%) translateY(-50%);
  }
  }

@media (prefers-reduced-motion) {

.ToggleSwitch-track {
    transition: none;
}

    .ToggleSwitch-track * {
      transition: none;
    }
  }

.ToggleSwitch-track[aria-pressed='true'][disabled] {
  color: var(--control-checked-fgColor-disabled);
  background-color: var(--controlTrack-bgColor-disabled);
  border-color: transparent;
}

.ToggleSwitch-track[aria-pressed='true'] {
  background-color: var(--control-checked-bgColor-rest);
  border-color: var(--borderColor-transparent);
}

.ToggleSwitch-track[aria-pressed='true']:not([disabled]):hover {
      background-color: var(--control-checked-bgColor-hover);
    }

.ToggleSwitch-track[aria-pressed='true']:not([disabled]):active {
      background-color: var(--control-checked-bgColor-active);
    }

.ToggleSwitch-track[aria-pressed='true'] .ToggleSwitch-knob {
    background-color: var(--controlKnob-bgColor-checked);
    border-color: var(--controlKnob-borderColor-checked);
    transform: translateX(100%);
  }

.ToggleSwitch-track[aria-pressed='true'] .ToggleSwitch-lineIcon {
    transform: translateX(0%);
  }

.ToggleSwitch-track[aria-pressed='true'] .ToggleSwitch-circleIcon {
    transform: translateX(100%);
  }

.ToggleSwitch-track[disabled] {
  cursor: not-allowed;
  background-color: var(--controlTrack-bgColor-disabled);
  border-color: transparent;
  transition-property: none;
}

.ToggleSwitch-track[disabled] .ToggleSwitch-knob {
    border-color: var(--borderColor-default);
    box-shadow: none;
  }

.ToggleSwitch-track[disabled] .ToggleSwitch-lineIcon {
    color: var(--controlTrack-fgColor-disabled);
  }

.ToggleSwitch-track[disabled] .ToggleSwitch-circleIcon {
    color: var(--controlTrack-fgColor-disabled);
  }

.ToggleSwitch-icons {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ToggleSwitch-lineIcon {
  /* stylelint-disable-next-line primer/typography */
  line-height: 0;
  color: var(--control-checked-fgColor-rest);
  transition-duration: 80ms;
  transition-property: transform;
  transform: translateX(-100%);
  flex: 1 0 50%;
}

.ToggleSwitch-circleIcon {
  /* stylelint-disable-next-line primer/typography */
  line-height: 0;
  color: var(--controlTrack-fgColor-rest);
  transition-duration: 80ms;
  transition-property: transform;
  transform: translateX(0);
  flex: 1 0 50%;
}

.ToggleSwitch-knob {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 50%;
  background-color: var(--controlKnob-bgColor-rest);
  border: var(--borderWidth-thin) solid var(--controlKnob-borderColor-rest);
  border-radius: var(--borderRadius-medium);
  box-shadow: var(--shadow-resting-medium), var(--button-default-shadow-inset);
  transition-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  transition-duration: 80ms;
  transition-property: transform;
}

@media (prefers-reduced-motion) {

.ToggleSwitch-knob {
    transition: none;
}
  }

.ToggleSwitch-status {
  position: relative;
  font-size: var(--text-body-size-medium);
  line-height: var(--text-title-lineHeight-large);
  color: var(--fgColor-default);
  text-align: right;
}

.ToggleSwitch-statusIcon {
  display: flex;
  width: var(--base-size-16);
  /* stylelint-disable-next-line primer/spacing */
  margin-top: 0.063rem;
}

.ToggleSwitch--small .ToggleSwitch-status {
    font-size: var(--text-body-size-small);
  }

.ToggleSwitch--small .ToggleSwitch-track {
    width: var(--base-size-48);
    height: var(--control-xsmall-size);
  }

.ToggleSwitch--disabled .ToggleSwitch-status {
    color: var(--fgColor-muted);
  }

.ToggleSwitch-statusOn {
  height: 0;
  visibility: hidden;
}

.ToggleSwitch-statusOff {
  height: auto;
  visibility: visible;
}

.ToggleSwitch--statusAtEnd {
  flex-direction: row-reverse;
}

.ToggleSwitch--statusAtEnd .ToggleSwitch-status {
    text-align: left;
  }

/* UnderlineNav */

.UnderlineNav {
  display: flex;
  min-height: var(--base-size-48);
  overflow-x: auto;
  overflow-y: hidden;
  /* stylelint-disable-next-line primer/box-shadow */
  box-shadow: inset 0 -1px 0 var(--borderColor-muted);
  -webkit-overflow-scrolling: auto;
  justify-content: space-between;
}

.UnderlineNav .Counter {
    /* stylelint-disable-next-line primer/spacing */
    margin-left: var(--control-medium-gap);
    color: var(--fgColor-default);
    background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted));
  }

.UnderlineNav .Counter--primary {
    color: var(--fgColor-onEmphasis);
    background-color: var(--bgColor-neutral-emphasis);
  }

.UnderlineNav-body {
  display: flex;
  align-items: center;
  gap: var(--control-medium-gap);
  list-style: none;
}

.UnderlineNav-item {
  position: relative;
  display: flex;
  /* stylelint-disable-next-line primer/spacing */
  padding: 0 var(--control-medium-paddingInline-condensed);
  font-size: var(--text-body-size-medium);
  /* stylelint-disable-next-line primer/typography */
  line-height: 30px;
  color: var(--fgColor-default);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: var(--borderRadius-medium);
  align-items: center;
}

.UnderlineNav-item:hover,.UnderlineNav-item:focus,.UnderlineNav-item:focus-visible {
    color: var(--fgColor-default);
    -webkit-text-decoration: none;
    text-decoration: none;
    border-bottom-color: var(--borderColor-neutral-muted);
    outline-offset: -2px;
    transition: border-bottom-color 0.12s ease-out;
  }

/* renders a visibly hidden "copy" of the label in bold, reserving box space for when label becomes bold on selected */

.UnderlineNav-item [data-content]::before {
    display: block;
    height: 0;
    font-weight: var(--base-text-weight-semibold);
    visibility: hidden;
    content: attr(data-content);
  }

/* increase touch target area */

:is(.UnderlineNav-item::before) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-height: 48px;
  content: "";
  transform: translateX(-50%) translateY(-50%);
}

/* hover state was "sticking" on mobile after click */

@media (pointer: fine) {
    .UnderlineNav-item:hover {
      color: var(--fgColor-default);
      -webkit-text-decoration: none;
      text-decoration: none;
      background: var(--control-transparent-bgColor-hover);
      transition: background 0.12s ease-out;
    }
  }

.UnderlineNav-item.selected,.UnderlineNav-item[role='tab'][aria-selected='true'],.UnderlineNav-item[aria-current]:not([aria-current='false']) {
    font-weight: var(--base-text-weight-semibold);
    color: var(--fgColor-default);
    border-bottom-color: var(--underlineNav-borderColor-active);

    /* current/selected underline */
  }

:is(.UnderlineNav-item.selected,.UnderlineNav-item[role='tab'][aria-selected='true'],.UnderlineNav-item[aria-current]:not([aria-current='false']))::after {
      position: absolute;
      right: 50%;
      bottom: calc(50% - var(--base-size-24)); /* 48px total height / 2 (24px) + 1px */
      z-index: 1; /* raise above full-width flash banner */
      width: 100%;
      height: 2px;
      content: '';
      /* stylelint-disable-next-line primer/colors */
      background: var(--underlineNav-borderColor-active);
      border-radius: var(--borderRadius-medium);
      transform: translate(50%, -50%);
    }

.UnderlineNav--right {
  justify-content: flex-end;
}

.UnderlineNav--right .UnderlineNav-actions {
    flex: 1 1 auto;
  }

.UnderlineNav-actions {
  align-self: center;
}

.UnderlineNav--full {
  display: block;

  /* required for underline to align with additional wrapper element */
}

.UnderlineNav--full .UnderlineNav-body {
    min-height: var(--base-size-48);
  }

.UnderlineNav-octicon {
  display: inline !important;
  /* stylelint-disable-next-line primer/spacing */
  margin-right: var(--control-medium-gap);
  color: var(--fgColor-muted);
  fill: var(--fgColor-muted);
}

.UnderlineNav-container {
  display: flex;
  justify-content: space-between;
}

/* beta */

/* avatar */

.avatar {
  display: inline-block;
  overflow: hidden; /* Ensure page layout in Firefox should images fail to load */
  /* stylelint-disable-next-line primer/typography */
  line-height: 1;
  vertical-align: middle;
  background-color: var(--avatar-bgColor); /* adds opaque bg to transparent avatars */
  border-radius: var(--borderRadius-medium);
  flex-shrink: 0;
  /* stylelint-disable-next-line primer/box-shadow */
  box-shadow: 0 0 0 1px var(--avatar-borderColor);
}

.avatar-link {
  float: left;
  /* stylelint-disable-next-line primer/typography */
  line-height: 1;
}

/* User for example on /stars and /user for grids of avatars */

.avatar-group-item {
  display: inline-block;
  margin-bottom: var(--base-size-4);
}

/* Border radius */

.avatar-1,
.avatar-2,
.avatar-small {
  border-radius: var(--borderRadius-small);
}

/* Sizes */

.avatar-1 {
  width: var(--base-size-16);
  height: var(--base-size-16);
}

.avatar-2 {
  width: var(--base-size-20);
  height: var(--base-size-20);
}

.avatar-3 {
  width: var(--base-size-24);
  height: var(--base-size-24);
}

.avatar-4 {
  width: var(--base-size-28);
  height: var(--base-size-28);
}

.avatar-5 {
  width: var(--base-size-32);
  height: var(--base-size-32);
}

.avatar-6 {
  width: var(--base-size-40);
  height: var(--base-size-40);
}

.avatar-7 {
  width: var(--base-size-48);
  height: var(--base-size-48);
}

.avatar-8 {
  width: var(--base-size-64);
  height: var(--base-size-64);
}

/* AvatarStack */

/* Stacked avatars can be used to show who is participating in thread when
** there is limited space available. */

.AvatarStack {
  position: relative;
  min-width: 26px;
  height: 20px;
}

.AvatarStack .AvatarStack-body {
    position: absolute;
  }

.AvatarStack.AvatarStack--two {
    min-width: 36px;
  }

.AvatarStack.AvatarStack--three-plus {
    min-width: 46px;
  }

.AvatarStack-body {
  display: flex;
  background: var(--bgColor-default);
  /* stylelint-disable-next-line primer/borders */
  border-radius: 100px;
}

.AvatarStack-body .avatar {
    position: relative;
    z-index: 2;
    display: flex;
    width: 20px;
    height: 20px;
    box-sizing: content-box;
    /* stylelint-disable-next-line primer/spacing */
    margin-right: -11px;
    background-color: var(--bgColor-default);
    /* stylelint-disable-next-line primer/colors */
    border-right: var(--borderWidth-thin) solid var(--bgColor-default);
    border-radius: var(--borderRadius-small);
    box-shadow: none;
    transition: margin 0.1s ease-in-out;
  }

:is(.AvatarStack-body .avatar):first-child {
      z-index: 3;
    }

:is(.AvatarStack-body .avatar):last-child {
      z-index: 1;
      border-right: 0;
    }

/* stylelint-disable-next-line selector-max-type */

:is(.AvatarStack-body .avatar) img {
      border-radius: var(--borderRadius-small);
    }

/* Account for 4+ avatars */

:is(.AvatarStack-body .avatar):nth-child(n + 4) {
      display: none;
      opacity: 0;
    }

.AvatarStack-body:hover .avatar {
      margin-right: var(--base-size-4);
    }

.AvatarStack-body:hover .avatar:nth-child(n + 4) {
      display: flex;
      opacity: 1;
    }

.AvatarStack-body:hover .avatar-more {
      display: none !important;
    }

.avatar.avatar-more {
  z-index: 1;
  margin-right: 0;
  background: var(--bgColor-muted);
}

.avatar.avatar-more::before,.avatar.avatar-more::after {
    position: absolute;
    display: block;
    height: 20px;
    content: '';
    /* stylelint-disable-next-line primer/borders */
    border-radius: 2px;
    outline: var(--borderWidth-thin) solid var(--bgColor-default);
  }

.avatar.avatar-more::before {
    width: 17px;
    background: var(--avatarStack-fade-bgColor-muted);
  }

.avatar.avatar-more::after {
    width: 14px;
    background: var(--avatarStack-fade-bgColor-default);
  }

/* Right aligned variation */

.AvatarStack--right .AvatarStack-body {
    right: 0;
    flex-direction: row-reverse;
  }

:is(.AvatarStack--right .AvatarStack-body):hover .avatar {
      margin-right: 0;
      margin-left: var(--base-size-4);
    }

:is(.AvatarStack--right .AvatarStack-body) .avatar:not(:last-child) {
      border-left: 0;
    }

.AvatarStack--right .avatar.avatar-more {
    background: var(--avatarStack-fade-bgColor-default);
  }

:is(.AvatarStack--right .avatar.avatar-more)::before {
      width: 5px;
    }

:is(.AvatarStack--right .avatar.avatar-more)::after {
      width: 2px;
      background: var(--bgColor-muted);
    }

.AvatarStack--right .avatar {
    margin-right: 0;
    /* stylelint-disable-next-line primer/spacing */
    margin-left: -11px;
    border-right: 0;
    /* stylelint-disable-next-line primer/colors */
    border-left: var(--borderWidth-thin) solid var(--bgColor-default);
  }

/* stylelint-disable primer/spacing */

/* stylelint-disable primer/typography */

/* BorderBox */

/* TODO: Rename to BorderBox to match PVC */

.Box {
  background-color: var(--bgColor-default);
  border-color: var(--borderColor-default);
  border-style: solid;
  border-width: var(--borderWidth-thin);
  border-radius: var(--borderRadius-medium);
}

/* Box padding density options */

.Box--condensed {
  line-height: 1.25;
}

.Box--condensed .Box-header {
    padding: var(--stack-padding-condensed) var(--stack-padding-normal);
  }

.Box--condensed .Box-body {
    padding: var(--stack-padding-condensed) var(--stack-padding-normal);
  }

.Box--condensed .Box-footer {
    padding: var(--stack-padding-condensed) var(--stack-padding-normal);
  }

.btn-octicon:is(.Box--condensed .Box-btn-octicon) {
      padding: var(--control-medium-paddingInline-condensed) var(--control-medium-paddingInline-spacious);
      margin: calc(var(--controlStack-medium-gap-condensed) * -1) calc(var(--controlStack-small-gap-spacious) * -1);
      line-height: 1.25;
    }

.Box--condensed .Box-row {
    padding: var(--stack-padding-condensed) var(--stack-padding-normal);
  }

.Box--spacious .Box-header {
    padding: var(--stack-padding-spacious);
    line-height: 1.25;
  }

.Box--spacious .Box-title {
    font-size: var(--text-title-size-medium);
  }

.Box--spacious .Box-body {
    padding: var(--stack-padding-spacious);
  }

.Box--spacious .Box-footer {
    padding: var(--stack-padding-spacious);
  }

.btn-octicon:is(.Box--spacious .Box-btn-octicon) {
      padding: var(--stack-padding-spacious);
      margin: calc(var(--stack-gap-spacious) * -1);
    }

.Box--spacious .Box-row {
    padding: var(--stack-padding-spacious);
  }

.Box-header {
  padding: var(--stack-padding-normal);
  margin: calc(var(--borderWidth-thin) * -1) calc(var(--borderWidth-thin) * -1) 0;
  background-color: var(--bgColor-muted);
  border-color: var(--borderColor-default);
  border-style: solid;
  border-width: var(--borderWidth-thin);
  border-top-left-radius: var(--borderRadius-medium);
  border-top-right-radius: var(--borderRadius-medium);
}

.Box-title {
  font-size: var(--text-body-size-medium);
  font-weight: var(--base-text-weight-semibold);
}

.Box-body {
  padding: var(--stack-padding-normal);
  border-bottom: var(--borderWidth-thin) solid var(--borderColor-default);

  /* Ensures bottom-border doesn't poke out when .Box-body used without box-footer */
}

.Box-body:last-of-type {
    margin-bottom: calc(var(--borderWidth-thin) * -1);
    border-bottom-right-radius: var(--borderRadius-medium);
    border-bottom-left-radius: var(--borderRadius-medium);
  }

/* Box rows */

.Box-row {
  padding: var(--stack-padding-normal);
  margin-top: calc(var(--borderWidth-thin) * -1);
  list-style-type: none; /* To account for applying Box component to a list */
  border-top-color: var(--borderColor-muted);
  border-top-style: solid;
  border-top-width: var(--borderWidth-thin);
}

.Box-row:first-of-type {
    border-top-left-radius: var(--borderRadius-medium);
    border-top-right-radius: var(--borderRadius-medium);
  }

.Box-row:last-of-type {
    border-bottom-right-radius: var(--borderRadius-medium);
    border-bottom-left-radius: var(--borderRadius-medium);
  }

/* Adds a blue vertical line to the left of the row
  ** For indicating a row item is unread */

.Box-row.Box-row--unread,.Box-row.unread {
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: inset 2px 0 0 var(--borderColor-accent-emphasis);
  }

/* Focus styles for when drag icon */

.Box-row.navigation-focus .Box-row--drag-button {
      color: var(--fgColor-accent);
      cursor: grab;
      opacity: 100;
    }

/* Grabbing while row is dragged */

.Box-row.navigation-focus.is-dragging .Box-row--drag-button {
      cursor: grabbing;
    }

/* Row dragging styles */

.Box-row.navigation-focus.sortable-chosen {
      background-color: var(--bgColor-muted);
    }

/* Makes dragging row background gray */

.Box-row.navigation-focus.sortable-ghost {
      background-color: var(--bgColor-muted);

      /* Hides contents of row while dragging so row looks solid gray */
    }

.Box-row.navigation-focus.sortable-ghost .Box-row--drag-hide {
        opacity: 0;
      }

.Box-row--focus-gray.navigation-focus {
    background-color: var(--bgColor-muted);
  }

.Box-row--focus-blue.navigation-focus {
    background-color: var(--bgColor-accent-muted);
  }

.Box-row--hover-gray:hover {
    background-color: var(--bgColor-muted);
  }

.Box-row--hover-blue:hover {
    background-color: var(--bgColor-accent-muted);
  }

/* Optional link style
** Makes links on mobile blue since they don't have hover state,
** and links are dark-gray with blue hover on desktop. */

@media (min-width: 768px) {

.Box-row-link {
    color: var(--fgColor-default);
    -webkit-text-decoration: none;
    text-decoration: none;
}

    .Box-row-link:hover {
      color: var(--fgColor-accent);
      -webkit-text-decoration: none;
      text-decoration: none;
    }
  }

/* Optional drag icon styles for reordering items
** Focus styles included in .Box-row above */

.Box-row--drag-button {
  opacity: 0;
}

.Box-footer {
  padding: var(--stack-padding-normal);
  margin-top: calc(var(--borderWidth-thin) * -1); /* prevents double border when used with .Box-body */
  border-top-color: var(--borderColor-default);
  border-top-style: solid;
  border-top-width: var(--borderWidth-thin);
  border-radius: 0 0 var(--borderRadius-medium) var(--borderRadius-medium);
}

/* Option for a box with scrolling content */

.Box--scrollable {
  max-height: 324px;
  overflow: scroll;
}

/* Box themes */

.Box--blue {
  border-color: var(--borderColor-accent-muted);
}

.Box--blue .Box-header {
    background-color: var(--bgColor-accent-muted);
    border-color: var(--borderColor-accent-muted);
  }

.Box--blue .Box-body {
    border-color: var(--borderColor-accent-muted);
  }

.Box--blue .Box-row {
    border-color: var(--borderColor-accent-muted);
  }

.Box--blue .Box-footer {
    border-color: var(--borderColor-accent-muted);
  }

/* Applies and red border to the outside of the box,
** but not to the border separating rows. */

.Box--danger {
  border-color: var(--borderColor-danger-emphasis);
}

:is(.Box--danger .Box-row):first-of-type {
      border-color: var(--borderColor-danger-emphasis);
    }

:is(.Box--danger .Box-body):last-of-type {
      border-color: var(--borderColor-danger-emphasis);
    }

.Box-header--blue {
  background-color: var(--bgColor-accent-muted);
  border-color: var(--borderColor-accent-muted);
}

/* Box row highlight themes */

.Box-row--yellow {
  background-color: var(--bgColor-attention-muted);
}

.Box-row--blue {
  background-color: var(--bgColor-accent-muted);
}

.Box-row--gray {
  background-color: var(--bgColor-muted);
}

/* Box with btn-octicon */

/* Increase specificity when btn-octicon is used because comes after .Box in the cascade */

.Box-btn-octicon.btn-octicon {
    padding: var(--control-medium-paddingInline-spacious);
    margin: calc(var(--controlStack-small-gap-spacious) * -1);
    line-height: var(--text-title-lineHeight-large); /* override btn-octicon line-height */
  }

/* blankslate */

.blankslate-container {
  container-type: inline-size;
  width: 100%;
}

.blankslate {
  --blankslate-outer-padding-block: var(--base-size-32);
  --blankslate-outer-padding-inline: var(--base-size-32);

  position: relative;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--blankslate-outer-padding-block) var(--blankslate-outer-padding-inline);
  text-align: center;

  /* stylelint-disable-next-line selector-max-type */
}

.blankslate p {
    font-size: var(--text-body-size-large);
    color: var(--fgColor-muted);
  }

/* stylelint-disable-next-line selector-max-type */

.blankslate code {
    padding: var(--base-size-2) var(--base-size-4) var(--base-size-4);
    font-size: var(--text-body-size-medium);
    background: var(--bgColor-default);
    border: var(--borderWidth-thin) solid var(--borderColor-muted);
    border-radius: var(--borderRadius-medium);
  }

/* stylelint-disable-next-line selector-max-type */

.blankslate img {
    width: 56px;
    height: 56px;
  }

.blankslate-icon {
  /* stylelint-disable-next-line primer/spacing */
  margin-right: var(--control-small-gap);
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: var(--stack-gap-condensed);
  /* stylelint-disable-next-line primer/spacing */
  margin-left: var(--control-small-gap);
  color: var(--fgColor-muted);
}

.blankslate-image {
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: var(--stack-gap-normal);
}

.blankslate-heading {
  margin-bottom: var(--base-size-4);
  font-size: var(--text-title-size-medium);
  font-weight: var(--text-title-weight-medium);
}

.blankslate-action {
  /* stylelint-disable-next-line primer/spacing */
  margin-top: var(--stack-gap-normal);
}

.blankslate-action:first-of-type {
    /* stylelint-disable-next-line primer/spacing */
    margin-top: var(--stack-gap-spacious);
  }

.blankslate-action:last-of-type {
    /* stylelint-disable-next-line primer/spacing */
    margin-bottom: var(--stack-gap-condensed);
  }

.blankslate-capped {
  border-radius: 0 0 var(--borderRadius-medium) var(--borderRadius-medium);
}

.blankslate-spacious {
  --blankslate-outer-padding-block: var(--base-size-80);
  --blankslate-outer-padding-inline: var(--base-size-40);
}

.blankslate-narrow {
  max-width: 485px;
  margin: 0 auto;
}

/* was .large-format
** QUESTION: should we deprecate this? */

/* stylelint-disable-next-line selector-max-type */

.blankslate-large img {
    width: 80px;
    height: 80px;
  }

/* stylelint-disable-next-line selector-max-type */

.blankslate-large h3 {
    /* stylelint-disable-next-line primer/spacing */
    margin: var(--stack-gap-normal) 0;

    /* font-size: $h3-size; // This doesn't actually make the text larger. Should this be $h2-size? */
    /* stylelint-disable-next-line primer/typography */
    font-size: 24px;
  }

/* stylelint-disable-next-line selector-max-type */

.blankslate-large p {
    font-size: var(--text-body-size-large);
  }

/* was .clean-background
** TO DO: deprecate this and use utility instead */

.blankslate-clean-background {
  border: 0;
}

/* At the time these styles were written,
   `34rem` was our "small" breakpoint width */

@container (max-width: 34rem) {
  .blankslate {
    --blankslate-outer-padding-block: var(--base-size-20);
    --blankslate-outer-padding-inline: var(--base-size-20);
  }

  .blankslate-spacious {
    --blankslate-outer-padding-block: var(--base-size-44);
    --blankslate-outer-padding-inline: var(--base-size-28);
  }

  .blankslate-icon {
    /* stylelint-disable-next-line primer/spacing */
    margin-bottom: var(--stack-gap-condensed);
  }

  .blankslate-heading {
    font-size: var(--text-title-size-small);
  }

  /* stylelint-disable-next-line selector-max-type */
  .blankslate p {
    font-size: var(--text-body-size-medium);
  }

  .blankslate-action {
    /* stylelint-disable-next-line primer/spacing */
    margin-top: var(--stack-gap-condensed);
  }

    .blankslate-action:first-of-type {
      /* stylelint-disable-next-line primer/spacing */
      margin-top: var(--stack-gap-normal);
    }

    .blankslate-action:last-of-type {
      /* stylelint-disable-next-line primer/spacing */
      margin-bottom: calc(var(--stack-gap-condensed) / 2);
    }
}

/* stylelint-disable selector-max-type, selector-no-qualifying-type */

anchored-position[popover] {
  position: absolute;
  min-width: 192px;
  padding: 0;
  overflow: visible;
  border-width: 0;
}

anchored-position:not(.Overlay) {
  background: none;
}

.Overlay[popover]:not(:popover-open) {
  display: none
}

anchored-position.not-anchored::backdrop, dialog::backdrop {
  background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted));
}

select-panel dialog::backdrop {
  background: none;
}

@media (forced-colors: active) {
  .Overlay {
    outline: solid 1px transparent;
  }
}

.breadcrumb-item {
  display: inline-block;
  /* stylelint-disable-next-line primer/spacing */
  margin-left: -0.35em;
  list-style: none;
  max-width: 100%;
}

.breadcrumb-item::after {
    display: inline-block;
    height: 0.8em;
    /* stylelint-disable-next-line primer/spacing */
    margin: 0 0.5em;
    content: '';
    /* stylelint-disable-next-line primer/borders */
    border-right: 0.1em solid var(--borderColor-neutral-emphasis);
    transform: rotate(15deg) translateY(0.0625em);
  }

.breadcrumb-item:first-child {
    margin-left: 0;
  }

:is(.breadcrumb-item-selected,.breadcrumb-item[aria-current]:not([aria-current='false']))::after {
    content: none;
  }

/* stylelint-disable-next-line selector-max-type */

.breadcrumb-item-selected a {
  color: var(--fgColor-default);
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  cursor: default !important;
}

/* stylelint-disable selector-no-qualifying-type */

/* stylelint-disable selector-max-type */

/* stylelint-disable primer/spacing */

/* CSS for Button  */

/* temporary, pre primitives release */

:root {
  --duration-fast: 80ms;
  --easing-easeInOut: cubic-bezier(0.65, 0, 0.35, 1);
}

/* base button */

.Button {
  position: relative;
  display: inline-flex;
  min-width: max-content;
  height: var(--control-medium-size);
  padding: 0 var(--control-medium-paddingInline-normal);
  font-size: var(--text-body-size-medium);
  font-weight: var(--base-text-weight-medium);
  color: var(--button-default-fgColor-rest);
  text-align: center;
  cursor: pointer;
  flex-direction: row;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
  border: var(--borderWidth-thin) solid;
  border-color: transparent;
  border-radius: var(--borderRadius-medium);
  transition: var(--duration-fast) var(--easing-easeInOut);
  transition-property: color, fill, background-color, border-color;
  justify-content: space-between;
  align-items: center;
  gap: var(--base-size-4);

  /* mobile friendly sizing */
}

@media (pointer: coarse) {
      :is(.Button::before) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-height: 48px;
    content: "";
    transform: translateX(-50%) translateY(-50%);
    min-width: 48px;
  }
  }

/* base states */

.Button:hover {
    transition-duration: var(--duration-fast);
  }

.Button:active {
    transition: none;
  }

.Button:disabled,.Button[aria-disabled='true'] {
    cursor: not-allowed;
    box-shadow: none;
  }

.Button.Button--iconOnly {
    color: var(--fgColor-muted);
  }

:is(a.Button,summary.Button):hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/* wrap grid content to allow trailingAction to lock-right */

.Button-content {
  flex: 1 0 auto;
  display: grid;
  grid-template-areas: 'leadingVisual text trailingVisual';
  grid-template-columns: min-content minmax(0, auto) min-content;
  align-items: center;
  place-content: center;

  /* padding-bottom: 1px; optical alignment for firefox */
}

.Button-content > :not(:last-child) {
    margin-right: var(--control-medium-gap);
  }

/* center child elements for fullWidth */

.Button-content--alignStart {
  justify-content: start;
}

/* button child elements */

/* align svg */

.Button-visual {
  display: flex;
  pointer-events: none; /* allow click handler to work, avoiding visuals */
}

.Button-visual .Counter {
    color: inherit;
    background-color: var(--buttonCounter-default-bgColor-rest);
  }

.Button-label {
  line-height: var(--text-body-lineHeight-medium);
  white-space: nowrap;
  grid-area: text;
}

.Button-leadingVisual {
  grid-area: leadingVisual;
}

.Button-leadingVisual svg {
  fill: currentcolor;
}

.Button-trailingVisual {
  grid-area: trailingVisual;
}

.Button-trailingAction {
  margin-right: calc(var(--base-size-4) * -1);
}

/* sizes */

.Button--small {
  min-width: var(--control-small-size);
  height: var(--control-small-size);
  padding: 0 var(--control-small-paddingInline-condensed);
  font-size: var(--text-body-size-small);
  gap: var(--control-small-gap);
}

.Button--small .Button-label {
    line-height: var(--text-body-lineHeight-small);
  }

:is(.Button--small .Button-content) > :not(:last-child) {
      margin-right: var(--control-small-gap);
    }

.Button--large {
  height: var(--control-large-size);
  padding: 0 var(--control-large-paddingInline-spacious);
  gap: var(--control-large-gap);
}

.Button--large .Button-label {
    line-height: var(--text-body-lineHeight-large);
  }

:is(.Button--large .Button-content) > :not(:last-child) {
      margin-right: var(--control-large-gap);
    }

.Button--fullWidth {
  width: 100%;
}

/* allow button label text to wrap */

.Button--labelWrap {
  min-width: fit-content;
  height: unset;
  min-height: var(--control-medium-size);
}

.Button--labelWrap .Button-content {
    flex: 1 1 auto;
    align-self: stretch;
    padding-block: calc(var(--control-medium-paddingBlock) - var(--base-size-2));
  }

.Button--labelWrap .Button-label {
    white-space: unset;
  }

.Button--labelWrap.Button--small {
    height: unset;
    min-height: var(--control-small-size);
  }

.Button--labelWrap.Button--small .Button-content {
      padding-block: calc(var(--control-small-paddingBlock) - var(--base-size-2));
    }

.Button--labelWrap.Button--large {
    height: unset;
    min-height: var(--control-large-size);
    padding-inline: var(--control-large-paddingInline-spacious);
  }

.Button--labelWrap.Button--large .Button-content {
      padding-block: calc(var(--control-large-paddingBlock) - var(--base-size-2));
    }

/* variants */

/* primary */

.Button--primary {
  color: var(--button-primary-fgColor-rest);
  fill: var(--button-primary-iconColor-rest);
  background-color: var(--button-primary-bgColor-rest);
  border-color: var(--button-primary-borderColor-rest);
  box-shadow: var(--shadow-resting-small, var(--color-btn-primary-shadow));
}

.Button--primary.Button--iconOnly {
    color: var(--button-primary-iconColor-rest);
  }

.Button--primary:hover:not(:disabled,.Button--inactive) {
    background-color: var(--button-primary-bgColor-hover);
    border-color: var(--button-primary-borderColor-hover);
  }

/* fallback :focus state */

.Button--primary:focus {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: -2px;
    box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis);

    /* remove fallback :focus if :focus-visible is supported */
  }

.Button--primary:focus:not(:focus-visible) {
      outline: solid 1px transparent;
      box-shadow: none;
    }

/* default focus state */

.Button--primary:focus-visible {
    outline: 2px solid var(--focus-outlineColor);
    outline-offset: -2px;
    box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis);
  }

.Button--primary:active:not(:disabled),.Button--primary[aria-pressed='true'] {
    background-color: var(--button-primary-bgColor-active);
    box-shadow: var(--button-primary-shadow-selected);
  }

.Button--primary:disabled,.Button--primary[aria-disabled='true'] {
    color: var(--button-primary-fgColor-disabled);
    fill: var(--button-primary-fgColor-disabled);
    background-color: var(--button-primary-bgColor-disabled);
    border-color: var(--button-primary-borderColor-disabled);
  }

.Button--primary .Counter {
    color: inherit;
    background-color: var(--buttonCounter-primary-bgColor-rest);
  }

/* default (secondary) */

.Button--secondary {
  color: var(--button-default-fgColor-rest);
  fill: var(--fgColor-muted); /* help this */
  background-color: var(--button-default-bgColor-rest);
  border-color: var(--button-default-borderColor-rest);
  box-shadow: var(--button-default-shadow-resting), var(--button-default-shadow-inset);
}

.Button--secondary:hover:not(:disabled,.Button--inactive) {
    background-color: var(--button-default-bgColor-hover);
    border-color: var(--button-default-borderColor-hover);
  }

.Button--secondary:active:not(:disabled) {
    background-color: var(--button-default-bgColor-active);
    border-color: var(--button-default-borderColor-active);
  }

.Button--secondary[aria-pressed='true'] {
    background-color: var(--button-default-bgColor-selected);
    box-shadow: var(--shadow-inset);
  }

.Button--secondary:disabled,.Button--secondary[aria-disabled='true'] {
    color: var(--control-fgColor-disabled);
    fill: var(--control-fgColor-disabled);
    background-color: var(--button-default-bgColor-disabled);
    border-color: var(--button-default-borderColor-disabled);
  }

.Button--invisible {
  color: var(--button-invisible-fgColor-rest);
}

.Button--invisible.Button--iconOnly {
    color: var(--button-invisible-iconColor-rest, var(--color-fg-muted));
  }

.Button--invisible:hover:not(:disabled,.Button--inactive) {
    background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg));
  }

.Button--invisible[aria-pressed='true'],.Button--invisible:active:not(:disabled) {
    background-color: var(--button-invisible-bgColor-active);
  }

.Button--invisible:disabled,.Button--invisible[aria-disabled='true'] {
    color: var(--button-invisible-fgColor-disabled);
    fill: var(--button-invisible-fgColor-disabled);
    background-color: var(--button-invisible-bgColor-disabled);
    border-color: var(--button-invisible-borderColor-disabled);
  }

/* if button has no visuals, use link blue for text */

.Button--invisible.Button--invisible-noVisuals .Button-label {
    color: var(--button-invisible-fgColor-rest);
  }

.Button--invisible .Button-visual {
    color: var(--button-invisible-iconColor-rest, var(--color-fg-muted));
  }

:is(.Button--invisible .Button-visual) .Counter {
      color: var(--fgColor-default);
    }

.Button--link {
  display: inline-block;
  min-width: fit-content;
  height: unset;
  padding: 0;
  font-size: inherit;
  color: var(--fgColor-link);
  fill: var(--fgColor-link);
  border: none;
}

.Button--link:hover:not(:disabled,.Button--inactive) {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.Button--link:focus-visible,.Button--link:focus {
    outline-offset: 2px;
  }

.Button--link:disabled,.Button--link[aria-disabled='true'] {
    color: var(--control-fgColor-disabled);
    fill: var(--control-fgColor-disabled);
    background-color: transparent;
    border-color: transparent;
  }

.Button--link .Button-label {
      white-space: unset;
  }

/* danger */

.Button--danger {
  color: var(--button-danger-fgColor-rest);
  fill: var(--button-danger-iconColor-rest);
  background-color: var(--button-danger-bgColor-rest);
  border-color: var(--button-danger-borderColor-rest);
  box-shadow: var(--button-default-shadow-resting), var(--button-default-shadow-inset);
}

.Button--danger.Button--iconOnly {
    color: var(--button-danger-iconColor-rest);
  }

.Button--danger:hover:not(:disabled,.Button--inactive) {
    color: var(--button-danger-fgColor-hover);
    fill: var(--button-danger-fgColor-hover);
    background-color: var(--button-danger-bgColor-hover);
    border-color: var(--button-danger-borderColor-hover);
    box-shadow: var(--shadow-resting-small);
  }

.Button--danger:hover:not(:disabled,.Button--inactive) .Counter {
      color: var(--buttonCounter-danger-fgColor-hover);
      background-color: var(--buttonCounter-danger-bgColor-hover);
    }

.Button--danger:active:not(:disabled),.Button--danger[aria-pressed='true'] {
    color: var(--button-danger-fgColor-active);
    fill: var(--button-danger-fgColor-active);
    background-color: var(--button-danger-bgColor-active);
    border-color: var(--button-danger-borderColor-active);
    box-shadow: var(--button-danger-shadow-selected);
  }

.Button--danger:disabled,.Button--danger[aria-disabled='true'] {
    color: var(--button-danger-fgColor-disabled);
    fill: var(--button-danger-fgColor-disabled);
    background-color: var(--button-danger-bgColor-disabled);
    border-color: var(--button-default-borderColor-disabled);
  }

:is(.Button--danger:disabled,.Button--danger[aria-disabled='true']) .Counter {
      color: var(--buttonCounter-danger-fgColor-disabled);
      background-color: var(--buttonCounter-danger-bgColor-disabled);
    }

.Button--danger .Counter {
    color: var(--buttonCounter-danger-fgColor-rest);
    background-color: var(--buttonCounter-danger-bgColor-rest);
  }

.Button--iconOnly {
  display: inline-grid;
  width: var(--control-medium-size);
  padding: unset;
  place-content: center;
}

.Button--iconOnly.Button--small {
    width: var(--control-small-size);
  }

.Button--iconOnly.Button--large {
    width: var(--control-large-size);
  }

/* `disabled` takes precedence over `inactive` */

.Button--inactive:not([aria-disabled='true'], :disabled) {
  color: var(--button-inactive-fgColor);
  cursor: default;
  background-color: var(--button-inactive-bgColor);
  border: 0;
}

.ButtonGroup {
  display: inline-flex;
}

.ButtonGroup .Button {
    /* stylelint-disable-next-line primer/spacing */
    margin-inline-end: -1px;
    position: relative;
    border-radius: 0;
  }

:is(.ButtonGroup .Button):focus,:is(.ButtonGroup .Button):active,:is(.ButtonGroup .Button):hover {
      z-index: 1;
    }

.ButtonGroup > :first-child .Button {
    border-top-left-radius: var(--borderRadius-medium);
    border-bottom-left-radius: var(--borderRadius-medium);
  }

.ButtonGroup > :last-child .Button {
    border-top-right-radius: var(--borderRadius-medium);
    border-bottom-right-radius: var(--borderRadius-medium);
  }

/* Counter */

.Counter {
  display: inline-block;
  min-width: var(--base-size-20); /* makes sure it's a circle with just one digit */
  padding: 0 var(--base-size-6);
  font-size: var(--text-body-size-small);
  font-weight: var(--base-text-weight-medium);
  /* stylelint-disable-next-line primer/typography */
  line-height: calc(var(--base-size-20) - var(--borderWidth-thin) * 2); /* 20px - 2px for the borders */
  color: var(--fgColor-default);
  text-align: center;
  background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted));
  border: var(--borderWidth-thin) solid var(--counter-borderColor);
  /* stylelint-disable-next-line primer/borders */
  border-radius: 2em;
}

.Counter:empty {
    display: none;
  }

/* Is this selector used? could not find any use of it */

.Counter .octicon {
    vertical-align: text-top;
    opacity: 0.8;
  }

.Counter--primary {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-neutral-emphasis);
}

.Counter--secondary {
  color: var(--fgColor-muted);
  background-color: var(--bgColor-neutral-muted);
}

/* stylelint-disable primer/spacing */

/* flash */

/* Default flash */

.flash:not(.Banner) {
  position: relative;
  padding: var(--base-size-20) var(--control-medium-paddingInline-spacious);

  /* Default color */
  color: var(--fgColor-default);
  background-image: linear-gradient(var(--bgColor-accent-muted), var(--bgColor-accent-muted));
  border-color: var(--borderColor-accent-muted);
  border-style: solid;
  border-width: var(--borderWidth-thin);
  border-radius: var(--borderRadius-medium);
}

.flash:not(.Banner) .octicon {
    margin-right: var(--base-size-12);
    color: var(--fgColor-accent);
  }

/* stylelint-disable-next-line selector-max-type */

.flash:not(.Banner) p:last-child {
    margin-bottom: 0;
  }

/* Contain the flash messages */

.flash-messages {
  margin-bottom: var(--stack-gap-spacious);
}

/* Close button */

.flash-close:not(.Banner-close) {
  float: right;
  margin-top: calc(var(--base-size-4) * -1);
  text-align: center;
  cursor: pointer;

  /* Undo `<button>` styles */
  background: none;
  border: 0;
  appearance: none;
}

.flash-close:not(.Banner-close):hover {
    opacity: 0.7;
  }

.flash-close:not(.Banner-close):active {
    opacity: 0.5;
  }

.flash-close:not(.Banner-close) .octicon {
    margin-right: 0;
  }

/* Action button */

.flash-action:not(.Banner-actions) {
  float: right;
  margin-top: -3px;
  margin-left: var(--stack-gap-spacious);
  background-clip: padding-box;
}

.flash-action.btn:not(.Banner-actions) .octicon {
    margin-right: var(--control-small-gap);
    color: var(--fgColor-muted);
  }

.flash-action.btn-primary:not(.Banner-actions) {
    background-clip: border-box;
  }

.flash-action.btn-primary:not(.Banner-actions) .octicon {
      color: inherit;
    }

/* Color variations */

.flash-warn:not(.Banner) {
  color: var(--fgColor-default);
  background-image: linear-gradient(var(--bgColor-attention-muted), var(--bgColor-attention-muted));
  border-color: var(--borderColor-attention-muted);
}

.flash-warn:not(.Banner) .octicon {
    color: var(--fgColor-attention);
  }

.flash-error:not(.Banner) {
  color: var(--fgColor-default);
  background-image: linear-gradient(var(--bgColor-danger-muted), var(--bgColor-danger-muted));
  border-color: var(--borderColor-danger-muted);
}

.flash-error:not(.Banner) .octicon {
    color: var(--fgColor-danger);
  }

.flash-success:not(.Banner) {
  color: var(--fgColor-default);
  background-image: linear-gradient(var(--bgColor-success-muted), var(--bgColor-success-muted));
  border-color: var(--borderColor-success-muted);
}

.flash-success:not(.Banner) .octicon {
    color: var(--fgColor-success);
  }

/* Layout variations */

.flash-full:not(.Banner) {
  margin-top: calc(var(--borderWidth-thin) * -1);
  border-width: var(--borderWidth-thin) 0;
  border-radius: 0;
}

/* A banner rendered at the top of the page. */

.flash-banner {
  position: fixed;
  top: 0;
  z-index: 90;
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* Makes sure the background is opaque to cover any content underneath */

.flash-full,
.flash-banner {
  background-color: var(--bgColor-default);
}

/* FIXME deprecate this */

.warning {
  padding: 0.5em;
  margin-bottom: 0.8em;
  font-weight: var(--base-text-weight-semibold);
  background-color: var(--bgColor-attention-muted);
}

/* Labels */

/* Provide a wrapper to ensure labels stick together */

.labels {
  position: relative;
}

/* Default 20px */

.label, /* TODO: Deprecate */
.Label {
  display: inline-block;
  padding: 0 var(--base-size-6);
  font-size: var(--text-body-size-small);
  font-weight: var(--base-text-weight-medium);
  /* stylelint-disable-next-line primer/typography */
  line-height: 18px;
  white-space: nowrap;
  border: var(--borderWidth-thin) solid var(--borderColor-default);
  border-radius: var(--borderRadius-full);
}

:is(.label,.Label):hover {
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/* Large 24px */

.Label--large {
  padding: 0 var(--base-size-8);
  /* stylelint-disable-next-line primer/typography */
  line-height: 22px;
}

/* Inline */

/* Doesn't increase height of parent element
** Can be used with different font-sizes */

.Label--inline {
  display: inline;
  /* stylelint-disable-next-line primer/spacing */
  padding: 0.12em 0.5em;
  /* stylelint-disable-next-line primer/typography */
  font-size: 85%;
}

/* Contrast */

.Label--primary {
  color: var(--fgColor-default);
  border-color: var(--borderColor-neutral-emphasis);
}

.Label--secondary {
  color: var(--fgColor-muted);
  border-color: var(--borderColor-default);
}

/* Colors */

.Label--info, /* TODO: deprecate */
.Label--accent {
  color: var(--fgColor-accent);
  border-color: var(--borderColor-accent-emphasis);
}

.Label--success {
  color: var(--fgColor-success);
  border-color: var(--borderColor-success-emphasis);
}

.Label--warning, /* TODO: deprecate */
.Label--attention {
  color: var(--fgColor-attention);
  border-color: var(--borderColor-attention-emphasis);
}

.Label--severe {
  color: var(--fgColor-severe);
  border-color: var(--borderColor-severe-emphasis);
}

.Label--danger {
  color: var(--fgColor-danger);
  border-color: var(--borderColor-danger-emphasis);
}

.Label--open {
  color: var(--fgColor-open);
  border-color: var(--borderColor-open-emphasis);
}

.Label--closed {
  color: var(--fgColor-closed);
  border-color: var(--borderColor-closed-emphasis);
}

.Label--done {
  color: var(--fgColor-done);
  border-color: var(--borderColor-done-emphasis);
}

.Label--sponsors {
  color: var(--fgColor-sponsors);
  border-color: var(--borderColor-sponsors-emphasis);
}

/* Links */

.Link {
  color: var(--fgColor-accent);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.Link:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    cursor: pointer;
  }

.Link:focus {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.Link:focus,.Link:focus-visible {
    outline-offset: 0;
  }

.Link--underline {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.Link--primary {
  color: var(--fgColor-default) !important;
}

.Link--primary:hover {
    color: var(--fgColor-accent) !important;
  }

.Link--secondary {
  color: var(--fgColor-muted) !important;
}

.Link--secondary:hover {
    color: var(--fgColor-accent) !important;
  }

.Link--muted {
  color: var(--fgColor-muted) !important;
}

.Link--muted:hover {
    color: var(--fgColor-accent) !important;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

/* Set the link color only on hover
   Useful when you want only part of a link to turn blue on hover */

.Link--onHover:hover {
    color: var(--fgColor-accent) !important;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    cursor: pointer;
  }

/* When using a color utility class inside of a link class
   color should change with link on hover. */

:is(.Link--secondary,.Link--primary,.Link--muted):hover [class*='color-fg'] {
    color: inherit !important;
  }

.Link-content {
  display: inline-flex;
  align-items: center;
  /* stylelint-disable-next-line primer/typography */
  line-height: normal;
  gap: var(--base-size-4);
  text-decoration: inherit;
}

/* stylelint-disable primer/spacing */

/* Popover */

.Popover {
  position: absolute;
  z-index: 100;
}

.Popover-message {
  position: relative;
  width: 232px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--overlay-bgColor);
  border: var(--borderWidth-thin) solid var(--borderColor-default);
  border-radius: var(--borderRadius-medium);

  /* adding !important to override utility classes used in dotcom */
  box-shadow: var(--shadow-floating-legacy, var(--color-shadow-large)) !important;

  /* Carets */
}

.Popover-message::before,.Popover-message::after {
    position: absolute;
    left: 50%;
    display: inline-block;
    content: '';
  }

.Popover-message::before {
    top: -16px;
    margin-left: -9px;
    /* stylelint-disable-next-line primer/borders */
    border: 8px solid transparent;
    border-bottom-color: var(--borderColor-default);
  }

.Popover-message::after {
    top: -14px;
    margin-left: -8px;
    /* stylelint-disable-next-line primer/borders */
    border: 7px solid transparent;
    /* stylelint-disable-next-line primer/colors */
    border-bottom-color: var(--overlay-bgColor);
  }

/* No caret */

.Popover-message--no-caret::before,.Popover-message--no-caret::after {
    display: none;
  }

/* Bottom-oriented carets */

:is(.Popover-message--bottom,.Popover-message--bottom-right,.Popover-message--bottom-left)::before,:is(.Popover-message--bottom,.Popover-message--bottom-right,.Popover-message--bottom-left)::after {
    top: auto;
    border-bottom-color: transparent;
  }

:is(.Popover-message--bottom,.Popover-message--bottom-right,.Popover-message--bottom-left)::before {
    bottom: -16px;
    border-top-color: var(--borderColor-default);
  }

:is(.Popover-message--bottom,.Popover-message--bottom-right,.Popover-message--bottom-left)::after {
    bottom: -14px;
    /* stylelint-disable-next-line primer/colors */
    border-top-color: var(--overlay-bgColor);
  }

/* Top and Bottom: Right-oriented carets */

.Popover-message--top-right,
.Popover-message--bottom-right {
  right: -9px;
  margin-right: 0;
}

:is(.Popover-message--top-right,.Popover-message--bottom-right)::before,:is(.Popover-message--top-right,.Popover-message--bottom-right)::after {
    left: auto;
    margin-left: 0;
  }

:is(.Popover-message--top-right,.Popover-message--bottom-right)::before {
    right: var(--base-size-20);
  }

:is(.Popover-message--top-right,.Popover-message--bottom-right)::after {
    right: var(--base-size-20);
    margin-right: 1px;
  }

/* Top and Bottom: Left-oriented carets */

.Popover-message--top-left,
.Popover-message--bottom-left {
  left: -9px;
  margin-left: 0;
}

:is(.Popover-message--top-left,.Popover-message--bottom-left)::before,:is(.Popover-message--top-left,.Popover-message--bottom-left)::after {
    left: var(--base-size-24);
    margin-left: 0;
  }

:is(.Popover-message--top-left,.Popover-message--bottom-left)::after {
    left: var(--base-size-24);
    margin-left: 1px;
  }

/* Right- and Left-oriented carets */

:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom,.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::before,:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom,.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::after {
    top: 50%;
    left: auto;
    margin-left: 0;
    border-bottom-color: transparent;
  }

:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom,.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::before {
    margin-top: -9px;
  }

:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom,.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::after {
    margin-top: -8px;
  }

/* Right-oriented carets */

:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom)::before {
    right: -16px;
    border-left-color: var(--borderColor-default);
  }

:is(.Popover-message--right,.Popover-message--right-top,.Popover-message--right-bottom)::after {
    right: -14px;
    /* stylelint-disable-next-line primer/colors */
    border-left-color: var(--overlay-bgColor);
  }

/* Left-oriented carets */

:is(.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::before {
    left: -16px;
    border-right-color: var(--borderColor-default);
  }

:is(.Popover-message--left,.Popover-message--left-top,.Popover-message--left-bottom)::after {
    left: -14px;
    margin-bottom: 1px;
    /* stylelint-disable-next-line primer/colors */
    border-right-color: var(--overlay-bgColor);
  }

/* Right and Left: Top-oriented carets */

:is(.Popover-message--right-top,.Popover-message--left-top)::before,:is(.Popover-message--right-top,.Popover-message--left-top)::after {
    top: var(--base-size-24);
  }

/* Right and Left: Bottom-oriented carets */

:is(.Popover-message--right-bottom,.Popover-message--left-bottom)::before,:is(.Popover-message--right-bottom,.Popover-message--left-bottom)::after {
    top: auto;
  }

:is(.Popover-message--right-bottom,.Popover-message--left-bottom)::before {
    bottom: var(--base-size-16);
  }

:is(.Popover-message--right-bottom,.Popover-message--left-bottom)::after {
    bottom: var(--base-size-16);
    margin-bottom: 1px;
  }

@media (min-width: 544px) {
  .Popover-message--large {
    min-width: 320px;
  }
}

/* Responsive Popover
** For < md it will show full-width anchored to the bottom */

@media (max-width: 767.98px) {
  .Popover {
    position: fixed;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .Popover-message {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto !important;
    margin: var(--stack-gap-condensed);
  }

  /* Increase tap area for touch input */
  .Popover-message > .btn-octicon {
    padding: var(--control-medium-paddingInline-normal) !important;
  }

  /* Remove caret */
  .Popover-message::after,
  .Popover-message::before {
    display: none;
  }
}

/* Progress */

.Progress {
  display: flex;
  height: 8px;
  overflow: hidden;
  background-color: var(--bgColor-neutral-muted);
  border-radius: var(--borderRadius-medium);
  outline: 1px solid transparent; /* Support Firefox custom colors */
}

.Progress--large {
  height: 10px;
}

.Progress--small {
  height: 5px;
}

.Progress-item {
  outline: 2px solid transparent; /* Support Firefox custom colors */
}

.Progress-item + .Progress-item {
  margin-left: var(--base-size-2);
}

/* State */

/* Default 32px */

.state, /* TODO: Deprecate */
.State {
  display: inline-block;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--base-size-4) var(--control-medium-paddingInline-normal);
  font-size: var(--text-body-size-medium);
  font-weight: var(--base-text-weight-medium);
  /* stylelint-disable-next-line primer/typography */
  line-height: var(--control-medium-lineBoxHeight);
  text-align: center;
  white-space: nowrap;
  /* stylelint-disable-next-line primer/borders */
  border-radius: 2em;
}

.state, /* TODO: Deprecate */
.State,
.State--draft {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-neutral-emphasis);
  border: var(--borderWidth-thin) solid transparent;
  box-shadow: var(--boxShadow-thin) var(--borderColor-neutral-emphasis);
}

.State--open {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-open-emphasis, var(--color-open-emphasis));
  box-shadow: var(--boxShadow-thin) var(--borderColor-open-emphasis);
}

.State--merged {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-done-emphasis, var(--color-done-emphasis));
  box-shadow: var(--boxShadow-thin) var(--borderColor-done-emphasis);
}

.State--closed {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-closed-emphasis, var(--color-closed-emphasis));
  box-shadow: var(--boxShadow-thin) var(--borderColor-closed-emphasis);
}

/* Small 24px */

.State--small {
  /* stylelint-disable-next-line primer/spacing */
  padding: 0 10px;
  font-size: var(--text-body-size-small);
  /* stylelint-disable-next-line primer/typography */
  line-height: var(--base-size-24);
}

.State--small .octicon {
    width: 1em; /* Ensures different icons don't change State indicator width */
  }

/* Subhead */

.Subhead {
  display: flex;
  /* stylelint-disable-next-line primer/spacing */
  padding-bottom: var(--stack-padding-condensed);
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: var(--stack-gap-normal);
  border-bottom: var(--borderWidth-thin) solid var(--borderColor-muted);
  flex-flow: row wrap;
  justify-content: flex-end; /* Keep actions right aligned. */
}

/* Modifier class to give a lot of breathing room between sections of content. */

.Subhead--spacious {
  margin-top: var(--base-size-40);
}

/* <h2> sized heading with normal font weight */

.Subhead-heading {
  font-weight: var(--base-text-weight-normal);
  flex: 1 1 auto;
  order: 0;
}

.Subhead-heading--large {
  /* stylelint-disable-next-line primer/typography */
  font-size: var(--base-size-24);
}

.Subhead-heading--medium {
  font-size: var(--text-title-size-medium);
}

/* Make the text bold and red for dangerous content */

.Subhead-heading--danger {
  font-weight: var(--base-text-weight-semibold);
  color: var(--fgColor-danger);
}

/* One-liner of supporting text */

.Subhead-description {
  font-size: var(--text-body-size-medium);
  color: var(--fgColor-muted);
  flex: 1 100%;
  order: 2;
}

/* Add 1 or 2 buttons to the right of the heading */

.Subhead-actions {
  margin: var(--base-size-4) 0 var(--base-size-4) var(--base-size-4);
  align-self: center;
  justify-content: flex-end;
  order: 1;
}

.Subhead-actions + .Subhead-description {
    margin-top: var(--base-size-4);
  }

/* Truncate */

.Truncate {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
}

.Truncate > .Truncate-text {
    min-width: 1ch;
    max-width: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

:is(.Truncate > .Truncate-text) + .Truncate-text {
      /* stylelint-disable-next-line primer/spacing */
      margin-left: var(--control-small-gap);
    }

.Truncate-text--primary:is(.Truncate > .Truncate-text) {
      flex-basis: 200%;
    }

.Truncate-text--expandable:is(.Truncate > .Truncate-text):hover,.Truncate-text--expandable:is(.Truncate > .Truncate-text):focus,.Truncate-text--expandable:is(.Truncate > .Truncate-text):active {
      max-width: 100% !important;
      flex-shrink: 0;
      cursor: pointer;
    }

/* to be renamed */

/* TimelineItem */

.TimelineItem {
  position: relative;
  display: flex;
  /* stylelint-disable-next-line primer/spacing */
  padding: var(--stack-padding-normal) 0;
  /* stylelint-disable-next-line primer/spacing */
  margin-left: var(--stack-gap-normal);

  /* The Timeline */
}

.TimelineItem::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: var(--borderWidth-thick);
    content: '';
    /* stylelint-disable-next-line primer/colors */
    background-color: var(--borderColor-muted);
  }

.TimelineItem:target .TimelineItem-badge {
    border-color: var(--borderColor-accent-emphasis);
    /* stylelint-disable-next-line primer/box-shadow */
    box-shadow: 0 0 0.2em var(--borderColor-accent-muted);
  }

.TimelineItem-badge {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--control-medium-size);
  height: var(--control-medium-size);
  /* stylelint-disable-next-line primer/spacing */
  margin-right: var(--controlStack-medium-gap-condensed);
  /* stylelint-disable-next-line primer/spacing */
  margin-left: calc(var(--control-medium-size) / -2 + 1px);
  color: var(--fgColor-muted);
  align-items: center;
  background-color: var(--timelineBadge-bgColor);
  /* stylelint-disable-next-line primer/colors */
  border: var(--borderWidth-thick) solid var(--bgColor-default);
  border-radius: 50%;
  justify-content: center;
  flex-shrink: 0;
}

.TimelineItem-badge--success {
  color: var(--fgColor-onEmphasis);
  background-color: var(--bgColor-success-emphasis);
  border: var(--borderWidth-thin) solid transparent;
}

.TimelineItem-body {
  min-width: 0;
  max-width: 100%;
  margin-top: var(--base-size-4);
  color: var(--fgColor-muted);
  flex: auto;
}

.TimelineItem-avatar {
  position: absolute;
  /* stylelint-disable-next-line primer/spacing */
  left: -72px;
  z-index: 1;
}

.TimelineItem-break {
  position: relative;
  z-index: 1;
  height: var(--stack-gap-spacious);
  margin: 0;
  /* stylelint-disable-next-line primer/spacing */
  margin-bottom: calc(var(--stack-gap-normal) * -1);
  /* stylelint-disable-next-line primer/spacing */
  margin-left: -56px;
  background-color: var(--bgColor-default);
  border: 0;
  border-top: var(--borderWidth-thicker) solid var(--borderColor-default);
}

.TimelineItem--condensed {
  padding-top: var(--base-size-4);
  padding-bottom: 0;

  /* TimelineItem--condensed is often grouped. (commits) */
}

.TimelineItem--condensed:last-child {
    /* stylelint-disable-next-line primer/spacing */
    padding-bottom: var(--stack-gap-normal);
  }

.TimelineItem--condensed .TimelineItem-badge {
    height: var(--base-size-16);
    margin-top: var(--base-size-8);
    margin-bottom: var(--base-size-8);
    color: var(--fgColor-muted);
    background-color: var(--bgColor-default);
    border: 0;
  }

/* CSS truncate */

/* css-truncate will shorten text with an ellipsis. */

/* css-truncate-overflow will shorten text with an ellipsis when overflowing */

.css-truncate.css-truncate-overflow,.css-truncate .css-truncate-overflow,.css-truncate.css-truncate-target,.css-truncate .css-truncate-target {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

/* css-truncate-target will shorten text with an ellipsis and a max width */

.css-truncate.css-truncate-target,.css-truncate .css-truncate-target {
    display: inline-block;
    max-width: 125px;
    vertical-align: top;
  }

.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target,.css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target,.css-truncate.expandable:hover .css-truncate-target,.css-truncate.expandable.css-truncate-target:hover {
    max-width: 10000px !important;
  }

/* CSS for ActionBar  */

.ActionBar {
  position: relative;
  display: flex !important;
  min-width: calc(var(--control-medium-size) * 3);
  align-items: center;
  flex-grow: 1;
  flex-shrink: 1;
  box-sizing: content-box;
  overflow: hidden;
  justify-content: flex-end;
}

.ActionBar-item-container {
  height: var(--control-medium-size);
  box-sizing: content-box;
  overflow: hidden;
}

.ActionBar-item {
  position: relative;
  float: left;
}

.ActionBar-more-menu {
  float: left;
}

.ActionBar--small {
  min-width: calc(var(--control-small-size) * 3);
}

.ActionBar--large {
  min-width: calc(var(--control-large-size) * 3);
}

/* Divider */

.ActionBar-divider {
  top: 50%;
  bottom: 50%;
  float: left;
  height: calc(var(--control-medium-size) / 2);
  /* stylelint-disable-next-line primer/spacing */
  margin: 0 var(--controlStack-medium-gap-condensed);
  border-left: var(--borderWidth-thin) solid var(--borderColor-muted);
  transform: translateY(-50%);
}

.ActionBar--small .ActionBar-divider {
  /* stylelint-disable-next-line primer/spacing */
  margin: 0 var(--controlStack-small-gap-condensed);
}

.ActionBar--large .ActionBar-divider {
  /* stylelint-disable-next-line primer/spacing */
  margin: 0 var(--controlStack-large-gap-condensed);
}

:root {
  --base-size-112: 7rem;
  --base-size-12: 0.75rem;
  --base-size-128: 8rem;
  --base-size-16: 1rem;
  --base-size-2: 0.125rem;
  --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-4: 0.25rem;
  --base-size-40: 2.5rem;
  --base-size-44: 2.75rem;
  --base-size-48: 3rem;
  --base-size-6: 0.375rem;
  --base-size-64: 4rem;
  --base-size-8: 0.5rem;
  --base-size-80: 5rem;
  --base-size-96: 6rem;
}

:root {
  --base-text-weight-light: 300;
  --base-text-weight-medium: 500;
  --base-text-weight-normal: 400;
  --base-text-weight-semibold: 600;
}

:root {
  --borderRadius-full: 624.9375rem; /* Use this border radius for pill shaped elements */
  --borderRadius-large: 0.75rem;
  --borderRadius-medium: 0.375rem;
  --borderRadius-small: 0.1875rem;
  --borderWidth-thick: 0.125rem;
  --borderWidth-thicker: 0.25rem;
  --borderWidth-thin: 0.0625rem;
  --outline-focus-offset: -0.125rem;
  --outline-focus-width: 0.125rem;
  --borderRadius-default: var(--borderRadius-medium);
  --borderWidth-default: var(--borderWidth-thin);
  --boxShadow-thick: inset 0 0 0 var(--borderWidth-thick);
  --boxShadow-thicker: inset 0 0 0 var(--borderWidth-thicker);
  --boxShadow-thin: inset 0 0 0 var(--borderWidth-thin); /* Thin shadow for borders */
}

:root {
  --breakpoint-large: 63.25rem;
  --breakpoint-medium: 48rem;
  --breakpoint-small: 34rem;
  --breakpoint-xlarge: 80rem;
  --breakpoint-xsmall: 20rem;
  --breakpoint-xxlarge: 87.5rem;
}

@media (pointer: coarse) {
  :root {
    --control-minTarget-auto: 2.75rem;
    --controlStack-medium-gap-auto: 0.75rem;
    --controlStack-small-gap-auto: 1rem;
  }
}

@media (pointer: fine) {
  :root {
    --control-minTarget-auto: 1rem;
    --controlStack-medium-gap-auto: 0.5rem;
    --controlStack-small-gap-auto: 0.5rem;
  }
}

:root {
  --control-large-paddingBlock: 0.625rem;
  --control-medium-paddingBlock: 0.375rem;
  --control-xlarge-paddingBlock: 0.875rem;
  --control-xsmall-paddingBlock: 0.125rem;
  --overlay-height-large: 27rem;
  --overlay-height-medium: 20rem;
  --overlay-height-small: 16rem;
  --overlay-height-xlarge: 37.5rem;
  --overlay-offset: 0.25rem;
  --overlay-width-large: 40rem;
  --overlay-width-medium: 30rem;
  --overlay-width-small: 20rem;
  --overlay-width-xlarge: 60rem;
  --overlay-width-xsmall: 12rem;
  --spinner-strokeWidth-default: 0.125rem;
  --control-large-gap: 0.5rem;
  --control-large-lineBoxHeight: 1.25rem;
  --control-large-paddingInline-normal: 0.75rem;
  --control-large-paddingInline-spacious: 1rem;
  --control-large-size: 2.5rem;
  --control-medium-gap: 0.5rem;
  --control-medium-lineBoxHeight: 1.25rem;
  --control-medium-paddingInline-condensed: 0.5rem;
  --control-medium-paddingInline-normal: 0.75rem;
  --control-medium-paddingInline-spacious: 1rem;
  --control-medium-size: 2rem;
  --control-minTarget-coarse: 2.75rem;
  --control-minTarget-fine: 1rem;
  --control-small-gap: 0.25rem;
  --control-small-lineBoxHeight: 1.25rem;
  --control-small-paddingBlock: 0.25rem;
  --control-small-paddingInline-condensed: 0.5rem;
  --control-small-paddingInline-normal: 0.75rem;
  --control-small-size: 1.75rem;
  --control-xlarge-gap: 0.5rem;
  --control-xlarge-lineBoxHeight: 1.25rem;
  --control-xlarge-paddingInline-normal: 0.75rem;
  --control-xlarge-paddingInline-spacious: 1rem;
  --control-xlarge-size: 3rem;
  --control-xsmall-gap: 0.25rem;
  --control-xsmall-lineBoxHeight: 1.25rem;
  --control-xsmall-paddingInline-condensed: 0.25rem;
  --control-xsmall-paddingInline-normal: 0.5rem;
  --control-xsmall-paddingInline-spacious: 0.75rem;
  --control-xsmall-size: 1.5rem;
  --controlStack-large-gap-auto: 0.5rem;
  --controlStack-large-gap-condensed: 0.5rem;
  --controlStack-large-gap-spacious: 0.75rem;
  --controlStack-medium-gap-condensed: 0.5rem;
  --controlStack-medium-gap-spacious: 0.75rem;
  --controlStack-small-gap-condensed: 0.5rem;
  --controlStack-small-gap-spacious: 1rem;
  --overlay-borderRadius: 0.375rem;
  --overlay-padding-condensed: 0.5rem;
  --overlay-padding-normal: 1rem;
  --overlay-paddingBlock-condensed: 0.25rem;
  --overlay-paddingBlock-normal: 0.75rem;
  --spinner-size-large: 4rem;
  --spinner-size-medium: 2rem;
  --spinner-size-small: 1rem;
  --stack-gap-condensed: 0.5rem;
  --stack-gap-normal: 1rem;
  --stack-gap-spacious: 1.5rem;
  --stack-padding-condensed: 0.5rem;
  --stack-padding-normal: 1rem;
  --stack-padding-spacious: 1.5rem;
}

:root {
  --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-sansSerifDisplay: -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-body-lineHeight-large: 1.5;
  --text-body-lineHeight-medium: 1.4285;
  --text-body-lineHeight-small: 1.6666;
  --text-body-size-large: 1rem;
  --text-body-size-medium: 0.875rem;
  --text-body-size-small: 0.75rem;
  --text-caption-lineHeight: 1.3333;
  --text-caption-size: 0.75rem;
  --text-codeBlock-lineHeight: 1.5385;
  --text-codeBlock-size: 0.8125rem;
  --text-codeInline-size: 0.9285em;
  --text-display-lineBoxHeight: 1.4;
  --text-display-lineHeight: 1.4;
  --text-display-size: 2.5rem;
  --text-subtitle-lineHeight: 1.6;
  --text-subtitle-size: 1.25rem;
  --text-title-lineHeight-large: 1.5;
  --text-title-lineHeight-medium: 1.6;
  --text-title-lineHeight-small: 1.5;
  --text-title-size-large: 2rem;
  --text-title-size-medium: 1.25rem;
  --text-title-size-small: 1rem;
  --text-body-weight: var(--base-text-weight-normal);
  --text-caption-weight: var(--base-text-weight-normal);
  --text-codeBlock-weight: var(--base-text-weight-normal);
  --text-codeInline-weight: var(--base-text-weight-normal);
  --text-display-weight: var(--base-text-weight-medium);
  --text-subtitle-weight: var(--base-text-weight-normal);
  --text-title-weight-large: var(--base-text-weight-semibold);
  --text-title-weight-medium: var(--base-text-weight-semibold);
  --text-title-weight-small: var(--base-text-weight-semibold);
  --text-body-shorthand-large: var(--text-body-weight) var(--text-body-size-large) / var(--text-body-lineHeight-large) var(--fontStack-sansSerif); /* User-generated content, markdown rendering. */
  --text-body-shorthand-medium: var(--text-body-weight) var(--text-body-size-medium) / var(--text-body-lineHeight-medium) var(--fontStack-sansSerif); /* Default UI font. Most commonly used for body text. */
  --text-body-shorthand-small: var(--text-body-weight) var(--text-body-size-small) / var(--text-body-lineHeight-small) var(--fontStack-sansSerif); /* Small body text for discrete UI applications, such as helper, footnote text. Should be used sparingly across pages. Line-height matches Body (medium) at 20px. */
  --text-caption-shorthand: var(--text-caption-weight) var(--text-caption-size) / var(--text-caption-lineHeight) var(--fontStack-sansSerif); /* Compact small font with a smaller line height of 16px. Use it for single-line scenarios, as the small sizing doesn’t pass accessibility requirements. */
  --text-codeBlock-shorthand: var(--text-codeBlock-weight) var(--text-codeBlock-size) / var(--text-codeBlock-lineHeight) var(--fontStack-monospace); /* Default style for rendering code blocks. */
  --text-codeInline-shorthand: var(--text-codeInline-weight) var(--text-codeInline-size) var(--fontStack-monospace); /* Inline code blocks using em units to inherit size from its parent. */
  --text-display-shorthand: var(--text-display-weight) var(--text-display-size) / var(--text-display-lineHeight) var(--fontStack-sansSerifDisplay); /* Hero-style text for brand to product transition pages. Utilize Title (large) styles on narrow viewports. */
  --text-subtitle-shorthand: var(--text-subtitle-weight) var(--text-subtitle-size) / var(--text-subtitle-lineHeight) var(--fontStack-sansSerifDisplay); /* Page sections/sub headings, or less important object names in page titles (automated action titles, for example). Same line-height as title (medium). */
  --text-title-shorthand-large: var(--text-title-weight-large) var(--text-title-size-large) / var(--text-title-lineHeight-large) var(--fontStack-sansSerifDisplay); /* Page headings for user-created objects, such as issues or pull requests. Utilize title (medium) styles on narrow viewports. */
  --text-title-shorthand-medium: var(--text-title-weight-medium) var(--text-title-size-medium) / var(--text-title-lineHeight-medium) var(--fontStack-sansSerifDisplay); /* Default page title. The 32px-equivalent line-height matches with button and other medium control heights. Great for page header composition. */
  --text-title-shorthand-small: var(--text-title-weight-small) var(--text-title-size-small) / var(--text-title-lineHeight-small) var(--fontStack-sansSerif); /* Uses the same size as body (large) with a heavier weight of semibold (600). */
}

[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 {
  --button-danger-bgColor-active: #b5531d;
  --button-danger-iconColor-rest: #f0883e;
  --button-primary-bgColor-active: #3685f3;
  --button-primary-bgColor-hover: #2a7aef;
  --button-primary-borderColor-disabled: #1158c7;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --control-checked-bgColor-active: #3685f3;
  --control-checked-bgColor-hover: #2a7aef;
  --fgColor-accent: #4493f8;
  --reactionButton-selected-bgColor-hover: #3a8cfd5c;
  --avatar-shadow: 0px 0px 0px 2px #0d1117;
  --avatarStack-fade-bgColor-default: #3d444d;
  --avatarStack-fade-bgColor-muted: #2a313c;
  --bgColor-accent-emphasis: #1f6feb;
  --bgColor-accent-muted: #388bfd1a;
  --bgColor-attention-emphasis: #9e6a03;
  --bgColor-attention-muted: #bb800926;
  --bgColor-danger-emphasis: #bd561d;
  --bgColor-danger-muted: #db6d281a;
  --bgColor-default: #0d1117;
  --bgColor-disabled: #212830;
  --bgColor-done-emphasis: #8957e5;
  --bgColor-done-muted: #ab7df826;
  --bgColor-emphasis: #3d444d;
  --bgColor-muted: #151b23;
  --bgColor-neutral-emphasis: #656c76;
  --bgColor-neutral-muted: #656c7633;
  --bgColor-open-emphasis: #bd561d;
  --bgColor-open-muted: #db6d281a;
  --bgColor-severe-emphasis: #bd561d;
  --bgColor-severe-muted: #db6d281a;
  --bgColor-sponsors-emphasis: #bf4b8a;
  --bgColor-sponsors-muted: #db61a21a;
  --bgColor-success-emphasis: #1f6feb;
  --bgColor-success-muted: #388bfd33;
  --bgColor-transparent: #00000000;
  --borderColor-accent-emphasis: #1f6feb;
  --borderColor-accent-muted: #388bfd66;
  --borderColor-attention-emphasis: #9e6a03;
  --borderColor-attention-muted: #bb800966;
  --borderColor-danger-emphasis: #bd561d;
  --borderColor-danger-muted: #db6d2866;
  --borderColor-default: #3d444d;
  --borderColor-disabled: #656c761a;
  --borderColor-done-emphasis: #8957e5;
  --borderColor-done-muted: #ab7df866;
  --borderColor-emphasis: #656c76;
  --borderColor-open-emphasis: #bd561d;
  --borderColor-open-muted: #db6d2866;
  --borderColor-severe-emphasis: #bd561d;
  --borderColor-severe-muted: #db6d2866;
  --borderColor-sponsors-emphasis: #bf4b8a;
  --borderColor-sponsors-muted: #db61a266;
  --borderColor-success-emphasis: #1f6feb;
  --borderColor-success-muted: #388bfd66;
  --borderColor-transparent: #00000000;
  --button-danger-bgColor-hover: #9b4215;
  --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
  --button-default-shadow-resting: 0px 0px 0px 0px #000000;
  --button-inactive-bgColor: #262c36;
  --button-inactive-fgColor: #9198a1;
  --button-invisible-bgColor-disabled: #00000000;
  --button-invisible-borderColor-disabled: #00000000;
  --button-outline-bgColor-active: #0d419d;
  --button-outline-bgColor-rest: #f0f6fc;
  --button-outline-fgColor-disabled: #4493f880;
  --button-outline-fgColor-hover: #58a6ff;
  --button-outline-fgColor-rest: #388bfd;
  --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
  --button-primary-bgColor-disabled: #1158c7;
  --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
  --button-star-iconColor: #e3b341;
  --buttonCounter-danger-bgColor-rest: #49020233;
  --buttonCounter-default-bgColor-rest: #2f3742;
  --buttonCounter-outline-bgColor-hover: #051d4d33;
  --buttonCounter-outline-bgColor-rest: #051d4d33;
  --buttonCounter-outline-fgColor-disabled: #4493f880;
  --buttonCounter-outline-fgColor-hover: #58a6ff;
  --buttonCounter-outline-fgColor-rest: #388bfd;
  --buttonCounter-primary-bgColor-rest: #04260f33;
  --codeMirror-syntax-fgColor-comment: #656c76;
  --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;
  --color-ansi-black: #2f3742;
  --color-ansi-black-bright: #656c76;
  --color-ansi-blue: #58a6ff;
  --color-ansi-blue-bright: #79c0ff;
  --color-ansi-gray: #656c76;
  --color-ansi-green: #58a6ff;
  --color-ansi-green-bright: #79c0ff;
  --color-ansi-magenta: #be8fff;
  --color-ansi-magenta-bright: #d2a8ff;
  --color-ansi-red: #f0883e;
  --color-ansi-red-bright: #ffa657;
  --color-ansi-white: #f0f6fc;
  --color-ansi-yellow: #d29922;
  --color-ansi-yellow-bright: #e3b341;
  --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
  --color-prettylights-syntax-brackethighlighter-unmatched: #db6d28;
  --color-prettylights-syntax-carriage-return-bg: #9b4215;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-comment: #9198a1;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-entity-tag: #a5d6ff;
  --color-prettylights-syntax-invalid-illegal-bg: #762d0a;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-keyword: #f0883e;
  --color-prettylights-syntax-markup-bold: #f0f6fc;
  --color-prettylights-syntax-markup-changed-bg: #5a1e02;
  --color-prettylights-syntax-markup-changed-text: #ffdfb6;
  --color-prettylights-syntax-markup-deleted-bg: #5a1e02;
  --color-prettylights-syntax-markup-deleted-text: #ffdfb6;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
  --color-prettylights-syntax-markup-inserted-bg: #0c2d6b;
  --color-prettylights-syntax-markup-inserted-text: #cae8ff;
  --color-prettylights-syntax-markup-italic: #f0f6fc;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-string-regexp: #a5d6ff;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
  --color-prettylights-syntax-variable: #ffa657;
  --contribution-default-bgColor-0: #151b23;
  --contribution-default-bgColor-1: #033a16;
  --contribution-default-bgColor-2: #196c2e;
  --contribution-default-bgColor-3: #2ea043;
  --contribution-default-bgColor-4: #56d364;
  --contribution-default-borderColor-0: #ffffff0d;
  --contribution-default-borderColor-1: #ffffff0d;
  --contribution-default-borderColor-2: #ffffff0d;
  --contribution-default-borderColor-3: #ffffff0d;
  --contribution-default-borderColor-4: #ffffff0d;
  --contribution-halloween-bgColor-1: #fac68f;
  --contribution-halloween-bgColor-2: #c46212;
  --contribution-halloween-bgColor-3: #984b10;
  --contribution-halloween-bgColor-4: #e3d04f;
  --contribution-winter-bgColor-1: #0c2d6b;
  --contribution-winter-bgColor-2: #1158c7;
  --contribution-winter-bgColor-3: #58a6ff;
  --contribution-winter-bgColor-4: #cae8ff;
  --control-bgColor-active: #2a313c;
  --control-bgColor-hover: #262c36;
  --control-bgColor-rest: #212830;
  --control-borderColor-selected: #f0f6fc;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-danger-fgColor-hover: #f0883e;
  --control-transparent-bgColor-active: #656c7640;
  --control-transparent-bgColor-hover: #656c7633;
  --control-transparent-bgColor-rest: #00000000;
  --control-transparent-bgColor-selected: #656c761a;
  --control-transparent-borderColor-active: #00000000;
  --control-transparent-borderColor-hover: #00000000;
  --control-transparent-borderColor-rest: #00000000;
  --controlTrack-bgColor-active: #2f3742;
  --controlTrack-bgColor-hover: #2a313c;
  --controlTrack-bgColor-rest: #262c36;
  --counter-borderColor: #00000000;
  --data-auburn-color-emphasis: #a86f6b;
  --data-auburn-color-muted: #271817;
  --data-blue-color-emphasis: #0576ff;
  --data-blue-color-muted: #001a47;
  --data-brown-color-emphasis: #94774c;
  --data-brown-color-muted: #241c14;
  --data-coral-color-emphasis: #e1430e;
  --data-coral-color-muted: #351008;
  --data-gray-color-emphasis: #576270;
  --data-gray-color-muted: #1c1c1c;
  --data-green-color-emphasis: #2f6f37;
  --data-green-color-muted: #122117;
  --data-lemon-color-emphasis: #977b0c;
  --data-lemon-color-muted: #291d00;
  --data-lime-color-emphasis: #5f892f;
  --data-lime-color-muted: #141f0f;
  --data-olive-color-emphasis: #7a8321;
  --data-olive-color-muted: #171e0b;
  --data-orange-color-emphasis: #984b10;
  --data-orange-color-muted: #311708;
  --data-pine-color-emphasis: #18915e;
  --data-pine-color-muted: #082119;
  --data-pink-color-emphasis: #d34591;
  --data-pink-color-muted: #2d1524;
  --data-plum-color-emphasis: #b643ef;
  --data-plum-color-muted: #2a0e3f;
  --data-purple-color-emphasis: #975bf1;
  --data-purple-color-muted: #211047;
  --data-red-color-emphasis: #eb3342;
  --data-red-color-muted: #3c0614;
  --data-teal-color-emphasis: #106c70;
  --data-teal-color-muted: #041f25;
  --data-yellow-color-emphasis: #895906;
  --data-yellow-color-muted: #2e1a00;
  --diffBlob-additionNum-bgColor: #58a6ff4d;
  --diffBlob-additionWord-bgColor: #388bfd66;
  --diffBlob-deletionLine-bgColor: #db6d2826;
  --diffBlob-deletionNum-bgColor: #db6d284d;
  --diffBlob-deletionWord-bgColor: #db6d2866;
  --diffBlob-hunkLine-bgColor: #212830;
  --diffBlob-hunkNum-bgColor-hover: #656c76;
  --diffBlob-hunkNum-bgColor-rest: #2f3742;
  --display-auburn-bgColor-emphasis: #87534f;
  --display-auburn-bgColor-muted: #271817;
  --display-auburn-borderColor-emphasis: #a86f6b;
  --display-auburn-borderColor-muted: #3a2422;
  --display-auburn-fgColor: #bf9592;
  --display-auburn-scale-0: #271817;
  --display-auburn-scale-1: #3a2422;
  --display-auburn-scale-2: #543331;
  --display-auburn-scale-3: #6d4340;
  --display-auburn-scale-4: #87534f;
  --display-auburn-scale-5: #a86f6b;
  --display-auburn-scale-6: #bf9592;
  --display-auburn-scale-7: #c6a19f;
  --display-auburn-scale-8: #d4b7b5;
  --display-auburn-scale-9: #dfcac8;
  --display-blue-bgColor-emphasis: #005bd1;
  --display-blue-bgColor-muted: #001a47;
  --display-blue-borderColor-emphasis: #0576ff;
  --display-blue-borderColor-muted: #002766;
  --display-blue-fgColor: #4da0ff;
  --display-blue-scale-0: #001a47;
  --display-blue-scale-1: #002766;
  --display-blue-scale-2: #00378a;
  --display-blue-scale-3: #0046a8;
  --display-blue-scale-4: #005bd1;
  --display-blue-scale-5: #0576ff;
  --display-blue-scale-6: #4da0ff;
  --display-blue-scale-7: #61adff;
  --display-blue-scale-8: #85c2ff;
  --display-blue-scale-9: #a3d3ff;
  --display-brown-bgColor-emphasis: #755e3e;
  --display-brown-bgColor-muted: #241c14;
  --display-brown-borderColor-emphasis: #94774c;
  --display-brown-borderColor-muted: #342a1d;
  --display-brown-fgColor: #b69a6d;
  --display-brown-scale-0: #241c14;
  --display-brown-scale-1: #342a1d;
  --display-brown-scale-2: #483a28;
  --display-brown-scale-3: #5d4a32;
  --display-brown-scale-4: #755e3e;
  --display-brown-scale-5: #94774c;
  --display-brown-scale-6: #b69a6d;
  --display-brown-scale-7: #bfa77d;
  --display-brown-scale-8: #cdbb98;
  --display-brown-scale-9: #dbceb3;
  --display-coral-bgColor-emphasis: #c31328;
  --display-coral-bgColor-muted: #3c0614;
  --display-coral-borderColor-emphasis: #eb3342;
  --display-coral-borderColor-muted: #58091a;
  --display-coral-fgColor: #f27d83;
  --display-coral-scale-0: #351008;
  --display-coral-scale-1: #51180b;
  --display-coral-scale-2: #72220d;
  --display-coral-scale-3: #902a0e;
  --display-coral-scale-4: #b3350f;
  --display-coral-scale-5: #e1430e;
  --display-coral-scale-6: #f7794b;
  --display-coral-scale-7: #fa8c61;
  --display-coral-scale-8: #fdaa86;
  --display-coral-scale-9: #ffc0a3;
  --display-cyan-bgColor-emphasis: #036a8c;
  --display-cyan-bgColor-muted: #001f29;
  --display-cyan-borderColor-emphasis: #0587b3;
  --display-cyan-borderColor-muted: #002e3d;
  --display-cyan-fgColor: #07ace4;
  --display-cyan-scale-0: #001f29;
  --display-cyan-scale-1: #002e3d;
  --display-cyan-scale-2: #014156;
  --display-cyan-scale-3: #02536f;
  --display-cyan-scale-4: #036a8c;
  --display-cyan-scale-5: #0587b3;
  --display-cyan-scale-6: #07ace4;
  --display-cyan-scale-7: #09b7f1;
  --display-cyan-scale-8: #45cbf7;
  --display-cyan-scale-9: #80dbf9;
  --display-gray-bgColor-emphasis: #576270;
  --display-gray-bgColor-muted: #1c1c1c;
  --display-gray-borderColor-emphasis: #6e7f96;
  --display-gray-borderColor-muted: #2a2b2d;
  --display-gray-fgColor: #92a1b5;
  --display-gray-scale-0: #1c1c1c;
  --display-gray-scale-1: #2a2b2d;
  --display-gray-scale-2: #393d41;
  --display-gray-scale-3: #474e57;
  --display-gray-scale-4: #576270;
  --display-gray-scale-5: #6e7f96;
  --display-gray-scale-6: #92a1b5;
  --display-gray-scale-7: #9babbf;
  --display-gray-scale-8: #b3c0d1;
  --display-gray-scale-9: #c4cfde;
  --display-green-bgColor-emphasis: #2f6f37;
  --display-green-bgColor-muted: #122117;
  --display-green-borderColor-emphasis: #388f3f;
  --display-green-borderColor-muted: #182f1f;
  --display-green-fgColor: #41b445;
  --display-green-scale-0: #122117;
  --display-green-scale-1: #182f1f;
  --display-green-scale-2: #214529;
  --display-green-scale-3: #285830;
  --display-green-scale-4: #2f6f37;
  --display-green-scale-5: #388f3f;
  --display-green-scale-6: #41b445;
  --display-green-scale-7: #46c144;
  --display-green-scale-8: #75d36f;
  --display-green-scale-9: #99e090;
  --display-indigo-bgColor-emphasis: #514ed4;
  --display-indigo-bgColor-muted: #1b183f;
  --display-indigo-borderColor-emphasis: #7070e1;
  --display-indigo-borderColor-muted: #25215f;
  --display-indigo-fgColor: #9899ec;
  --display-indigo-scale-0: #1b183f;
  --display-indigo-scale-1: #25215f;
  --display-indigo-scale-2: #312c90;
  --display-indigo-scale-3: #3935c0;
  --display-indigo-scale-4: #514ed4;
  --display-indigo-scale-5: #7070e1;
  --display-indigo-scale-6: #9899ec;
  --display-indigo-scale-7: #a2a5f1;
  --display-indigo-scale-8: #b7baf6;
  --display-indigo-scale-9: #c8cbf9;
  --display-lemon-bgColor-emphasis: #786008;
  --display-lemon-bgColor-muted: #291d00;
  --display-lemon-borderColor-emphasis: #977b0c;
  --display-lemon-borderColor-muted: #372901;
  --display-lemon-fgColor: #ba9b12;
  --display-lemon-scale-0: #291d00;
  --display-lemon-scale-1: #372901;
  --display-lemon-scale-2: #4f3c02;
  --display-lemon-scale-3: #614c05;
  --display-lemon-scale-4: #786008;
  --display-lemon-scale-5: #977b0c;
  --display-lemon-scale-6: #ba9b12;
  --display-lemon-scale-7: #c4a717;
  --display-lemon-scale-8: #d7bc1d;
  --display-lemon-scale-9: #e3d04f;
  --display-lime-bgColor-emphasis: #496c28;
  --display-lime-bgColor-muted: #141f0f;
  --display-lime-borderColor-emphasis: #5f892f;
  --display-lime-borderColor-muted: #1f3116;
  --display-lime-fgColor: #7dae37;
  --display-lime-scale-0: #141f0f;
  --display-lime-scale-1: #1f3116;
  --display-lime-scale-2: #2c441d;
  --display-lime-scale-3: #375421;
  --display-lime-scale-4: #496c28;
  --display-lime-scale-5: #5f892f;
  --display-lime-scale-6: #7dae37;
  --display-lime-scale-7: #89ba36;
  --display-lime-scale-8: #9fcc3e;
  --display-lime-scale-9: #bcda67;
  --display-olive-bgColor-emphasis: #5e681d;
  --display-olive-bgColor-muted: #171e0b;
  --display-olive-borderColor-emphasis: #7a8321;
  --display-olive-borderColor-muted: #252d10;
  --display-olive-fgColor: #a2a626;
  --display-olive-scale-0: #171e0b;
  --display-olive-scale-1: #252d10;
  --display-olive-scale-2: #374115;
  --display-olive-scale-3: #485219;
  --display-olive-scale-4: #5e681d;
  --display-olive-scale-5: #7a8321;
  --display-olive-scale-6: #a2a626;
  --display-olive-scale-7: #b2af24;
  --display-olive-scale-8: #cbc025;
  --display-olive-scale-9: #e2d04b;
  --display-orange-bgColor-emphasis: #984b10;
  --display-orange-bgColor-muted: #311708;
  --display-orange-borderColor-emphasis: #c46212;
  --display-orange-borderColor-muted: #43200a;
  --display-orange-fgColor: #ed8326;
  --display-orange-scale-0: #311708;
  --display-orange-scale-1: #43200a;
  --display-orange-scale-2: #632f0d;
  --display-orange-scale-3: #7b3c0e;
  --display-orange-scale-4: #984b10;
  --display-orange-scale-5: #c46212;
  --display-orange-scale-6: #ed8326;
  --display-orange-scale-7: #f1933b;
  --display-orange-scale-8: #f6b06a;
  --display-orange-scale-9: #fac68f;
  --display-pine-bgColor-emphasis: #14714c;
  --display-pine-bgColor-muted: #082119;
  --display-pine-borderColor-emphasis: #18915e;
  --display-pine-borderColor-muted: #0b3224;
  --display-pine-fgColor: #1bb673;
  --display-pine-scale-0: #082119;
  --display-pine-scale-1: #0b3224;
  --display-pine-scale-2: #0e4430;
  --display-pine-scale-3: #115a3e;
  --display-pine-scale-4: #14714c;
  --display-pine-scale-5: #18915e;
  --display-pine-scale-6: #1bb673;
  --display-pine-scale-7: #1ac176;
  --display-pine-scale-8: #1bda81;
  --display-pine-scale-9: #3eea97;
  --display-pink-bgColor-emphasis: #ac2f74;
  --display-pink-bgColor-muted: #2d1524;
  --display-pink-borderColor-emphasis: #d34591;
  --display-pink-borderColor-muted: #451c35;
  --display-pink-fgColor: #e57bb2;
  --display-pink-scale-0: #2d1524;
  --display-pink-scale-1: #451c35;
  --display-pink-scale-2: #65244a;
  --display-pink-scale-3: #842a5d;
  --display-pink-scale-4: #ac2f74;
  --display-pink-scale-5: #d34591;
  --display-pink-scale-6: #e57bb2;
  --display-pink-scale-7: #ec8dbd;
  --display-pink-scale-8: #f4a9cd;
  --display-pink-scale-9: #f9bed9;
  --display-plum-bgColor-emphasis: #9518d8;
  --display-plum-bgColor-muted: #2a0e3f;
  --display-plum-borderColor-emphasis: #b643ef;
  --display-plum-borderColor-muted: #40125e;
  --display-plum-fgColor: #d07ef7;
  --display-plum-scale-0: #2a0e3f;
  --display-plum-scale-1: #40125e;
  --display-plum-scale-2: #5c1688;
  --display-plum-scale-3: #7517ab;
  --display-plum-scale-4: #9518d8;
  --display-plum-scale-5: #b643ef;
  --display-plum-scale-6: #d07ef7;
  --display-plum-scale-7: #d889fa;
  --display-plum-scale-8: #e4a5fd;
  --display-plum-scale-9: #edbdff;
  --display-purple-bgColor-emphasis: #7730e8;
  --display-purple-bgColor-muted: #211047;
  --display-purple-borderColor-emphasis: #975bf1;
  --display-purple-borderColor-muted: #31146b;
  --display-purple-fgColor: #b687f7;
  --display-purple-scale-0: #211047;
  --display-purple-scale-1: #31146b;
  --display-purple-scale-2: #481a9e;
  --display-purple-scale-3: #5b1cca;
  --display-purple-scale-4: #7730e8;
  --display-purple-scale-5: #975bf1;
  --display-purple-scale-6: #b687f7;
  --display-purple-scale-7: #c398fb;
  --display-purple-scale-8: #d2affd;
  --display-purple-scale-9: #e1c7ff;
  --display-red-bgColor-emphasis: #c31328;
  --display-red-bgColor-muted: #3c0614;
  --display-red-borderColor-emphasis: #eb3342;
  --display-red-borderColor-muted: #58091a;
  --display-red-fgColor: #f27d83;
  --display-red-scale-0: #3c0614;
  --display-red-scale-1: #58091a;
  --display-red-scale-2: #790c20;
  --display-red-scale-3: #990f24;
  --display-red-scale-4: #c31328;
  --display-red-scale-5: #eb3342;
  --display-red-scale-6: #f27d83;
  --display-red-scale-7: #f48b8d;
  --display-red-scale-8: #f7adab;
  --display-red-scale-9: #f9c1be;
  --display-teal-bgColor-emphasis: #106c70;
  --display-teal-bgColor-muted: #041f25;
  --display-teal-borderColor-emphasis: #158a8a;
  --display-teal-borderColor-muted: #073036;
  --display-teal-fgColor: #1cb0ab;
  --display-teal-scale-0: #041f25;
  --display-teal-scale-1: #073036;
  --display-teal-scale-2: #0a464d;
  --display-teal-scale-3: #0c555a;
  --display-teal-scale-4: #106c70;
  --display-teal-scale-5: #158a8a;
  --display-teal-scale-6: #1cb0ab;
  --display-teal-scale-7: #1fbdb2;
  --display-teal-scale-8: #24d6c4;
  --display-teal-scale-9: #5fe3d1;
  --display-yellow-bgColor-emphasis: #895906;
  --display-yellow-bgColor-muted: #2e1a00;
  --display-yellow-borderColor-emphasis: #aa7109;
  --display-yellow-borderColor-muted: #3d2401;
  --display-yellow-fgColor: #d3910d;
  --display-yellow-scale-0: #2e1a00;
  --display-yellow-scale-1: #3d2401;
  --display-yellow-scale-2: #5a3702;
  --display-yellow-scale-3: #6d4403;
  --display-yellow-scale-4: #895906;
  --display-yellow-scale-5: #aa7109;
  --display-yellow-scale-6: #d3910d;
  --display-yellow-scale-7: #df9e11;
  --display-yellow-scale-8: #edb431;
  --display-yellow-scale-9: #f0ca6a;
  --fgColor-attention: #d29922;
  --fgColor-danger: #f0883e;
  --fgColor-default: #f0f6fc;
  --fgColor-disabled: #656c7699;
  --fgColor-done: #ab7df8;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-muted: #9198a1;
  --fgColor-neutral: #9198a1;
  --fgColor-open: #db6d28;
  --fgColor-severe: #db6d28;
  --fgColor-sponsors: #db61a2;
  --fgColor-success: #58a6ff;
  --header-bgColor: #151b23f2;
  --header-borderColor-divider: #656c76;
  --header-fgColor-logo: #f0f6fc;
  --headerSearch-bgColor: #0d1117;
  --headerSearch-borderColor: #2a313c;
  --highlight-neutral-bgColor: #d2992266;
  --label-auburn-bgColor-active: #543331;
  --label-auburn-bgColor-hover: #3a2422;
  --label-auburn-bgColor-rest: #271817;
  --label-auburn-fgColor-active: #d4b7b5;
  --label-auburn-fgColor-hover: #c6a19f;
  --label-auburn-fgColor-rest: #bf9592;
  --label-blue-bgColor-active: #00378a;
  --label-blue-bgColor-hover: #002766;
  --label-blue-bgColor-rest: #001a47;
  --label-blue-fgColor-active: #85c2ff;
  --label-blue-fgColor-hover: #61adff;
  --label-blue-fgColor-rest: #4da0ff;
  --label-brown-bgColor-active: #483a28;
  --label-brown-bgColor-hover: #342a1d;
  --label-brown-bgColor-rest: #241c14;
  --label-brown-fgColor-active: #cdbb98;
  --label-brown-fgColor-hover: #bfa77d;
  --label-brown-fgColor-rest: #b69a6d;
  --label-coral-bgColor-active: #72220d;
  --label-coral-bgColor-hover: #51180b;
  --label-coral-bgColor-rest: #351008;
  --label-coral-fgColor-active: #fdaa86;
  --label-coral-fgColor-hover: #fa8c61;
  --label-coral-fgColor-rest: #f7794b;
  --label-cyan-bgColor-active: #014156;
  --label-cyan-bgColor-hover: #002e3d;
  --label-cyan-bgColor-rest: #001f29;
  --label-cyan-fgColor-active: #45cbf7;
  --label-cyan-fgColor-hover: #09b7f1;
  --label-cyan-fgColor-rest: #07ace4;
  --label-gray-bgColor-active: #393d41;
  --label-gray-bgColor-hover: #2a2b2d;
  --label-gray-bgColor-rest: #1c1c1c;
  --label-gray-fgColor-active: #b3c0d1;
  --label-gray-fgColor-hover: #9babbf;
  --label-gray-fgColor-rest: #92a1b5;
  --label-green-bgColor-active: #214529;
  --label-green-bgColor-hover: #182f1f;
  --label-green-bgColor-rest: #122117;
  --label-green-fgColor-active: #75d36f;
  --label-green-fgColor-hover: #46c144;
  --label-green-fgColor-rest: #41b445;
  --label-indigo-bgColor-active: #312c90;
  --label-indigo-bgColor-hover: #25215f;
  --label-indigo-bgColor-rest: #1b183f;
  --label-indigo-fgColor-active: #b7baf6;
  --label-indigo-fgColor-hover: #a2a5f1;
  --label-indigo-fgColor-rest: #9899ec;
  --label-lemon-bgColor-active: #4f3c02;
  --label-lemon-bgColor-hover: #372901;
  --label-lemon-bgColor-rest: #291d00;
  --label-lemon-fgColor-active: #d7bc1d;
  --label-lemon-fgColor-hover: #c4a717;
  --label-lemon-fgColor-rest: #ba9b12;
  --label-lime-bgColor-active: #2c441d;
  --label-lime-bgColor-hover: #1f3116;
  --label-lime-bgColor-rest: #141f0f;
  --label-lime-fgColor-active: #9fcc3e;
  --label-lime-fgColor-hover: #89ba36;
  --label-lime-fgColor-rest: #7dae37;
  --label-olive-bgColor-active: #374115;
  --label-olive-bgColor-hover: #252d10;
  --label-olive-bgColor-rest: #171e0b;
  --label-olive-fgColor-active: #cbc025;
  --label-olive-fgColor-hover: #b2af24;
  --label-olive-fgColor-rest: #a2a626;
  --label-orange-bgColor-active: #632f0d;
  --label-orange-bgColor-hover: #43200a;
  --label-orange-bgColor-rest: #311708;
  --label-orange-fgColor-active: #f6b06a;
  --label-orange-fgColor-hover: #f1933b;
  --label-orange-fgColor-rest: #ed8326;
  --label-pine-bgColor-active: #0e4430;
  --label-pine-bgColor-hover: #0b3224;
  --label-pine-bgColor-rest: #082119;
  --label-pine-fgColor-active: #1bda81;
  --label-pine-fgColor-hover: #1ac176;
  --label-pine-fgColor-rest: #1bb673;
  --label-pink-bgColor-active: #65244a;
  --label-pink-bgColor-hover: #451c35;
  --label-pink-bgColor-rest: #2d1524;
  --label-pink-fgColor-active: #f4a9cd;
  --label-pink-fgColor-hover: #ec8dbd;
  --label-pink-fgColor-rest: #e57bb2;
  --label-plum-bgColor-active: #5c1688;
  --label-plum-bgColor-hover: #40125e;
  --label-plum-bgColor-rest: #2a0e3f;
  --label-plum-fgColor-active: #e4a5fd;
  --label-plum-fgColor-hover: #d889fa;
  --label-plum-fgColor-rest: #d07ef7;
  --label-purple-bgColor-active: #481a9e;
  --label-purple-bgColor-hover: #31146b;
  --label-purple-bgColor-rest: #211047;
  --label-purple-fgColor-active: #d2affd;
  --label-purple-fgColor-hover: #c398fb;
  --label-purple-fgColor-rest: #b687f7;
  --label-red-bgColor-active: #790c20;
  --label-red-bgColor-hover: #58091a;
  --label-red-bgColor-rest: #3c0614;
  --label-red-fgColor-active: #f7adab;
  --label-red-fgColor-hover: #f48b8d;
  --label-red-fgColor-rest: #f27d83;
  --label-teal-bgColor-active: #0a464d;
  --label-teal-bgColor-hover: #073036;
  --label-teal-bgColor-rest: #041f25;
  --label-teal-fgColor-active: #24d6c4;
  --label-teal-fgColor-hover: #1fbdb2;
  --label-teal-fgColor-rest: #1cb0ab;
  --label-yellow-bgColor-active: #5a3702;
  --label-yellow-bgColor-hover: #3d2401;
  --label-yellow-bgColor-rest: #2e1a00;
  --label-yellow-fgColor-active: #edb431;
  --label-yellow-fgColor-hover: #df9e11;
  --label-yellow-fgColor-rest: #d3910d;
  --menu-bgColor-active: #151b23;
  --overlay-backdrop-bgColor: #21283066;
  --reactionButton-selected-bgColor-rest: #388bfd33;
  --reactionButton-selected-fgColor-hover: #79c0ff;
  --selectMenu-bgColor-active: #0c2d6b;
  --sideNav-bgColor-selected: #212830;
  --skeletonLoader-bgColor: #656c7633;
  --timelineBadge-bgColor: #212830;
  --topicTag-borderColor: #00000000;
  --underlineNav-borderColor-active: #f78166;
  --avatar-bgColor: #ffffff1a;
  --bgColor-black: #010409;
  --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
  --bgColor-closed-muted: #656c761a;
  --bgColor-inset: #010409;
  --bgColor-inverse: #ffffff;
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #1f6feb;
  --border-accent-muted: 0.0625rem solid #388bfd66;
  --border-attention-emphasis: 0.0625rem solid #9e6a03;
  --border-attention-muted: 0.0625rem solid #bb800966;
  --border-danger-emphasis: 0.0625rem solid #bd561d;
  --border-danger-muted: 0.0625rem solid #db6d2866;
  --border-default: 0.0625rem solid #3d444d;
  --border-disabled: 0.0625rem solid #656c761a;
  --border-done-emphasis: 0.0625rem solid #8957e5;
  --border-done-muted: 0.0625rem solid #ab7df866;
  --border-emphasis: 0.0625rem solid #656c76;
  --border-severe-emphasis: 0.0625rem solid #bd561d;
  --border-severe-muted: 0.0625rem solid #db6d2866;
  --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
  --border-sponsors-muted: 0.0625rem solid #db61a266;
  --border-success-emphasis: 0.0625rem solid #1f6feb;
  --border-success-muted: 0.0625rem solid #388bfd66;
  --border-transparent: 0.0625rem solid #00000000;
  --borderColor-closed-emphasis: var(--borderColor-emphasis);
  --borderColor-closed-muted: #3d444d66;
  --borderColor-muted: #3d444db3;
  --borderColor-neutral-emphasis: var(--borderColor-emphasis);
  --borderColor-translucent: #ffffff26;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #f0883e80;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-fgColor-rest: var(--fgColor-danger);
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--control-bgColor-hover);
  --button-outline-fgColor-active: #ffffff;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #ffffff1a;
  --button-primary-fgColor-disabled: #ffffff66;
  --buttonCounter-danger-bgColor-disabled: #bd561d0d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-fgColor-disabled: #f0883e80;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
  --card-bgColor: var(--bgColor-muted);
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --color-ansi-white-bright: #ffffff;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-checked-fgColor-disabled: #010409;
  --control-danger-bgColor-active: #db6d2866;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-fgColor-rest: var(--fgColor-default);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --controlTrack-fgColor-rest: var(--fgColor-muted);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: #388bfd26;
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --fgColor-black: #010409;
  --fgColor-closed: var(--fgColor-muted);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #010409;
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --overlay-bgColor: var(--bgColor-muted);
  --page-header-bgColor: var(--bgColor-default);
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --selectMenu-borderColor: var(--borderColor-default);
  --selection-bgColor: #1f6febb3;
  --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-inset: inset 0px 1px 0px 0px #0104093d;
  --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
  --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
  --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
  --tooltip-bgColor: var(--bgColor-emphasis);
  --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #3d444db3;
  --border-neutral-emphasis: 0.0625rem solid #656c76;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8957e5;
  --border-upsell-muted: 0.0625rem solid #ab7df866;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: var(--fgColor-white);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-bgColor-rest: var(--bgColor-inset);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --focus-outline: 2px solid #1f6feb;
  --overlay-borderColor: var(--borderColor-muted);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --border-neutral-muted: 0.0625rem solid #3d444db3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-active: var(--button-default-borderColor-rest);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
  --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
  --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
  --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
  --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="dark_colorblind"],
  [data-color-mode="auto"][data-dark-theme="dark_colorblind"] ::backdrop {
    --button-danger-bgColor-active: #b5531d;
    --button-danger-iconColor-rest: #f0883e;
    --button-primary-bgColor-active: #3685f3;
    --button-primary-bgColor-hover: #2a7aef;
    --button-primary-borderColor-disabled: #1158c7;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --control-checked-bgColor-active: #3685f3;
    --control-checked-bgColor-hover: #2a7aef;
    --fgColor-accent: #4493f8;
    --reactionButton-selected-bgColor-hover: #3a8cfd5c;
    --avatar-shadow: 0px 0px 0px 2px #0d1117;
    --avatarStack-fade-bgColor-default: #3d444d;
    --avatarStack-fade-bgColor-muted: #2a313c;
    --bgColor-accent-emphasis: #1f6feb;
    --bgColor-accent-muted: #388bfd1a;
    --bgColor-attention-emphasis: #9e6a03;
    --bgColor-attention-muted: #bb800926;
    --bgColor-danger-emphasis: #bd561d;
    --bgColor-danger-muted: #db6d281a;
    --bgColor-default: #0d1117;
    --bgColor-disabled: #212830;
    --bgColor-done-emphasis: #8957e5;
    --bgColor-done-muted: #ab7df826;
    --bgColor-emphasis: #3d444d;
    --bgColor-muted: #151b23;
    --bgColor-neutral-emphasis: #656c76;
    --bgColor-neutral-muted: #656c7633;
    --bgColor-open-emphasis: #bd561d;
    --bgColor-open-muted: #db6d281a;
    --bgColor-severe-emphasis: #bd561d;
    --bgColor-severe-muted: #db6d281a;
    --bgColor-sponsors-emphasis: #bf4b8a;
    --bgColor-sponsors-muted: #db61a21a;
    --bgColor-success-emphasis: #1f6feb;
    --bgColor-success-muted: #388bfd33;
    --bgColor-transparent: #00000000;
    --borderColor-accent-emphasis: #1f6feb;
    --borderColor-accent-muted: #388bfd66;
    --borderColor-attention-emphasis: #9e6a03;
    --borderColor-attention-muted: #bb800966;
    --borderColor-danger-emphasis: #bd561d;
    --borderColor-danger-muted: #db6d2866;
    --borderColor-default: #3d444d;
    --borderColor-disabled: #656c761a;
    --borderColor-done-emphasis: #8957e5;
    --borderColor-done-muted: #ab7df866;
    --borderColor-emphasis: #656c76;
    --borderColor-open-emphasis: #bd561d;
    --borderColor-open-muted: #db6d2866;
    --borderColor-severe-emphasis: #bd561d;
    --borderColor-severe-muted: #db6d2866;
    --borderColor-sponsors-emphasis: #bf4b8a;
    --borderColor-sponsors-muted: #db61a266;
    --borderColor-success-emphasis: #1f6feb;
    --borderColor-success-muted: #388bfd66;
    --borderColor-transparent: #00000000;
    --button-danger-bgColor-hover: #9b4215;
    --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
    --button-default-shadow-resting: 0px 0px 0px 0px #000000;
    --button-inactive-bgColor: #262c36;
    --button-inactive-fgColor: #9198a1;
    --button-invisible-bgColor-disabled: #00000000;
    --button-invisible-borderColor-disabled: #00000000;
    --button-outline-bgColor-active: #0d419d;
    --button-outline-bgColor-rest: #f0f6fc;
    --button-outline-fgColor-disabled: #4493f880;
    --button-outline-fgColor-hover: #58a6ff;
    --button-outline-fgColor-rest: #388bfd;
    --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
    --button-primary-bgColor-disabled: #1158c7;
    --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
    --button-star-iconColor: #e3b341;
    --buttonCounter-danger-bgColor-rest: #49020233;
    --buttonCounter-default-bgColor-rest: #2f3742;
    --buttonCounter-outline-bgColor-hover: #051d4d33;
    --buttonCounter-outline-bgColor-rest: #051d4d33;
    --buttonCounter-outline-fgColor-disabled: #4493f880;
    --buttonCounter-outline-fgColor-hover: #58a6ff;
    --buttonCounter-outline-fgColor-rest: #388bfd;
    --buttonCounter-primary-bgColor-rest: #04260f33;
    --codeMirror-syntax-fgColor-comment: #656c76;
    --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;
    --color-ansi-black: #2f3742;
    --color-ansi-black-bright: #656c76;
    --color-ansi-blue: #58a6ff;
    --color-ansi-blue-bright: #79c0ff;
    --color-ansi-gray: #656c76;
    --color-ansi-green: #58a6ff;
    --color-ansi-green-bright: #79c0ff;
    --color-ansi-magenta: #be8fff;
    --color-ansi-magenta-bright: #d2a8ff;
    --color-ansi-red: #f0883e;
    --color-ansi-red-bright: #ffa657;
    --color-ansi-white: #f0f6fc;
    --color-ansi-yellow: #d29922;
    --color-ansi-yellow-bright: #e3b341;
    --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
    --color-prettylights-syntax-brackethighlighter-unmatched: #db6d28;
    --color-prettylights-syntax-carriage-return-bg: #9b4215;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-comment: #9198a1;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-entity-tag: #a5d6ff;
    --color-prettylights-syntax-invalid-illegal-bg: #762d0a;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-keyword: #f0883e;
    --color-prettylights-syntax-markup-bold: #f0f6fc;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-deleted-bg: #5a1e02;
    --color-prettylights-syntax-markup-deleted-text: #ffdfb6;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
    --color-prettylights-syntax-markup-inserted-bg: #0c2d6b;
    --color-prettylights-syntax-markup-inserted-text: #cae8ff;
    --color-prettylights-syntax-markup-italic: #f0f6fc;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-string-regexp: #a5d6ff;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
    --color-prettylights-syntax-variable: #ffa657;
    --contribution-default-bgColor-0: #151b23;
    --contribution-default-bgColor-1: #033a16;
    --contribution-default-bgColor-2: #196c2e;
    --contribution-default-bgColor-3: #2ea043;
    --contribution-default-bgColor-4: #56d364;
    --contribution-default-borderColor-0: #ffffff0d;
    --contribution-default-borderColor-1: #ffffff0d;
    --contribution-default-borderColor-2: #ffffff0d;
    --contribution-default-borderColor-3: #ffffff0d;
    --contribution-default-borderColor-4: #ffffff0d;
    --contribution-halloween-bgColor-1: #fac68f;
    --contribution-halloween-bgColor-2: #c46212;
    --contribution-halloween-bgColor-3: #984b10;
    --contribution-halloween-bgColor-4: #e3d04f;
    --contribution-winter-bgColor-1: #0c2d6b;
    --contribution-winter-bgColor-2: #1158c7;
    --contribution-winter-bgColor-3: #58a6ff;
    --contribution-winter-bgColor-4: #cae8ff;
    --control-bgColor-active: #2a313c;
    --control-bgColor-hover: #262c36;
    --control-bgColor-rest: #212830;
    --control-borderColor-selected: #f0f6fc;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-danger-fgColor-hover: #f0883e;
    --control-transparent-bgColor-active: #656c7640;
    --control-transparent-bgColor-hover: #656c7633;
    --control-transparent-bgColor-rest: #00000000;
    --control-transparent-bgColor-selected: #656c761a;
    --control-transparent-borderColor-active: #00000000;
    --control-transparent-borderColor-hover: #00000000;
    --control-transparent-borderColor-rest: #00000000;
    --controlTrack-bgColor-active: #2f3742;
    --controlTrack-bgColor-hover: #2a313c;
    --controlTrack-bgColor-rest: #262c36;
    --counter-borderColor: #00000000;
    --data-auburn-color-emphasis: #a86f6b;
    --data-auburn-color-muted: #271817;
    --data-blue-color-emphasis: #0576ff;
    --data-blue-color-muted: #001a47;
    --data-brown-color-emphasis: #94774c;
    --data-brown-color-muted: #241c14;
    --data-coral-color-emphasis: #e1430e;
    --data-coral-color-muted: #351008;
    --data-gray-color-emphasis: #576270;
    --data-gray-color-muted: #1c1c1c;
    --data-green-color-emphasis: #2f6f37;
    --data-green-color-muted: #122117;
    --data-lemon-color-emphasis: #977b0c;
    --data-lemon-color-muted: #291d00;
    --data-lime-color-emphasis: #5f892f;
    --data-lime-color-muted: #141f0f;
    --data-olive-color-emphasis: #7a8321;
    --data-olive-color-muted: #171e0b;
    --data-orange-color-emphasis: #984b10;
    --data-orange-color-muted: #311708;
    --data-pine-color-emphasis: #18915e;
    --data-pine-color-muted: #082119;
    --data-pink-color-emphasis: #d34591;
    --data-pink-color-muted: #2d1524;
    --data-plum-color-emphasis: #b643ef;
    --data-plum-color-muted: #2a0e3f;
    --data-purple-color-emphasis: #975bf1;
    --data-purple-color-muted: #211047;
    --data-red-color-emphasis: #eb3342;
    --data-red-color-muted: #3c0614;
    --data-teal-color-emphasis: #106c70;
    --data-teal-color-muted: #041f25;
    --data-yellow-color-emphasis: #895906;
    --data-yellow-color-muted: #2e1a00;
    --diffBlob-additionNum-bgColor: #58a6ff4d;
    --diffBlob-additionWord-bgColor: #388bfd66;
    --diffBlob-deletionLine-bgColor: #db6d2826;
    --diffBlob-deletionNum-bgColor: #db6d284d;
    --diffBlob-deletionWord-bgColor: #db6d2866;
    --diffBlob-hunkLine-bgColor: #212830;
    --diffBlob-hunkNum-bgColor-hover: #656c76;
    --diffBlob-hunkNum-bgColor-rest: #2f3742;
    --display-auburn-bgColor-emphasis: #87534f;
    --display-auburn-bgColor-muted: #271817;
    --display-auburn-borderColor-emphasis: #a86f6b;
    --display-auburn-borderColor-muted: #3a2422;
    --display-auburn-fgColor: #bf9592;
    --display-auburn-scale-0: #271817;
    --display-auburn-scale-1: #3a2422;
    --display-auburn-scale-2: #543331;
    --display-auburn-scale-3: #6d4340;
    --display-auburn-scale-4: #87534f;
    --display-auburn-scale-5: #a86f6b;
    --display-auburn-scale-6: #bf9592;
    --display-auburn-scale-7: #c6a19f;
    --display-auburn-scale-8: #d4b7b5;
    --display-auburn-scale-9: #dfcac8;
    --display-blue-bgColor-emphasis: #005bd1;
    --display-blue-bgColor-muted: #001a47;
    --display-blue-borderColor-emphasis: #0576ff;
    --display-blue-borderColor-muted: #002766;
    --display-blue-fgColor: #4da0ff;
    --display-blue-scale-0: #001a47;
    --display-blue-scale-1: #002766;
    --display-blue-scale-2: #00378a;
    --display-blue-scale-3: #0046a8;
    --display-blue-scale-4: #005bd1;
    --display-blue-scale-5: #0576ff;
    --display-blue-scale-6: #4da0ff;
    --display-blue-scale-7: #61adff;
    --display-blue-scale-8: #85c2ff;
    --display-blue-scale-9: #a3d3ff;
    --display-brown-bgColor-emphasis: #755e3e;
    --display-brown-bgColor-muted: #241c14;
    --display-brown-borderColor-emphasis: #94774c;
    --display-brown-borderColor-muted: #342a1d;
    --display-brown-fgColor: #b69a6d;
    --display-brown-scale-0: #241c14;
    --display-brown-scale-1: #342a1d;
    --display-brown-scale-2: #483a28;
    --display-brown-scale-3: #5d4a32;
    --display-brown-scale-4: #755e3e;
    --display-brown-scale-5: #94774c;
    --display-brown-scale-6: #b69a6d;
    --display-brown-scale-7: #bfa77d;
    --display-brown-scale-8: #cdbb98;
    --display-brown-scale-9: #dbceb3;
    --display-coral-bgColor-emphasis: #c31328;
    --display-coral-bgColor-muted: #3c0614;
    --display-coral-borderColor-emphasis: #eb3342;
    --display-coral-borderColor-muted: #58091a;
    --display-coral-fgColor: #f27d83;
    --display-coral-scale-0: #351008;
    --display-coral-scale-1: #51180b;
    --display-coral-scale-2: #72220d;
    --display-coral-scale-3: #902a0e;
    --display-coral-scale-4: #b3350f;
    --display-coral-scale-5: #e1430e;
    --display-coral-scale-6: #f7794b;
    --display-coral-scale-7: #fa8c61;
    --display-coral-scale-8: #fdaa86;
    --display-coral-scale-9: #ffc0a3;
    --display-cyan-bgColor-emphasis: #036a8c;
    --display-cyan-bgColor-muted: #001f29;
    --display-cyan-borderColor-emphasis: #0587b3;
    --display-cyan-borderColor-muted: #002e3d;
    --display-cyan-fgColor: #07ace4;
    --display-cyan-scale-0: #001f29;
    --display-cyan-scale-1: #002e3d;
    --display-cyan-scale-2: #014156;
    --display-cyan-scale-3: #02536f;
    --display-cyan-scale-4: #036a8c;
    --display-cyan-scale-5: #0587b3;
    --display-cyan-scale-6: #07ace4;
    --display-cyan-scale-7: #09b7f1;
    --display-cyan-scale-8: #45cbf7;
    --display-cyan-scale-9: #80dbf9;
    --display-gray-bgColor-emphasis: #576270;
    --display-gray-bgColor-muted: #1c1c1c;
    --display-gray-borderColor-emphasis: #6e7f96;
    --display-gray-borderColor-muted: #2a2b2d;
    --display-gray-fgColor: #92a1b5;
    --display-gray-scale-0: #1c1c1c;
    --display-gray-scale-1: #2a2b2d;
    --display-gray-scale-2: #393d41;
    --display-gray-scale-3: #474e57;
    --display-gray-scale-4: #576270;
    --display-gray-scale-5: #6e7f96;
    --display-gray-scale-6: #92a1b5;
    --display-gray-scale-7: #9babbf;
    --display-gray-scale-8: #b3c0d1;
    --display-gray-scale-9: #c4cfde;
    --display-green-bgColor-emphasis: #2f6f37;
    --display-green-bgColor-muted: #122117;
    --display-green-borderColor-emphasis: #388f3f;
    --display-green-borderColor-muted: #182f1f;
    --display-green-fgColor: #41b445;
    --display-green-scale-0: #122117;
    --display-green-scale-1: #182f1f;
    --display-green-scale-2: #214529;
    --display-green-scale-3: #285830;
    --display-green-scale-4: #2f6f37;
    --display-green-scale-5: #388f3f;
    --display-green-scale-6: #41b445;
    --display-green-scale-7: #46c144;
    --display-green-scale-8: #75d36f;
    --display-green-scale-9: #99e090;
    --display-indigo-bgColor-emphasis: #514ed4;
    --display-indigo-bgColor-muted: #1b183f;
    --display-indigo-borderColor-emphasis: #7070e1;
    --display-indigo-borderColor-muted: #25215f;
    --display-indigo-fgColor: #9899ec;
    --display-indigo-scale-0: #1b183f;
    --display-indigo-scale-1: #25215f;
    --display-indigo-scale-2: #312c90;
    --display-indigo-scale-3: #3935c0;
    --display-indigo-scale-4: #514ed4;
    --display-indigo-scale-5: #7070e1;
    --display-indigo-scale-6: #9899ec;
    --display-indigo-scale-7: #a2a5f1;
    --display-indigo-scale-8: #b7baf6;
    --display-indigo-scale-9: #c8cbf9;
    --display-lemon-bgColor-emphasis: #786008;
    --display-lemon-bgColor-muted: #291d00;
    --display-lemon-borderColor-emphasis: #977b0c;
    --display-lemon-borderColor-muted: #372901;
    --display-lemon-fgColor: #ba9b12;
    --display-lemon-scale-0: #291d00;
    --display-lemon-scale-1: #372901;
    --display-lemon-scale-2: #4f3c02;
    --display-lemon-scale-3: #614c05;
    --display-lemon-scale-4: #786008;
    --display-lemon-scale-5: #977b0c;
    --display-lemon-scale-6: #ba9b12;
    --display-lemon-scale-7: #c4a717;
    --display-lemon-scale-8: #d7bc1d;
    --display-lemon-scale-9: #e3d04f;
    --display-lime-bgColor-emphasis: #496c28;
    --display-lime-bgColor-muted: #141f0f;
    --display-lime-borderColor-emphasis: #5f892f;
    --display-lime-borderColor-muted: #1f3116;
    --display-lime-fgColor: #7dae37;
    --display-lime-scale-0: #141f0f;
    --display-lime-scale-1: #1f3116;
    --display-lime-scale-2: #2c441d;
    --display-lime-scale-3: #375421;
    --display-lime-scale-4: #496c28;
    --display-lime-scale-5: #5f892f;
    --display-lime-scale-6: #7dae37;
    --display-lime-scale-7: #89ba36;
    --display-lime-scale-8: #9fcc3e;
    --display-lime-scale-9: #bcda67;
    --display-olive-bgColor-emphasis: #5e681d;
    --display-olive-bgColor-muted: #171e0b;
    --display-olive-borderColor-emphasis: #7a8321;
    --display-olive-borderColor-muted: #252d10;
    --display-olive-fgColor: #a2a626;
    --display-olive-scale-0: #171e0b;
    --display-olive-scale-1: #252d10;
    --display-olive-scale-2: #374115;
    --display-olive-scale-3: #485219;
    --display-olive-scale-4: #5e681d;
    --display-olive-scale-5: #7a8321;
    --display-olive-scale-6: #a2a626;
    --display-olive-scale-7: #b2af24;
    --display-olive-scale-8: #cbc025;
    --display-olive-scale-9: #e2d04b;
    --display-orange-bgColor-emphasis: #984b10;
    --display-orange-bgColor-muted: #311708;
    --display-orange-borderColor-emphasis: #c46212;
    --display-orange-borderColor-muted: #43200a;
    --display-orange-fgColor: #ed8326;
    --display-orange-scale-0: #311708;
    --display-orange-scale-1: #43200a;
    --display-orange-scale-2: #632f0d;
    --display-orange-scale-3: #7b3c0e;
    --display-orange-scale-4: #984b10;
    --display-orange-scale-5: #c46212;
    --display-orange-scale-6: #ed8326;
    --display-orange-scale-7: #f1933b;
    --display-orange-scale-8: #f6b06a;
    --display-orange-scale-9: #fac68f;
    --display-pine-bgColor-emphasis: #14714c;
    --display-pine-bgColor-muted: #082119;
    --display-pine-borderColor-emphasis: #18915e;
    --display-pine-borderColor-muted: #0b3224;
    --display-pine-fgColor: #1bb673;
    --display-pine-scale-0: #082119;
    --display-pine-scale-1: #0b3224;
    --display-pine-scale-2: #0e4430;
    --display-pine-scale-3: #115a3e;
    --display-pine-scale-4: #14714c;
    --display-pine-scale-5: #18915e;
    --display-pine-scale-6: #1bb673;
    --display-pine-scale-7: #1ac176;
    --display-pine-scale-8: #1bda81;
    --display-pine-scale-9: #3eea97;
    --display-pink-bgColor-emphasis: #ac2f74;
    --display-pink-bgColor-muted: #2d1524;
    --display-pink-borderColor-emphasis: #d34591;
    --display-pink-borderColor-muted: #451c35;
    --display-pink-fgColor: #e57bb2;
    --display-pink-scale-0: #2d1524;
    --display-pink-scale-1: #451c35;
    --display-pink-scale-2: #65244a;
    --display-pink-scale-3: #842a5d;
    --display-pink-scale-4: #ac2f74;
    --display-pink-scale-5: #d34591;
    --display-pink-scale-6: #e57bb2;
    --display-pink-scale-7: #ec8dbd;
    --display-pink-scale-8: #f4a9cd;
    --display-pink-scale-9: #f9bed9;
    --display-plum-bgColor-emphasis: #9518d8;
    --display-plum-bgColor-muted: #2a0e3f;
    --display-plum-borderColor-emphasis: #b643ef;
    --display-plum-borderColor-muted: #40125e;
    --display-plum-fgColor: #d07ef7;
    --display-plum-scale-0: #2a0e3f;
    --display-plum-scale-1: #40125e;
    --display-plum-scale-2: #5c1688;
    --display-plum-scale-3: #7517ab;
    --display-plum-scale-4: #9518d8;
    --display-plum-scale-5: #b643ef;
    --display-plum-scale-6: #d07ef7;
    --display-plum-scale-7: #d889fa;
    --display-plum-scale-8: #e4a5fd;
    --display-plum-scale-9: #edbdff;
    --display-purple-bgColor-emphasis: #7730e8;
    --display-purple-bgColor-muted: #211047;
    --display-purple-borderColor-emphasis: #975bf1;
    --display-purple-borderColor-muted: #31146b;
    --display-purple-fgColor: #b687f7;
    --display-purple-scale-0: #211047;
    --display-purple-scale-1: #31146b;
    --display-purple-scale-2: #481a9e;
    --display-purple-scale-3: #5b1cca;
    --display-purple-scale-4: #7730e8;
    --display-purple-scale-5: #975bf1;
    --display-purple-scale-6: #b687f7;
    --display-purple-scale-7: #c398fb;
    --display-purple-scale-8: #d2affd;
    --display-purple-scale-9: #e1c7ff;
    --display-red-bgColor-emphasis: #c31328;
    --display-red-bgColor-muted: #3c0614;
    --display-red-borderColor-emphasis: #eb3342;
    --display-red-borderColor-muted: #58091a;
    --display-red-fgColor: #f27d83;
    --display-red-scale-0: #3c0614;
    --display-red-scale-1: #58091a;
    --display-red-scale-2: #790c20;
    --display-red-scale-3: #990f24;
    --display-red-scale-4: #c31328;
    --display-red-scale-5: #eb3342;
    --display-red-scale-6: #f27d83;
    --display-red-scale-7: #f48b8d;
    --display-red-scale-8: #f7adab;
    --display-red-scale-9: #f9c1be;
    --display-teal-bgColor-emphasis: #106c70;
    --display-teal-bgColor-muted: #041f25;
    --display-teal-borderColor-emphasis: #158a8a;
    --display-teal-borderColor-muted: #073036;
    --display-teal-fgColor: #1cb0ab;
    --display-teal-scale-0: #041f25;
    --display-teal-scale-1: #073036;
    --display-teal-scale-2: #0a464d;
    --display-teal-scale-3: #0c555a;
    --display-teal-scale-4: #106c70;
    --display-teal-scale-5: #158a8a;
    --display-teal-scale-6: #1cb0ab;
    --display-teal-scale-7: #1fbdb2;
    --display-teal-scale-8: #24d6c4;
    --display-teal-scale-9: #5fe3d1;
    --display-yellow-bgColor-emphasis: #895906;
    --display-yellow-bgColor-muted: #2e1a00;
    --display-yellow-borderColor-emphasis: #aa7109;
    --display-yellow-borderColor-muted: #3d2401;
    --display-yellow-fgColor: #d3910d;
    --display-yellow-scale-0: #2e1a00;
    --display-yellow-scale-1: #3d2401;
    --display-yellow-scale-2: #5a3702;
    --display-yellow-scale-3: #6d4403;
    --display-yellow-scale-4: #895906;
    --display-yellow-scale-5: #aa7109;
    --display-yellow-scale-6: #d3910d;
    --display-yellow-scale-7: #df9e11;
    --display-yellow-scale-8: #edb431;
    --display-yellow-scale-9: #f0ca6a;
    --fgColor-attention: #d29922;
    --fgColor-danger: #f0883e;
    --fgColor-default: #f0f6fc;
    --fgColor-disabled: #656c7699;
    --fgColor-done: #ab7df8;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-muted: #9198a1;
    --fgColor-neutral: #9198a1;
    --fgColor-open: #db6d28;
    --fgColor-severe: #db6d28;
    --fgColor-sponsors: #db61a2;
    --fgColor-success: #58a6ff;
    --header-bgColor: #151b23f2;
    --header-borderColor-divider: #656c76;
    --header-fgColor-logo: #f0f6fc;
    --headerSearch-bgColor: #0d1117;
    --headerSearch-borderColor: #2a313c;
    --highlight-neutral-bgColor: #d2992266;
    --label-auburn-bgColor-active: #543331;
    --label-auburn-bgColor-hover: #3a2422;
    --label-auburn-bgColor-rest: #271817;
    --label-auburn-fgColor-active: #d4b7b5;
    --label-auburn-fgColor-hover: #c6a19f;
    --label-auburn-fgColor-rest: #bf9592;
    --label-blue-bgColor-active: #00378a;
    --label-blue-bgColor-hover: #002766;
    --label-blue-bgColor-rest: #001a47;
    --label-blue-fgColor-active: #85c2ff;
    --label-blue-fgColor-hover: #61adff;
    --label-blue-fgColor-rest: #4da0ff;
    --label-brown-bgColor-active: #483a28;
    --label-brown-bgColor-hover: #342a1d;
    --label-brown-bgColor-rest: #241c14;
    --label-brown-fgColor-active: #cdbb98;
    --label-brown-fgColor-hover: #bfa77d;
    --label-brown-fgColor-rest: #b69a6d;
    --label-coral-bgColor-active: #72220d;
    --label-coral-bgColor-hover: #51180b;
    --label-coral-bgColor-rest: #351008;
    --label-coral-fgColor-active: #fdaa86;
    --label-coral-fgColor-hover: #fa8c61;
    --label-coral-fgColor-rest: #f7794b;
    --label-cyan-bgColor-active: #014156;
    --label-cyan-bgColor-hover: #002e3d;
    --label-cyan-bgColor-rest: #001f29;
    --label-cyan-fgColor-active: #45cbf7;
    --label-cyan-fgColor-hover: #09b7f1;
    --label-cyan-fgColor-rest: #07ace4;
    --label-gray-bgColor-active: #393d41;
    --label-gray-bgColor-hover: #2a2b2d;
    --label-gray-bgColor-rest: #1c1c1c;
    --label-gray-fgColor-active: #b3c0d1;
    --label-gray-fgColor-hover: #9babbf;
    --label-gray-fgColor-rest: #92a1b5;
    --label-green-bgColor-active: #214529;
    --label-green-bgColor-hover: #182f1f;
    --label-green-bgColor-rest: #122117;
    --label-green-fgColor-active: #75d36f;
    --label-green-fgColor-hover: #46c144;
    --label-green-fgColor-rest: #41b445;
    --label-indigo-bgColor-active: #312c90;
    --label-indigo-bgColor-hover: #25215f;
    --label-indigo-bgColor-rest: #1b183f;
    --label-indigo-fgColor-active: #b7baf6;
    --label-indigo-fgColor-hover: #a2a5f1;
    --label-indigo-fgColor-rest: #9899ec;
    --label-lemon-bgColor-active: #4f3c02;
    --label-lemon-bgColor-hover: #372901;
    --label-lemon-bgColor-rest: #291d00;
    --label-lemon-fgColor-active: #d7bc1d;
    --label-lemon-fgColor-hover: #c4a717;
    --label-lemon-fgColor-rest: #ba9b12;
    --label-lime-bgColor-active: #2c441d;
    --label-lime-bgColor-hover: #1f3116;
    --label-lime-bgColor-rest: #141f0f;
    --label-lime-fgColor-active: #9fcc3e;
    --label-lime-fgColor-hover: #89ba36;
    --label-lime-fgColor-rest: #7dae37;
    --label-olive-bgColor-active: #374115;
    --label-olive-bgColor-hover: #252d10;
    --label-olive-bgColor-rest: #171e0b;
    --label-olive-fgColor-active: #cbc025;
    --label-olive-fgColor-hover: #b2af24;
    --label-olive-fgColor-rest: #a2a626;
    --label-orange-bgColor-active: #632f0d;
    --label-orange-bgColor-hover: #43200a;
    --label-orange-bgColor-rest: #311708;
    --label-orange-fgColor-active: #f6b06a;
    --label-orange-fgColor-hover: #f1933b;
    --label-orange-fgColor-rest: #ed8326;
    --label-pine-bgColor-active: #0e4430;
    --label-pine-bgColor-hover: #0b3224;
    --label-pine-bgColor-rest: #082119;
    --label-pine-fgColor-active: #1bda81;
    --label-pine-fgColor-hover: #1ac176;
    --label-pine-fgColor-rest: #1bb673;
    --label-pink-bgColor-active: #65244a;
    --label-pink-bgColor-hover: #451c35;
    --label-pink-bgColor-rest: #2d1524;
    --label-pink-fgColor-active: #f4a9cd;
    --label-pink-fgColor-hover: #ec8dbd;
    --label-pink-fgColor-rest: #e57bb2;
    --label-plum-bgColor-active: #5c1688;
    --label-plum-bgColor-hover: #40125e;
    --label-plum-bgColor-rest: #2a0e3f;
    --label-plum-fgColor-active: #e4a5fd;
    --label-plum-fgColor-hover: #d889fa;
    --label-plum-fgColor-rest: #d07ef7;
    --label-purple-bgColor-active: #481a9e;
    --label-purple-bgColor-hover: #31146b;
    --label-purple-bgColor-rest: #211047;
    --label-purple-fgColor-active: #d2affd;
    --label-purple-fgColor-hover: #c398fb;
    --label-purple-fgColor-rest: #b687f7;
    --label-red-bgColor-active: #790c20;
    --label-red-bgColor-hover: #58091a;
    --label-red-bgColor-rest: #3c0614;
    --label-red-fgColor-active: #f7adab;
    --label-red-fgColor-hover: #f48b8d;
    --label-red-fgColor-rest: #f27d83;
    --label-teal-bgColor-active: #0a464d;
    --label-teal-bgColor-hover: #073036;
    --label-teal-bgColor-rest: #041f25;
    --label-teal-fgColor-active: #24d6c4;
    --label-teal-fgColor-hover: #1fbdb2;
    --label-teal-fgColor-rest: #1cb0ab;
    --label-yellow-bgColor-active: #5a3702;
    --label-yellow-bgColor-hover: #3d2401;
    --label-yellow-bgColor-rest: #2e1a00;
    --label-yellow-fgColor-active: #edb431;
    --label-yellow-fgColor-hover: #df9e11;
    --label-yellow-fgColor-rest: #d3910d;
    --menu-bgColor-active: #151b23;
    --overlay-backdrop-bgColor: #21283066;
    --reactionButton-selected-bgColor-rest: #388bfd33;
    --reactionButton-selected-fgColor-hover: #79c0ff;
    --selectMenu-bgColor-active: #0c2d6b;
    --sideNav-bgColor-selected: #212830;
    --skeletonLoader-bgColor: #656c7633;
    --timelineBadge-bgColor: #212830;
    --topicTag-borderColor: #00000000;
    --underlineNav-borderColor-active: #f78166;
    --avatar-bgColor: #ffffff1a;
    --bgColor-black: #010409;
    --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
    --bgColor-closed-muted: #656c761a;
    --bgColor-inset: #010409;
    --bgColor-inverse: #ffffff;
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #1f6feb;
    --border-accent-muted: 0.0625rem solid #388bfd66;
    --border-attention-emphasis: 0.0625rem solid #9e6a03;
    --border-attention-muted: 0.0625rem solid #bb800966;
    --border-danger-emphasis: 0.0625rem solid #bd561d;
    --border-danger-muted: 0.0625rem solid #db6d2866;
    --border-default: 0.0625rem solid #3d444d;
    --border-disabled: 0.0625rem solid #656c761a;
    --border-done-emphasis: 0.0625rem solid #8957e5;
    --border-done-muted: 0.0625rem solid #ab7df866;
    --border-emphasis: 0.0625rem solid #656c76;
    --border-severe-emphasis: 0.0625rem solid #bd561d;
    --border-severe-muted: 0.0625rem solid #db6d2866;
    --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
    --border-sponsors-muted: 0.0625rem solid #db61a266;
    --border-success-emphasis: 0.0625rem solid #1f6feb;
    --border-success-muted: 0.0625rem solid #388bfd66;
    --border-transparent: 0.0625rem solid #00000000;
    --borderColor-closed-emphasis: var(--borderColor-emphasis);
    --borderColor-closed-muted: #3d444d66;
    --borderColor-muted: #3d444db3;
    --borderColor-neutral-emphasis: var(--borderColor-emphasis);
    --borderColor-translucent: #ffffff26;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #f0883e80;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-fgColor-rest: var(--fgColor-danger);
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--control-bgColor-hover);
    --button-outline-fgColor-active: #ffffff;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #ffffff1a;
    --button-primary-fgColor-disabled: #ffffff66;
    --buttonCounter-danger-bgColor-disabled: #bd561d0d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-fgColor-disabled: #f0883e80;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
    --card-bgColor: var(--bgColor-muted);
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --color-ansi-white-bright: #ffffff;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-checked-fgColor-disabled: #010409;
    --control-danger-bgColor-active: #db6d2866;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-fgColor-rest: var(--fgColor-default);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --controlTrack-fgColor-rest: var(--fgColor-muted);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: #388bfd26;
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --fgColor-black: #010409;
    --fgColor-closed: var(--fgColor-muted);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #010409;
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --overlay-bgColor: var(--bgColor-muted);
    --page-header-bgColor: var(--bgColor-default);
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --selectMenu-borderColor: var(--borderColor-default);
    --selection-bgColor: #1f6febb3;
    --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-inset: inset 0px 1px 0px 0px #0104093d;
    --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
    --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
    --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
    --tooltip-bgColor: var(--bgColor-emphasis);
    --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #3d444db3;
    --border-neutral-emphasis: 0.0625rem solid #656c76;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8957e5;
    --border-upsell-muted: 0.0625rem solid #ab7df866;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: var(--fgColor-white);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-bgColor-rest: var(--bgColor-inset);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --focus-outline: 2px solid #1f6feb;
    --overlay-borderColor: var(--borderColor-muted);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --border-neutral-muted: 0.0625rem solid #3d444db3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-active: var(--button-default-borderColor-rest);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
    --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
    --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
    --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
    --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --button-danger-bgColor-active: #c33d38;
  --button-danger-fgColor-rest: #ea5c53;
  --button-danger-iconColor-rest: #ea5c53;
  --button-outline-fgColor-disabled: #478be680;
  --button-primary-bgColor-active: #428f46;
  --button-primary-bgColor-disabled: #50a254;
  --button-primary-bgColor-hover: #3b8640;
  --button-primary-borderColor-disabled: #50a254;
  --button-primary-fgColor-rest: #ffffff;
  --button-primary-iconColor-rest: #ffffff;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --control-borderColor-rest: #3d444d;
  --control-checked-bgColor-active: #3f7fdb;
  --control-checked-bgColor-hover: #3876d3;
  --control-checked-borderColor-active: #3f7fdb;
  --control-checked-borderColor-hover: #3876d3;
  --fgColor-accent: #478be6;
  --reactionButton-selected-bgColor-hover: #4285e55c;
  --avatar-shadow: 0px 0px 0px 2px #0d1117;
  --avatarStack-fade-bgColor-default: #3d444d;
  --avatarStack-fade-bgColor-muted: #2a313c;
  --bgColor-accent-emphasis: #316dca;
  --bgColor-accent-muted: #4184e41a;
  --bgColor-attention-emphasis: #966600;
  --bgColor-attention-muted: #ae7c1426;
  --bgColor-danger-emphasis: #c93c37;
  --bgColor-danger-muted: #e5534b1a;
  --bgColor-default: #212830;
  --bgColor-disabled: #2a313c;
  --bgColor-done-emphasis: #8256d0;
  --bgColor-done-muted: #986ee226;
  --bgColor-emphasis: #3d444d;
  --bgColor-inset: #151b23;
  --bgColor-muted: #262c36;
  --bgColor-neutral-emphasis: #656c76;
  --bgColor-neutral-muted: #656c7633;
  --bgColor-severe-emphasis: #ae5622;
  --bgColor-severe-muted: #cc6b2c1a;
  --bgColor-sponsors-emphasis: #ae4c82;
  --bgColor-sponsors-muted: #c961981a;
  --bgColor-success-emphasis: #347d39;
  --bgColor-success-muted: #46954a26;
  --bgColor-transparent: #00000000;
  --borderColor-accent-emphasis: #316dca;
  --borderColor-accent-muted: #4184e466;
  --borderColor-attention-emphasis: #966600;
  --borderColor-attention-muted: #ae7c1466;
  --borderColor-danger-emphasis: #c93c37;
  --borderColor-danger-muted: #e5534b66;
  --borderColor-default: #3d444d;
  --borderColor-disabled: #656c761a;
  --borderColor-done-emphasis: #8256d0;
  --borderColor-done-muted: #986ee266;
  --borderColor-emphasis: #656c76;
  --borderColor-muted: #3d444db3;
  --borderColor-neutral-muted: #3d444db3;
  --borderColor-severe-emphasis: #ae5622;
  --borderColor-severe-muted: #cc6b2c66;
  --borderColor-sponsors-emphasis: #ae4c82;
  --borderColor-sponsors-muted: #c9619866;
  --borderColor-success-emphasis: #347d39;
  --borderColor-success-muted: #46954a66;
  --borderColor-transparent: #00000000;
  --button-danger-bgColor-hover: #ad2e2c;
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-default-shadow-resting: 0px 0px 0px 0px #000000;
  --button-inactive-bgColor: #2a313c;
  --button-inactive-fgColor: #656c76;
  --button-invisible-bgColor-disabled: #00000000;
  --button-invisible-borderColor-disabled: #00000000;
  --button-invisible-iconColor-hover: #b7bdc8;
  --button-invisible-iconColor-rest: #b7bdc8;
  --button-outline-bgColor-active: #1b4b91;
  --button-outline-bgColor-rest: #f0f6fc;
  --button-outline-fgColor-hover: #539bf5;
  --button-outline-fgColor-rest: #4184e4;
  --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
  --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
  --button-star-iconColor: #daaa3f;
  --buttonCounter-danger-bgColor-rest: #5d0f1233;
  --buttonCounter-default-bgColor-rest: #2f3742;
  --buttonCounter-outline-bgColor-hover: #0f2d5c33;
  --buttonCounter-outline-bgColor-rest: #0f2d5c33;
  --buttonCounter-outline-fgColor-disabled: #478be680;
  --buttonCounter-outline-fgColor-hover: #539bf5;
  --buttonCounter-outline-fgColor-rest: #4184e4;
  --buttonCounter-primary-bgColor-rest: #11341733;
  --codeMirror-syntax-fgColor-comment: #656c76;
  --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;
  --color-ansi-black: #2f3742;
  --color-ansi-black-bright: #656c76;
  --color-ansi-blue: #539bf5;
  --color-ansi-blue-bright: #6cb6ff;
  --color-ansi-gray: #656c76;
  --color-ansi-green: #57ab5a;
  --color-ansi-green-bright: #6bc46d;
  --color-ansi-magenta: #b083f0;
  --color-ansi-magenta-bright: #dcbdfb;
  --color-ansi-red: #f47067;
  --color-ansi-red-bright: #ff938a;
  --color-ansi-white: #f0f6fc;
  --color-ansi-yellow: #c69026;
  --color-ansi-yellow-bright: #daaa3f;
  --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
  --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b;
  --color-prettylights-syntax-carriage-return-bg: #ad2e2c;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-comment: #9198a1;
  --color-prettylights-syntax-constant: #6cb6ff;
  --color-prettylights-syntax-constant-other-reference-link: #96d0ff;
  --color-prettylights-syntax-entity: #dcbdfb;
  --color-prettylights-syntax-entity-tag: #8ddb8c;
  --color-prettylights-syntax-invalid-illegal-bg: #922323;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-keyword: #f47067;
  --color-prettylights-syntax-markup-bold: #f0f6fc;
  --color-prettylights-syntax-markup-changed-bg: #682d0f;
  --color-prettylights-syntax-markup-changed-text: #ffddb0;
  --color-prettylights-syntax-markup-deleted-bg: #78191b;
  --color-prettylights-syntax-markup-deleted-text: #ffd8d3;
  --color-prettylights-syntax-markup-heading: #316dca;
  --color-prettylights-syntax-markup-ignored-bg: #255ab2;
  --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
  --color-prettylights-syntax-markup-inserted-bg: #1b4721;
  --color-prettylights-syntax-markup-inserted-text: #b4f1b4;
  --color-prettylights-syntax-markup-italic: #f0f6fc;
  --color-prettylights-syntax-markup-list: #eac55f;
  --color-prettylights-syntax-meta-diff-range: #dcbdfb;
  --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
  --color-prettylights-syntax-string: #96d0ff;
  --color-prettylights-syntax-string-regexp: #8ddb8c;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
  --color-prettylights-syntax-variable: #f69d50;
  --contribution-default-bgColor-0: #2a313c;
  --contribution-default-bgColor-1: #1b4721;
  --contribution-default-bgColor-2: #2b6a30;
  --contribution-default-bgColor-3: #46954a;
  --contribution-default-bgColor-4: #6bc46d;
  --contribution-default-borderColor-0: #cdd9e50d;
  --contribution-default-borderColor-1: #cdd9e50d;
  --contribution-default-borderColor-2: #cdd9e50d;
  --contribution-default-borderColor-3: #cdd9e50d;
  --contribution-default-borderColor-4: #cdd9e50d;
  --contribution-halloween-bgColor-1: #fac68f;
  --contribution-halloween-bgColor-2: #c46212;
  --contribution-halloween-bgColor-3: #984b10;
  --contribution-halloween-bgColor-4: #e3d04f;
  --contribution-winter-bgColor-1: #143d79;
  --contribution-winter-bgColor-2: #255ab2;
  --contribution-winter-bgColor-3: #539bf5;
  --contribution-winter-bgColor-4: #c6e6ff;
  --control-bgColor-active: #3d444d;
  --control-bgColor-hover: #2f3742;
  --control-bgColor-rest: #2a313c;
  --control-borderColor-disabled: #656c761a;
  --control-borderColor-selected: #f0f6fc;
  --control-danger-fgColor-hover: #f47067;
  --control-transparent-bgColor-active: #656c7633;
  --control-transparent-bgColor-hover: #656c7626;
  --control-transparent-bgColor-rest: #00000000;
  --control-transparent-bgColor-selected: #656c761a;
  --control-transparent-borderColor-active: #00000000;
  --control-transparent-borderColor-hover: #00000000;
  --control-transparent-borderColor-rest: #00000000;
  --controlTrack-bgColor-active: #3d444d;
  --controlTrack-bgColor-hover: #2f3742;
  --controlTrack-bgColor-rest: #2a313c;
  --controlTrack-borderColor-rest: #3d444d;
  --counter-borderColor: #00000000;
  --data-auburn-color-emphasis: #a86f6b;
  --data-auburn-color-muted: #271817;
  --data-blue-color-emphasis: #0576ff;
  --data-blue-color-muted: #001a47;
  --data-brown-color-emphasis: #94774c;
  --data-brown-color-muted: #241c14;
  --data-coral-color-emphasis: #e1430e;
  --data-coral-color-muted: #351008;
  --data-gray-color-emphasis: #576270;
  --data-gray-color-muted: #1c1c1c;
  --data-green-color-emphasis: #2f6f37;
  --data-green-color-muted: #122117;
  --data-lemon-color-emphasis: #977b0c;
  --data-lemon-color-muted: #291d00;
  --data-lime-color-emphasis: #5f892f;
  --data-lime-color-muted: #141f0f;
  --data-olive-color-emphasis: #7a8321;
  --data-olive-color-muted: #171e0b;
  --data-orange-color-emphasis: #984b10;
  --data-orange-color-muted: #311708;
  --data-pine-color-emphasis: #18915e;
  --data-pine-color-muted: #082119;
  --data-pink-color-emphasis: #d34591;
  --data-pink-color-muted: #2d1524;
  --data-plum-color-emphasis: #b643ef;
  --data-plum-color-muted: #2a0e3f;
  --data-purple-color-emphasis: #975bf1;
  --data-purple-color-muted: #211047;
  --data-red-color-emphasis: #eb3342;
  --data-red-color-muted: #3c0614;
  --data-teal-color-emphasis: #106c70;
  --data-teal-color-muted: #041f25;
  --data-yellow-color-emphasis: #895906;
  --data-yellow-color-muted: #2e1a00;
  --diffBlob-additionNum-bgColor: #57ab5a4d;
  --diffBlob-additionWord-bgColor: #46954a66;
  --diffBlob-deletionNum-bgColor: #e5534b4d;
  --diffBlob-deletionWord-bgColor: #e5534b66;
  --diffBlob-hunkNum-bgColor-rest: #143d79;
  --display-auburn-bgColor-emphasis: #87534f;
  --display-auburn-bgColor-muted: #271817;
  --display-auburn-borderColor-emphasis: #a86f6b;
  --display-auburn-borderColor-muted: #3a2422;
  --display-auburn-fgColor: #bf9592;
  --display-auburn-scale-0: #271817;
  --display-auburn-scale-1: #3a2422;
  --display-auburn-scale-2: #543331;
  --display-auburn-scale-3: #6d4340;
  --display-auburn-scale-4: #87534f;
  --display-auburn-scale-5: #a86f6b;
  --display-auburn-scale-6: #bf9592;
  --display-auburn-scale-7: #c6a19f;
  --display-auburn-scale-8: #d4b7b5;
  --display-auburn-scale-9: #dfcac8;
  --display-blue-bgColor-emphasis: #005bd1;
  --display-blue-bgColor-muted: #001a47;
  --display-blue-borderColor-emphasis: #0576ff;
  --display-blue-borderColor-muted: #002766;
  --display-blue-fgColor: #4da0ff;
  --display-blue-scale-0: #001a47;
  --display-blue-scale-1: #002766;
  --display-blue-scale-2: #00378a;
  --display-blue-scale-3: #0046a8;
  --display-blue-scale-4: #005bd1;
  --display-blue-scale-5: #0576ff;
  --display-blue-scale-6: #4da0ff;
  --display-blue-scale-7: #61adff;
  --display-blue-scale-8: #85c2ff;
  --display-blue-scale-9: #a3d3ff;
  --display-brown-bgColor-emphasis: #755e3e;
  --display-brown-bgColor-muted: #241c14;
  --display-brown-borderColor-emphasis: #94774c;
  --display-brown-borderColor-muted: #342a1d;
  --display-brown-fgColor: #b69a6d;
  --display-brown-scale-0: #241c14;
  --display-brown-scale-1: #342a1d;
  --display-brown-scale-2: #483a28;
  --display-brown-scale-3: #5d4a32;
  --display-brown-scale-4: #755e3e;
  --display-brown-scale-5: #94774c;
  --display-brown-scale-6: #b69a6d;
  --display-brown-scale-7: #bfa77d;
  --display-brown-scale-8: #cdbb98;
  --display-brown-scale-9: #dbceb3;
  --display-coral-bgColor-emphasis: #c31328;
  --display-coral-bgColor-muted: #3c0614;
  --display-coral-borderColor-emphasis: #eb3342;
  --display-coral-borderColor-muted: #58091a;
  --display-coral-fgColor: #f27d83;
  --display-coral-scale-0: #351008;
  --display-coral-scale-1: #51180b;
  --display-coral-scale-2: #72220d;
  --display-coral-scale-3: #902a0e;
  --display-coral-scale-4: #b3350f;
  --display-coral-scale-5: #e1430e;
  --display-coral-scale-6: #f7794b;
  --display-coral-scale-7: #fa8c61;
  --display-coral-scale-8: #fdaa86;
  --display-coral-scale-9: #ffc0a3;
  --display-cyan-bgColor-emphasis: #036a8c;
  --display-cyan-bgColor-muted: #001f29;
  --display-cyan-borderColor-emphasis: #0587b3;
  --display-cyan-borderColor-muted: #002e3d;
  --display-cyan-fgColor: #07ace4;
  --display-cyan-scale-0: #001f29;
  --display-cyan-scale-1: #002e3d;
  --display-cyan-scale-2: #014156;
  --display-cyan-scale-3: #02536f;
  --display-cyan-scale-4: #036a8c;
  --display-cyan-scale-5: #0587b3;
  --display-cyan-scale-6: #07ace4;
  --display-cyan-scale-7: #09b7f1;
  --display-cyan-scale-8: #45cbf7;
  --display-cyan-scale-9: #80dbf9;
  --display-gray-bgColor-emphasis: #576270;
  --display-gray-bgColor-muted: #1c1c1c;
  --display-gray-borderColor-emphasis: #6e7f96;
  --display-gray-borderColor-muted: #2a2b2d;
  --display-gray-fgColor: #92a1b5;
  --display-gray-scale-0: #1c1c1c;
  --display-gray-scale-1: #2a2b2d;
  --display-gray-scale-2: #393d41;
  --display-gray-scale-3: #474e57;
  --display-gray-scale-4: #576270;
  --display-gray-scale-5: #6e7f96;
  --display-gray-scale-6: #92a1b5;
  --display-gray-scale-7: #9babbf;
  --display-gray-scale-8: #b3c0d1;
  --display-gray-scale-9: #c4cfde;
  --display-green-bgColor-emphasis: #2f6f37;
  --display-green-bgColor-muted: #122117;
  --display-green-borderColor-emphasis: #388f3f;
  --display-green-borderColor-muted: #182f1f;
  --display-green-fgColor: #41b445;
  --display-green-scale-0: #122117;
  --display-green-scale-1: #182f1f;
  --display-green-scale-2: #214529;
  --display-green-scale-3: #285830;
  --display-green-scale-4: #2f6f37;
  --display-green-scale-5: #388f3f;
  --display-green-scale-6: #41b445;
  --display-green-scale-7: #46c144;
  --display-green-scale-8: #75d36f;
  --display-green-scale-9: #99e090;
  --display-indigo-bgColor-emphasis: #514ed4;
  --display-indigo-bgColor-muted: #1b183f;
  --display-indigo-borderColor-emphasis: #7070e1;
  --display-indigo-borderColor-muted: #25215f;
  --display-indigo-fgColor: #9899ec;
  --display-indigo-scale-0: #1b183f;
  --display-indigo-scale-1: #25215f;
  --display-indigo-scale-2: #312c90;
  --display-indigo-scale-3: #3935c0;
  --display-indigo-scale-4: #514ed4;
  --display-indigo-scale-5: #7070e1;
  --display-indigo-scale-6: #9899ec;
  --display-indigo-scale-7: #a2a5f1;
  --display-indigo-scale-8: #b7baf6;
  --display-indigo-scale-9: #c8cbf9;
  --display-lemon-bgColor-emphasis: #786008;
  --display-lemon-bgColor-muted: #291d00;
  --display-lemon-borderColor-emphasis: #977b0c;
  --display-lemon-borderColor-muted: #372901;
  --display-lemon-fgColor: #ba9b12;
  --display-lemon-scale-0: #291d00;
  --display-lemon-scale-1: #372901;
  --display-lemon-scale-2: #4f3c02;
  --display-lemon-scale-3: #614c05;
  --display-lemon-scale-4: #786008;
  --display-lemon-scale-5: #977b0c;
  --display-lemon-scale-6: #ba9b12;
  --display-lemon-scale-7: #c4a717;
  --display-lemon-scale-8: #d7bc1d;
  --display-lemon-scale-9: #e3d04f;
  --display-lime-bgColor-emphasis: #496c28;
  --display-lime-bgColor-muted: #141f0f;
  --display-lime-borderColor-emphasis: #5f892f;
  --display-lime-borderColor-muted: #1f3116;
  --display-lime-fgColor: #7dae37;
  --display-lime-scale-0: #141f0f;
  --display-lime-scale-1: #1f3116;
  --display-lime-scale-2: #2c441d;
  --display-lime-scale-3: #375421;
  --display-lime-scale-4: #496c28;
  --display-lime-scale-5: #5f892f;
  --display-lime-scale-6: #7dae37;
  --display-lime-scale-7: #89ba36;
  --display-lime-scale-8: #9fcc3e;
  --display-lime-scale-9: #bcda67;
  --display-olive-bgColor-emphasis: #5e681d;
  --display-olive-bgColor-muted: #171e0b;
  --display-olive-borderColor-emphasis: #7a8321;
  --display-olive-borderColor-muted: #252d10;
  --display-olive-fgColor: #a2a626;
  --display-olive-scale-0: #171e0b;
  --display-olive-scale-1: #252d10;
  --display-olive-scale-2: #374115;
  --display-olive-scale-3: #485219;
  --display-olive-scale-4: #5e681d;
  --display-olive-scale-5: #7a8321;
  --display-olive-scale-6: #a2a626;
  --display-olive-scale-7: #b2af24;
  --display-olive-scale-8: #cbc025;
  --display-olive-scale-9: #e2d04b;
  --display-orange-bgColor-emphasis: #984b10;
  --display-orange-bgColor-muted: #311708;
  --display-orange-borderColor-emphasis: #c46212;
  --display-orange-borderColor-muted: #43200a;
  --display-orange-fgColor: #ed8326;
  --display-orange-scale-0: #311708;
  --display-orange-scale-1: #43200a;
  --display-orange-scale-2: #632f0d;
  --display-orange-scale-3: #7b3c0e;
  --display-orange-scale-4: #984b10;
  --display-orange-scale-5: #c46212;
  --display-orange-scale-6: #ed8326;
  --display-orange-scale-7: #f1933b;
  --display-orange-scale-8: #f6b06a;
  --display-orange-scale-9: #fac68f;
  --display-pine-bgColor-emphasis: #14714c;
  --display-pine-bgColor-muted: #082119;
  --display-pine-borderColor-emphasis: #18915e;
  --display-pine-borderColor-muted: #0b3224;
  --display-pine-fgColor: #1bb673;
  --display-pine-scale-0: #082119;
  --display-pine-scale-1: #0b3224;
  --display-pine-scale-2: #0e4430;
  --display-pine-scale-3: #115a3e;
  --display-pine-scale-4: #14714c;
  --display-pine-scale-5: #18915e;
  --display-pine-scale-6: #1bb673;
  --display-pine-scale-7: #1ac176;
  --display-pine-scale-8: #1bda81;
  --display-pine-scale-9: #3eea97;
  --display-pink-bgColor-emphasis: #ac2f74;
  --display-pink-bgColor-muted: #2d1524;
  --display-pink-borderColor-emphasis: #d34591;
  --display-pink-borderColor-muted: #451c35;
  --display-pink-fgColor: #e57bb2;
  --display-pink-scale-0: #2d1524;
  --display-pink-scale-1: #451c35;
  --display-pink-scale-2: #65244a;
  --display-pink-scale-3: #842a5d;
  --display-pink-scale-4: #ac2f74;
  --display-pink-scale-5: #d34591;
  --display-pink-scale-6: #e57bb2;
  --display-pink-scale-7: #ec8dbd;
  --display-pink-scale-8: #f4a9cd;
  --display-pink-scale-9: #f9bed9;
  --display-plum-bgColor-emphasis: #9518d8;
  --display-plum-bgColor-muted: #2a0e3f;
  --display-plum-borderColor-emphasis: #b643ef;
  --display-plum-borderColor-muted: #40125e;
  --display-plum-fgColor: #d07ef7;
  --display-plum-scale-0: #2a0e3f;
  --display-plum-scale-1: #40125e;
  --display-plum-scale-2: #5c1688;
  --display-plum-scale-3: #7517ab;
  --display-plum-scale-4: #9518d8;
  --display-plum-scale-5: #b643ef;
  --display-plum-scale-6: #d07ef7;
  --display-plum-scale-7: #d889fa;
  --display-plum-scale-8: #e4a5fd;
  --display-plum-scale-9: #edbdff;
  --display-purple-bgColor-emphasis: #7730e8;
  --display-purple-bgColor-muted: #211047;
  --display-purple-borderColor-emphasis: #975bf1;
  --display-purple-borderColor-muted: #31146b;
  --display-purple-fgColor: #b687f7;
  --display-purple-scale-0: #211047;
  --display-purple-scale-1: #31146b;
  --display-purple-scale-2: #481a9e;
  --display-purple-scale-3: #5b1cca;
  --display-purple-scale-4: #7730e8;
  --display-purple-scale-5: #975bf1;
  --display-purple-scale-6: #b687f7;
  --display-purple-scale-7: #c398fb;
  --display-purple-scale-8: #d2affd;
  --display-purple-scale-9: #e1c7ff;
  --display-red-bgColor-emphasis: #c31328;
  --display-red-bgColor-muted: #3c0614;
  --display-red-borderColor-emphasis: #eb3342;
  --display-red-borderColor-muted: #58091a;
  --display-red-fgColor: #f27d83;
  --display-red-scale-0: #3c0614;
  --display-red-scale-1: #58091a;
  --display-red-scale-2: #790c20;
  --display-red-scale-3: #990f24;
  --display-red-scale-4: #c31328;
  --display-red-scale-5: #eb3342;
  --display-red-scale-6: #f27d83;
  --display-red-scale-7: #f48b8d;
  --display-red-scale-8: #f7adab;
  --display-red-scale-9: #f9c1be;
  --display-teal-bgColor-emphasis: #106c70;
  --display-teal-bgColor-muted: #041f25;
  --display-teal-borderColor-emphasis: #158a8a;
  --display-teal-borderColor-muted: #073036;
  --display-teal-fgColor: #1cb0ab;
  --display-teal-scale-0: #041f25;
  --display-teal-scale-1: #073036;
  --display-teal-scale-2: #0a464d;
  --display-teal-scale-3: #0c555a;
  --display-teal-scale-4: #106c70;
  --display-teal-scale-5: #158a8a;
  --display-teal-scale-6: #1cb0ab;
  --display-teal-scale-7: #1fbdb2;
  --display-teal-scale-8: #24d6c4;
  --display-teal-scale-9: #5fe3d1;
  --display-yellow-bgColor-emphasis: #895906;
  --display-yellow-bgColor-muted: #2e1a00;
  --display-yellow-borderColor-emphasis: #aa7109;
  --display-yellow-borderColor-muted: #3d2401;
  --display-yellow-fgColor: #d3910d;
  --display-yellow-scale-0: #2e1a00;
  --display-yellow-scale-1: #3d2401;
  --display-yellow-scale-2: #5a3702;
  --display-yellow-scale-3: #6d4403;
  --display-yellow-scale-4: #895906;
  --display-yellow-scale-5: #aa7109;
  --display-yellow-scale-6: #d3910d;
  --display-yellow-scale-7: #df9e11;
  --display-yellow-scale-8: #edb431;
  --display-yellow-scale-9: #f0ca6a;
  --fgColor-attention: #c69026;
  --fgColor-danger: #e5534b;
  --fgColor-default: #d1d7e0;
  --fgColor-disabled: #656c76;
  --fgColor-done: #986ee2;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-muted: #9198a1;
  --fgColor-neutral: #9198a1;
  --fgColor-onEmphasis: #f0f6fc;
  --fgColor-severe: #cc6b2c;
  --fgColor-sponsors: #c96198;
  --fgColor-success: #57ab5a;
  --header-bgColor: #151b23f2;
  --header-borderColor-divider: #656c76;
  --header-fgColor-logo: #f0f6fc;
  --headerSearch-bgColor: #0d1117;
  --headerSearch-borderColor: #2a313c;
  --highlight-neutral-bgColor: #c6902666;
  --label-auburn-bgColor-active: #543331;
  --label-auburn-bgColor-hover: #3a2422;
  --label-auburn-bgColor-rest: #271817;
  --label-auburn-fgColor-active: #d4b7b5;
  --label-auburn-fgColor-hover: #c6a19f;
  --label-auburn-fgColor-rest: #bf9592;
  --label-blue-bgColor-active: #00378a;
  --label-blue-bgColor-hover: #002766;
  --label-blue-bgColor-rest: #001a47;
  --label-blue-fgColor-active: #85c2ff;
  --label-blue-fgColor-hover: #61adff;
  --label-blue-fgColor-rest: #4da0ff;
  --label-brown-bgColor-active: #483a28;
  --label-brown-bgColor-hover: #342a1d;
  --label-brown-bgColor-rest: #241c14;
  --label-brown-fgColor-active: #cdbb98;
  --label-brown-fgColor-hover: #bfa77d;
  --label-brown-fgColor-rest: #b69a6d;
  --label-coral-bgColor-active: #72220d;
  --label-coral-bgColor-hover: #51180b;
  --label-coral-bgColor-rest: #351008;
  --label-coral-fgColor-active: #fdaa86;
  --label-coral-fgColor-hover: #fa8c61;
  --label-coral-fgColor-rest: #f7794b;
  --label-cyan-bgColor-active: #014156;
  --label-cyan-bgColor-hover: #002e3d;
  --label-cyan-bgColor-rest: #001f29;
  --label-cyan-fgColor-active: #45cbf7;
  --label-cyan-fgColor-hover: #09b7f1;
  --label-cyan-fgColor-rest: #07ace4;
  --label-gray-bgColor-active: #393d41;
  --label-gray-bgColor-hover: #2a2b2d;
  --label-gray-bgColor-rest: #1c1c1c;
  --label-gray-fgColor-active: #b3c0d1;
  --label-gray-fgColor-hover: #9babbf;
  --label-gray-fgColor-rest: #92a1b5;
  --label-green-bgColor-active: #214529;
  --label-green-bgColor-hover: #182f1f;
  --label-green-bgColor-rest: #122117;
  --label-green-fgColor-active: #75d36f;
  --label-green-fgColor-hover: #46c144;
  --label-green-fgColor-rest: #41b445;
  --label-indigo-bgColor-active: #312c90;
  --label-indigo-bgColor-hover: #25215f;
  --label-indigo-bgColor-rest: #1b183f;
  --label-indigo-fgColor-active: #b7baf6;
  --label-indigo-fgColor-hover: #a2a5f1;
  --label-indigo-fgColor-rest: #9899ec;
  --label-lemon-bgColor-active: #4f3c02;
  --label-lemon-bgColor-hover: #372901;
  --label-lemon-bgColor-rest: #291d00;
  --label-lemon-fgColor-active: #d7bc1d;
  --label-lemon-fgColor-hover: #c4a717;
  --label-lemon-fgColor-rest: #ba9b12;
  --label-lime-bgColor-active: #2c441d;
  --label-lime-bgColor-hover: #1f3116;
  --label-lime-bgColor-rest: #141f0f;
  --label-lime-fgColor-active: #9fcc3e;
  --label-lime-fgColor-hover: #89ba36;
  --label-lime-fgColor-rest: #7dae37;
  --label-olive-bgColor-active: #374115;
  --label-olive-bgColor-hover: #252d10;
  --label-olive-bgColor-rest: #171e0b;
  --label-olive-fgColor-active: #cbc025;
  --label-olive-fgColor-hover: #b2af24;
  --label-olive-fgColor-rest: #a2a626;
  --label-orange-bgColor-active: #632f0d;
  --label-orange-bgColor-hover: #43200a;
  --label-orange-bgColor-rest: #311708;
  --label-orange-fgColor-active: #f6b06a;
  --label-orange-fgColor-hover: #f1933b;
  --label-orange-fgColor-rest: #ed8326;
  --label-pine-bgColor-active: #0e4430;
  --label-pine-bgColor-hover: #0b3224;
  --label-pine-bgColor-rest: #082119;
  --label-pine-fgColor-active: #1bda81;
  --label-pine-fgColor-hover: #1ac176;
  --label-pine-fgColor-rest: #1bb673;
  --label-pink-bgColor-active: #65244a;
  --label-pink-bgColor-hover: #451c35;
  --label-pink-bgColor-rest: #2d1524;
  --label-pink-fgColor-active: #f4a9cd;
  --label-pink-fgColor-hover: #ec8dbd;
  --label-pink-fgColor-rest: #e57bb2;
  --label-plum-bgColor-active: #5c1688;
  --label-plum-bgColor-hover: #40125e;
  --label-plum-bgColor-rest: #2a0e3f;
  --label-plum-fgColor-active: #e4a5fd;
  --label-plum-fgColor-hover: #d889fa;
  --label-plum-fgColor-rest: #d07ef7;
  --label-purple-bgColor-active: #481a9e;
  --label-purple-bgColor-hover: #31146b;
  --label-purple-bgColor-rest: #211047;
  --label-purple-fgColor-active: #d2affd;
  --label-purple-fgColor-hover: #c398fb;
  --label-purple-fgColor-rest: #b687f7;
  --label-red-bgColor-active: #790c20;
  --label-red-bgColor-hover: #58091a;
  --label-red-bgColor-rest: #3c0614;
  --label-red-fgColor-active: #f7adab;
  --label-red-fgColor-hover: #f48b8d;
  --label-red-fgColor-rest: #f27d83;
  --label-teal-bgColor-active: #0a464d;
  --label-teal-bgColor-hover: #073036;
  --label-teal-bgColor-rest: #041f25;
  --label-teal-fgColor-active: #24d6c4;
  --label-teal-fgColor-hover: #1fbdb2;
  --label-teal-fgColor-rest: #1cb0ab;
  --label-yellow-bgColor-active: #5a3702;
  --label-yellow-bgColor-hover: #3d2401;
  --label-yellow-bgColor-rest: #2e1a00;
  --label-yellow-fgColor-active: #edb431;
  --label-yellow-fgColor-hover: #df9e11;
  --label-yellow-fgColor-rest: #d3910d;
  --menu-bgColor-active: #151b23;
  --overlay-backdrop-bgColor: #262c3666;
  --overlay-bgColor: #2a313c;
  --overlay-borderColor: #3d444db3;
  --reactionButton-selected-bgColor-rest: #4184e433;
  --reactionButton-selected-fgColor-hover: #6cb6ff;
  --selectMenu-bgColor-active: #143d79;
  --sideNav-bgColor-selected: #212830;
  --skeletonLoader-bgColor: #656c7633;
  --timelineBadge-bgColor: #262c36;
  --topicTag-borderColor: #00000000;
  --underlineNav-borderColor-active: #ec775c;
  --avatar-bgColor: #cdd9e51a;
  --bgColor-black: #1c2128;
  --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
  --bgColor-closed-muted: var(--bgColor-danger-muted);
  --bgColor-inverse: #cdd9e5;
  --bgColor-open-emphasis: var(--bgColor-success-emphasis);
  --bgColor-open-muted: var(--bgColor-success-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #cdd9e5;
  --border-accent-emphasis: 0.0625rem solid #316dca;
  --border-accent-muted: 0.0625rem solid #4184e466;
  --border-attention-emphasis: 0.0625rem solid #966600;
  --border-attention-muted: 0.0625rem solid #ae7c1466;
  --border-danger-emphasis: 0.0625rem solid #c93c37;
  --border-danger-muted: 0.0625rem solid #e5534b66;
  --border-default: 0.0625rem solid #3d444d;
  --border-disabled: 0.0625rem solid #656c761a;
  --border-done-emphasis: 0.0625rem solid #8256d0;
  --border-done-muted: 0.0625rem solid #986ee266;
  --border-emphasis: 0.0625rem solid #656c76;
  --border-muted: 0.0625rem solid #3d444db3;
  --border-neutral-muted: 0.0625rem solid #3d444db3;
  --border-severe-emphasis: 0.0625rem solid #ae5622;
  --border-severe-muted: 0.0625rem solid #cc6b2c66;
  --border-sponsors-emphasis: 0.0625rem solid #ae4c82;
  --border-sponsors-muted: 0.0625rem solid #c9619866;
  --border-success-emphasis: 0.0625rem solid #347d39;
  --border-success-muted: 0.0625rem solid #46954a66;
  --border-transparent: 0.0625rem solid #00000000;
  --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
  --borderColor-closed-muted: var(--borderColor-danger-muted);
  --borderColor-neutral-emphasis: var(--borderColor-emphasis);
  --borderColor-open-emphasis: var(--borderColor-success-emphasis);
  --borderColor-open-muted: var(--borderColor-success-muted);
  --borderColor-translucent: #cdd9e526;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #cdd9e5;
  --button-danger-fgColor-disabled: #e5534b80;
  --button-danger-fgColor-hover: #cdd9e5;
  --button-danger-iconColor-hover: #cdd9e5;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-default-borderColor-active: var(--button-default-borderColor-rest);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-outline-bgColor-hover: var(--control-bgColor-hover);
  --button-outline-fgColor-active: #cdd9e5;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #cdd9e51a;
  --button-primary-fgColor-disabled: #cdd9e566;
  --buttonCounter-danger-bgColor-disabled: #c93c370d;
  --buttonCounter-danger-bgColor-hover: #cdd9e533;
  --buttonCounter-danger-fgColor-disabled: #e5534b80;
  --buttonCounter-danger-fgColor-hover: #cdd9e5;
  --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #316dca0d;
  --card-bgColor: var(--bgColor-muted);
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --color-ansi-white-bright: #cdd9e5;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-checked-fgColor-disabled: #1c2128;
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --control-danger-bgColor-active: #e5534b66;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-fgColor-rest: var(--fgColor-default);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #cdd9e5;
  --controlKnob-bgColor-rest: var(--bgColor-inset);
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --controlTrack-fgColor-rest: var(--fgColor-muted);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --fgColor-black: #1c2128;
  --fgColor-closed: var(--fgColor-danger);
  --fgColor-onInverse: #1c2128;
  --fgColor-open: var(--fgColor-success);
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #cdd9e5;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #cdd9e5b3;
  --page-header-bgColor: var(--bgColor-default);
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --selectMenu-borderColor: var(--borderColor-default);
  --selection-bgColor: #316dcab3;
  --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #1c2128;
  --shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
  --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #1c212866, 0px 4px 32px -4px #1c212866, 0px 24px 48px -12px #1c212866, 0px 48px 96px -24px #1c212866;
  --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
  --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #1c2128;
  --shadow-inset: inset 0px 1px 0px 0px #1c21283d;
  --shadow-resting-medium: 0px 1px 1px 0px #1c212866, 0px 3px 6px 0px #1c2128cc;
  --shadow-resting-small: 0px 1px 1px 0px #1c212899, 0px 1px 3px 0px #1c212899;
  --shadow-resting-xsmall: 0px 1px 1px 0px #1c2128cc;
  --tooltip-bgColor: var(--bgColor-emphasis);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
  --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-neutral-emphasis: 0.0625rem solid #656c76;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8256d0;
  --border-upsell-muted: 0.0625rem solid #986ee266;
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --focus-outline: 2px solid #316dca;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="dark_dimmed"],
  [data-color-mode="auto"][data-dark-theme="dark_dimmed"] ::backdrop {
    --button-danger-bgColor-active: #c33d38;
    --button-danger-fgColor-rest: #ea5c53;
    --button-danger-iconColor-rest: #ea5c53;
    --button-outline-fgColor-disabled: #478be680;
    --button-primary-bgColor-active: #428f46;
    --button-primary-bgColor-disabled: #50a254;
    --button-primary-bgColor-hover: #3b8640;
    --button-primary-borderColor-disabled: #50a254;
    --button-primary-fgColor-rest: #ffffff;
    --button-primary-iconColor-rest: #ffffff;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --control-borderColor-rest: #3d444d;
    --control-checked-bgColor-active: #3f7fdb;
    --control-checked-bgColor-hover: #3876d3;
    --control-checked-borderColor-active: #3f7fdb;
    --control-checked-borderColor-hover: #3876d3;
    --fgColor-accent: #478be6;
    --reactionButton-selected-bgColor-hover: #4285e55c;
    --avatar-shadow: 0px 0px 0px 2px #0d1117;
    --avatarStack-fade-bgColor-default: #3d444d;
    --avatarStack-fade-bgColor-muted: #2a313c;
    --bgColor-accent-emphasis: #316dca;
    --bgColor-accent-muted: #4184e41a;
    --bgColor-attention-emphasis: #966600;
    --bgColor-attention-muted: #ae7c1426;
    --bgColor-danger-emphasis: #c93c37;
    --bgColor-danger-muted: #e5534b1a;
    --bgColor-default: #212830;
    --bgColor-disabled: #2a313c;
    --bgColor-done-emphasis: #8256d0;
    --bgColor-done-muted: #986ee226;
    --bgColor-emphasis: #3d444d;
    --bgColor-inset: #151b23;
    --bgColor-muted: #262c36;
    --bgColor-neutral-emphasis: #656c76;
    --bgColor-neutral-muted: #656c7633;
    --bgColor-severe-emphasis: #ae5622;
    --bgColor-severe-muted: #cc6b2c1a;
    --bgColor-sponsors-emphasis: #ae4c82;
    --bgColor-sponsors-muted: #c961981a;
    --bgColor-success-emphasis: #347d39;
    --bgColor-success-muted: #46954a26;
    --bgColor-transparent: #00000000;
    --borderColor-accent-emphasis: #316dca;
    --borderColor-accent-muted: #4184e466;
    --borderColor-attention-emphasis: #966600;
    --borderColor-attention-muted: #ae7c1466;
    --borderColor-danger-emphasis: #c93c37;
    --borderColor-danger-muted: #e5534b66;
    --borderColor-default: #3d444d;
    --borderColor-disabled: #656c761a;
    --borderColor-done-emphasis: #8256d0;
    --borderColor-done-muted: #986ee266;
    --borderColor-emphasis: #656c76;
    --borderColor-muted: #3d444db3;
    --borderColor-neutral-muted: #3d444db3;
    --borderColor-severe-emphasis: #ae5622;
    --borderColor-severe-muted: #cc6b2c66;
    --borderColor-sponsors-emphasis: #ae4c82;
    --borderColor-sponsors-muted: #c9619866;
    --borderColor-success-emphasis: #347d39;
    --borderColor-success-muted: #46954a66;
    --borderColor-transparent: #00000000;
    --button-danger-bgColor-hover: #ad2e2c;
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-default-shadow-resting: 0px 0px 0px 0px #000000;
    --button-inactive-bgColor: #2a313c;
    --button-inactive-fgColor: #656c76;
    --button-invisible-bgColor-disabled: #00000000;
    --button-invisible-borderColor-disabled: #00000000;
    --button-invisible-iconColor-hover: #b7bdc8;
    --button-invisible-iconColor-rest: #b7bdc8;
    --button-outline-bgColor-active: #1b4b91;
    --button-outline-bgColor-rest: #f0f6fc;
    --button-outline-fgColor-hover: #539bf5;
    --button-outline-fgColor-rest: #4184e4;
    --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
    --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
    --button-star-iconColor: #daaa3f;
    --buttonCounter-danger-bgColor-rest: #5d0f1233;
    --buttonCounter-default-bgColor-rest: #2f3742;
    --buttonCounter-outline-bgColor-hover: #0f2d5c33;
    --buttonCounter-outline-bgColor-rest: #0f2d5c33;
    --buttonCounter-outline-fgColor-disabled: #478be680;
    --buttonCounter-outline-fgColor-hover: #539bf5;
    --buttonCounter-outline-fgColor-rest: #4184e4;
    --buttonCounter-primary-bgColor-rest: #11341733;
    --codeMirror-syntax-fgColor-comment: #656c76;
    --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;
    --color-ansi-black: #2f3742;
    --color-ansi-black-bright: #656c76;
    --color-ansi-blue: #539bf5;
    --color-ansi-blue-bright: #6cb6ff;
    --color-ansi-gray: #656c76;
    --color-ansi-green: #57ab5a;
    --color-ansi-green-bright: #6bc46d;
    --color-ansi-magenta: #b083f0;
    --color-ansi-magenta-bright: #dcbdfb;
    --color-ansi-red: #f47067;
    --color-ansi-red-bright: #ff938a;
    --color-ansi-white: #f0f6fc;
    --color-ansi-yellow: #c69026;
    --color-ansi-yellow-bright: #daaa3f;
    --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
    --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b;
    --color-prettylights-syntax-carriage-return-bg: #ad2e2c;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-comment: #9198a1;
    --color-prettylights-syntax-constant: #6cb6ff;
    --color-prettylights-syntax-constant-other-reference-link: #96d0ff;
    --color-prettylights-syntax-entity: #dcbdfb;
    --color-prettylights-syntax-entity-tag: #8ddb8c;
    --color-prettylights-syntax-invalid-illegal-bg: #922323;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-keyword: #f47067;
    --color-prettylights-syntax-markup-bold: #f0f6fc;
    --color-prettylights-syntax-markup-changed-bg: #682d0f;
    --color-prettylights-syntax-markup-changed-text: #ffddb0;
    --color-prettylights-syntax-markup-deleted-bg: #78191b;
    --color-prettylights-syntax-markup-deleted-text: #ffd8d3;
    --color-prettylights-syntax-markup-heading: #316dca;
    --color-prettylights-syntax-markup-ignored-bg: #255ab2;
    --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
    --color-prettylights-syntax-markup-inserted-bg: #1b4721;
    --color-prettylights-syntax-markup-inserted-text: #b4f1b4;
    --color-prettylights-syntax-markup-italic: #f0f6fc;
    --color-prettylights-syntax-markup-list: #eac55f;
    --color-prettylights-syntax-meta-diff-range: #dcbdfb;
    --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
    --color-prettylights-syntax-string: #96d0ff;
    --color-prettylights-syntax-string-regexp: #8ddb8c;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
    --color-prettylights-syntax-variable: #f69d50;
    --contribution-default-bgColor-0: #2a313c;
    --contribution-default-bgColor-1: #1b4721;
    --contribution-default-bgColor-2: #2b6a30;
    --contribution-default-bgColor-3: #46954a;
    --contribution-default-bgColor-4: #6bc46d;
    --contribution-default-borderColor-0: #cdd9e50d;
    --contribution-default-borderColor-1: #cdd9e50d;
    --contribution-default-borderColor-2: #cdd9e50d;
    --contribution-default-borderColor-3: #cdd9e50d;
    --contribution-default-borderColor-4: #cdd9e50d;
    --contribution-halloween-bgColor-1: #fac68f;
    --contribution-halloween-bgColor-2: #c46212;
    --contribution-halloween-bgColor-3: #984b10;
    --contribution-halloween-bgColor-4: #e3d04f;
    --contribution-winter-bgColor-1: #143d79;
    --contribution-winter-bgColor-2: #255ab2;
    --contribution-winter-bgColor-3: #539bf5;
    --contribution-winter-bgColor-4: #c6e6ff;
    --control-bgColor-active: #3d444d;
    --control-bgColor-hover: #2f3742;
    --control-bgColor-rest: #2a313c;
    --control-borderColor-disabled: #656c761a;
    --control-borderColor-selected: #f0f6fc;
    --control-danger-fgColor-hover: #f47067;
    --control-transparent-bgColor-active: #656c7633;
    --control-transparent-bgColor-hover: #656c7626;
    --control-transparent-bgColor-rest: #00000000;
    --control-transparent-bgColor-selected: #656c761a;
    --control-transparent-borderColor-active: #00000000;
    --control-transparent-borderColor-hover: #00000000;
    --control-transparent-borderColor-rest: #00000000;
    --controlTrack-bgColor-active: #3d444d;
    --controlTrack-bgColor-hover: #2f3742;
    --controlTrack-bgColor-rest: #2a313c;
    --controlTrack-borderColor-rest: #3d444d;
    --counter-borderColor: #00000000;
    --data-auburn-color-emphasis: #a86f6b;
    --data-auburn-color-muted: #271817;
    --data-blue-color-emphasis: #0576ff;
    --data-blue-color-muted: #001a47;
    --data-brown-color-emphasis: #94774c;
    --data-brown-color-muted: #241c14;
    --data-coral-color-emphasis: #e1430e;
    --data-coral-color-muted: #351008;
    --data-gray-color-emphasis: #576270;
    --data-gray-color-muted: #1c1c1c;
    --data-green-color-emphasis: #2f6f37;
    --data-green-color-muted: #122117;
    --data-lemon-color-emphasis: #977b0c;
    --data-lemon-color-muted: #291d00;
    --data-lime-color-emphasis: #5f892f;
    --data-lime-color-muted: #141f0f;
    --data-olive-color-emphasis: #7a8321;
    --data-olive-color-muted: #171e0b;
    --data-orange-color-emphasis: #984b10;
    --data-orange-color-muted: #311708;
    --data-pine-color-emphasis: #18915e;
    --data-pine-color-muted: #082119;
    --data-pink-color-emphasis: #d34591;
    --data-pink-color-muted: #2d1524;
    --data-plum-color-emphasis: #b643ef;
    --data-plum-color-muted: #2a0e3f;
    --data-purple-color-emphasis: #975bf1;
    --data-purple-color-muted: #211047;
    --data-red-color-emphasis: #eb3342;
    --data-red-color-muted: #3c0614;
    --data-teal-color-emphasis: #106c70;
    --data-teal-color-muted: #041f25;
    --data-yellow-color-emphasis: #895906;
    --data-yellow-color-muted: #2e1a00;
    --diffBlob-additionNum-bgColor: #57ab5a4d;
    --diffBlob-additionWord-bgColor: #46954a66;
    --diffBlob-deletionNum-bgColor: #e5534b4d;
    --diffBlob-deletionWord-bgColor: #e5534b66;
    --diffBlob-hunkNum-bgColor-rest: #143d79;
    --display-auburn-bgColor-emphasis: #87534f;
    --display-auburn-bgColor-muted: #271817;
    --display-auburn-borderColor-emphasis: #a86f6b;
    --display-auburn-borderColor-muted: #3a2422;
    --display-auburn-fgColor: #bf9592;
    --display-auburn-scale-0: #271817;
    --display-auburn-scale-1: #3a2422;
    --display-auburn-scale-2: #543331;
    --display-auburn-scale-3: #6d4340;
    --display-auburn-scale-4: #87534f;
    --display-auburn-scale-5: #a86f6b;
    --display-auburn-scale-6: #bf9592;
    --display-auburn-scale-7: #c6a19f;
    --display-auburn-scale-8: #d4b7b5;
    --display-auburn-scale-9: #dfcac8;
    --display-blue-bgColor-emphasis: #005bd1;
    --display-blue-bgColor-muted: #001a47;
    --display-blue-borderColor-emphasis: #0576ff;
    --display-blue-borderColor-muted: #002766;
    --display-blue-fgColor: #4da0ff;
    --display-blue-scale-0: #001a47;
    --display-blue-scale-1: #002766;
    --display-blue-scale-2: #00378a;
    --display-blue-scale-3: #0046a8;
    --display-blue-scale-4: #005bd1;
    --display-blue-scale-5: #0576ff;
    --display-blue-scale-6: #4da0ff;
    --display-blue-scale-7: #61adff;
    --display-blue-scale-8: #85c2ff;
    --display-blue-scale-9: #a3d3ff;
    --display-brown-bgColor-emphasis: #755e3e;
    --display-brown-bgColor-muted: #241c14;
    --display-brown-borderColor-emphasis: #94774c;
    --display-brown-borderColor-muted: #342a1d;
    --display-brown-fgColor: #b69a6d;
    --display-brown-scale-0: #241c14;
    --display-brown-scale-1: #342a1d;
    --display-brown-scale-2: #483a28;
    --display-brown-scale-3: #5d4a32;
    --display-brown-scale-4: #755e3e;
    --display-brown-scale-5: #94774c;
    --display-brown-scale-6: #b69a6d;
    --display-brown-scale-7: #bfa77d;
    --display-brown-scale-8: #cdbb98;
    --display-brown-scale-9: #dbceb3;
    --display-coral-bgColor-emphasis: #c31328;
    --display-coral-bgColor-muted: #3c0614;
    --display-coral-borderColor-emphasis: #eb3342;
    --display-coral-borderColor-muted: #58091a;
    --display-coral-fgColor: #f27d83;
    --display-coral-scale-0: #351008;
    --display-coral-scale-1: #51180b;
    --display-coral-scale-2: #72220d;
    --display-coral-scale-3: #902a0e;
    --display-coral-scale-4: #b3350f;
    --display-coral-scale-5: #e1430e;
    --display-coral-scale-6: #f7794b;
    --display-coral-scale-7: #fa8c61;
    --display-coral-scale-8: #fdaa86;
    --display-coral-scale-9: #ffc0a3;
    --display-cyan-bgColor-emphasis: #036a8c;
    --display-cyan-bgColor-muted: #001f29;
    --display-cyan-borderColor-emphasis: #0587b3;
    --display-cyan-borderColor-muted: #002e3d;
    --display-cyan-fgColor: #07ace4;
    --display-cyan-scale-0: #001f29;
    --display-cyan-scale-1: #002e3d;
    --display-cyan-scale-2: #014156;
    --display-cyan-scale-3: #02536f;
    --display-cyan-scale-4: #036a8c;
    --display-cyan-scale-5: #0587b3;
    --display-cyan-scale-6: #07ace4;
    --display-cyan-scale-7: #09b7f1;
    --display-cyan-scale-8: #45cbf7;
    --display-cyan-scale-9: #80dbf9;
    --display-gray-bgColor-emphasis: #576270;
    --display-gray-bgColor-muted: #1c1c1c;
    --display-gray-borderColor-emphasis: #6e7f96;
    --display-gray-borderColor-muted: #2a2b2d;
    --display-gray-fgColor: #92a1b5;
    --display-gray-scale-0: #1c1c1c;
    --display-gray-scale-1: #2a2b2d;
    --display-gray-scale-2: #393d41;
    --display-gray-scale-3: #474e57;
    --display-gray-scale-4: #576270;
    --display-gray-scale-5: #6e7f96;
    --display-gray-scale-6: #92a1b5;
    --display-gray-scale-7: #9babbf;
    --display-gray-scale-8: #b3c0d1;
    --display-gray-scale-9: #c4cfde;
    --display-green-bgColor-emphasis: #2f6f37;
    --display-green-bgColor-muted: #122117;
    --display-green-borderColor-emphasis: #388f3f;
    --display-green-borderColor-muted: #182f1f;
    --display-green-fgColor: #41b445;
    --display-green-scale-0: #122117;
    --display-green-scale-1: #182f1f;
    --display-green-scale-2: #214529;
    --display-green-scale-3: #285830;
    --display-green-scale-4: #2f6f37;
    --display-green-scale-5: #388f3f;
    --display-green-scale-6: #41b445;
    --display-green-scale-7: #46c144;
    --display-green-scale-8: #75d36f;
    --display-green-scale-9: #99e090;
    --display-indigo-bgColor-emphasis: #514ed4;
    --display-indigo-bgColor-muted: #1b183f;
    --display-indigo-borderColor-emphasis: #7070e1;
    --display-indigo-borderColor-muted: #25215f;
    --display-indigo-fgColor: #9899ec;
    --display-indigo-scale-0: #1b183f;
    --display-indigo-scale-1: #25215f;
    --display-indigo-scale-2: #312c90;
    --display-indigo-scale-3: #3935c0;
    --display-indigo-scale-4: #514ed4;
    --display-indigo-scale-5: #7070e1;
    --display-indigo-scale-6: #9899ec;
    --display-indigo-scale-7: #a2a5f1;
    --display-indigo-scale-8: #b7baf6;
    --display-indigo-scale-9: #c8cbf9;
    --display-lemon-bgColor-emphasis: #786008;
    --display-lemon-bgColor-muted: #291d00;
    --display-lemon-borderColor-emphasis: #977b0c;
    --display-lemon-borderColor-muted: #372901;
    --display-lemon-fgColor: #ba9b12;
    --display-lemon-scale-0: #291d00;
    --display-lemon-scale-1: #372901;
    --display-lemon-scale-2: #4f3c02;
    --display-lemon-scale-3: #614c05;
    --display-lemon-scale-4: #786008;
    --display-lemon-scale-5: #977b0c;
    --display-lemon-scale-6: #ba9b12;
    --display-lemon-scale-7: #c4a717;
    --display-lemon-scale-8: #d7bc1d;
    --display-lemon-scale-9: #e3d04f;
    --display-lime-bgColor-emphasis: #496c28;
    --display-lime-bgColor-muted: #141f0f;
    --display-lime-borderColor-emphasis: #5f892f;
    --display-lime-borderColor-muted: #1f3116;
    --display-lime-fgColor: #7dae37;
    --display-lime-scale-0: #141f0f;
    --display-lime-scale-1: #1f3116;
    --display-lime-scale-2: #2c441d;
    --display-lime-scale-3: #375421;
    --display-lime-scale-4: #496c28;
    --display-lime-scale-5: #5f892f;
    --display-lime-scale-6: #7dae37;
    --display-lime-scale-7: #89ba36;
    --display-lime-scale-8: #9fcc3e;
    --display-lime-scale-9: #bcda67;
    --display-olive-bgColor-emphasis: #5e681d;
    --display-olive-bgColor-muted: #171e0b;
    --display-olive-borderColor-emphasis: #7a8321;
    --display-olive-borderColor-muted: #252d10;
    --display-olive-fgColor: #a2a626;
    --display-olive-scale-0: #171e0b;
    --display-olive-scale-1: #252d10;
    --display-olive-scale-2: #374115;
    --display-olive-scale-3: #485219;
    --display-olive-scale-4: #5e681d;
    --display-olive-scale-5: #7a8321;
    --display-olive-scale-6: #a2a626;
    --display-olive-scale-7: #b2af24;
    --display-olive-scale-8: #cbc025;
    --display-olive-scale-9: #e2d04b;
    --display-orange-bgColor-emphasis: #984b10;
    --display-orange-bgColor-muted: #311708;
    --display-orange-borderColor-emphasis: #c46212;
    --display-orange-borderColor-muted: #43200a;
    --display-orange-fgColor: #ed8326;
    --display-orange-scale-0: #311708;
    --display-orange-scale-1: #43200a;
    --display-orange-scale-2: #632f0d;
    --display-orange-scale-3: #7b3c0e;
    --display-orange-scale-4: #984b10;
    --display-orange-scale-5: #c46212;
    --display-orange-scale-6: #ed8326;
    --display-orange-scale-7: #f1933b;
    --display-orange-scale-8: #f6b06a;
    --display-orange-scale-9: #fac68f;
    --display-pine-bgColor-emphasis: #14714c;
    --display-pine-bgColor-muted: #082119;
    --display-pine-borderColor-emphasis: #18915e;
    --display-pine-borderColor-muted: #0b3224;
    --display-pine-fgColor: #1bb673;
    --display-pine-scale-0: #082119;
    --display-pine-scale-1: #0b3224;
    --display-pine-scale-2: #0e4430;
    --display-pine-scale-3: #115a3e;
    --display-pine-scale-4: #14714c;
    --display-pine-scale-5: #18915e;
    --display-pine-scale-6: #1bb673;
    --display-pine-scale-7: #1ac176;
    --display-pine-scale-8: #1bda81;
    --display-pine-scale-9: #3eea97;
    --display-pink-bgColor-emphasis: #ac2f74;
    --display-pink-bgColor-muted: #2d1524;
    --display-pink-borderColor-emphasis: #d34591;
    --display-pink-borderColor-muted: #451c35;
    --display-pink-fgColor: #e57bb2;
    --display-pink-scale-0: #2d1524;
    --display-pink-scale-1: #451c35;
    --display-pink-scale-2: #65244a;
    --display-pink-scale-3: #842a5d;
    --display-pink-scale-4: #ac2f74;
    --display-pink-scale-5: #d34591;
    --display-pink-scale-6: #e57bb2;
    --display-pink-scale-7: #ec8dbd;
    --display-pink-scale-8: #f4a9cd;
    --display-pink-scale-9: #f9bed9;
    --display-plum-bgColor-emphasis: #9518d8;
    --display-plum-bgColor-muted: #2a0e3f;
    --display-plum-borderColor-emphasis: #b643ef;
    --display-plum-borderColor-muted: #40125e;
    --display-plum-fgColor: #d07ef7;
    --display-plum-scale-0: #2a0e3f;
    --display-plum-scale-1: #40125e;
    --display-plum-scale-2: #5c1688;
    --display-plum-scale-3: #7517ab;
    --display-plum-scale-4: #9518d8;
    --display-plum-scale-5: #b643ef;
    --display-plum-scale-6: #d07ef7;
    --display-plum-scale-7: #d889fa;
    --display-plum-scale-8: #e4a5fd;
    --display-plum-scale-9: #edbdff;
    --display-purple-bgColor-emphasis: #7730e8;
    --display-purple-bgColor-muted: #211047;
    --display-purple-borderColor-emphasis: #975bf1;
    --display-purple-borderColor-muted: #31146b;
    --display-purple-fgColor: #b687f7;
    --display-purple-scale-0: #211047;
    --display-purple-scale-1: #31146b;
    --display-purple-scale-2: #481a9e;
    --display-purple-scale-3: #5b1cca;
    --display-purple-scale-4: #7730e8;
    --display-purple-scale-5: #975bf1;
    --display-purple-scale-6: #b687f7;
    --display-purple-scale-7: #c398fb;
    --display-purple-scale-8: #d2affd;
    --display-purple-scale-9: #e1c7ff;
    --display-red-bgColor-emphasis: #c31328;
    --display-red-bgColor-muted: #3c0614;
    --display-red-borderColor-emphasis: #eb3342;
    --display-red-borderColor-muted: #58091a;
    --display-red-fgColor: #f27d83;
    --display-red-scale-0: #3c0614;
    --display-red-scale-1: #58091a;
    --display-red-scale-2: #790c20;
    --display-red-scale-3: #990f24;
    --display-red-scale-4: #c31328;
    --display-red-scale-5: #eb3342;
    --display-red-scale-6: #f27d83;
    --display-red-scale-7: #f48b8d;
    --display-red-scale-8: #f7adab;
    --display-red-scale-9: #f9c1be;
    --display-teal-bgColor-emphasis: #106c70;
    --display-teal-bgColor-muted: #041f25;
    --display-teal-borderColor-emphasis: #158a8a;
    --display-teal-borderColor-muted: #073036;
    --display-teal-fgColor: #1cb0ab;
    --display-teal-scale-0: #041f25;
    --display-teal-scale-1: #073036;
    --display-teal-scale-2: #0a464d;
    --display-teal-scale-3: #0c555a;
    --display-teal-scale-4: #106c70;
    --display-teal-scale-5: #158a8a;
    --display-teal-scale-6: #1cb0ab;
    --display-teal-scale-7: #1fbdb2;
    --display-teal-scale-8: #24d6c4;
    --display-teal-scale-9: #5fe3d1;
    --display-yellow-bgColor-emphasis: #895906;
    --display-yellow-bgColor-muted: #2e1a00;
    --display-yellow-borderColor-emphasis: #aa7109;
    --display-yellow-borderColor-muted: #3d2401;
    --display-yellow-fgColor: #d3910d;
    --display-yellow-scale-0: #2e1a00;
    --display-yellow-scale-1: #3d2401;
    --display-yellow-scale-2: #5a3702;
    --display-yellow-scale-3: #6d4403;
    --display-yellow-scale-4: #895906;
    --display-yellow-scale-5: #aa7109;
    --display-yellow-scale-6: #d3910d;
    --display-yellow-scale-7: #df9e11;
    --display-yellow-scale-8: #edb431;
    --display-yellow-scale-9: #f0ca6a;
    --fgColor-attention: #c69026;
    --fgColor-danger: #e5534b;
    --fgColor-default: #d1d7e0;
    --fgColor-disabled: #656c76;
    --fgColor-done: #986ee2;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-muted: #9198a1;
    --fgColor-neutral: #9198a1;
    --fgColor-onEmphasis: #f0f6fc;
    --fgColor-severe: #cc6b2c;
    --fgColor-sponsors: #c96198;
    --fgColor-success: #57ab5a;
    --header-bgColor: #151b23f2;
    --header-borderColor-divider: #656c76;
    --header-fgColor-logo: #f0f6fc;
    --headerSearch-bgColor: #0d1117;
    --headerSearch-borderColor: #2a313c;
    --highlight-neutral-bgColor: #c6902666;
    --label-auburn-bgColor-active: #543331;
    --label-auburn-bgColor-hover: #3a2422;
    --label-auburn-bgColor-rest: #271817;
    --label-auburn-fgColor-active: #d4b7b5;
    --label-auburn-fgColor-hover: #c6a19f;
    --label-auburn-fgColor-rest: #bf9592;
    --label-blue-bgColor-active: #00378a;
    --label-blue-bgColor-hover: #002766;
    --label-blue-bgColor-rest: #001a47;
    --label-blue-fgColor-active: #85c2ff;
    --label-blue-fgColor-hover: #61adff;
    --label-blue-fgColor-rest: #4da0ff;
    --label-brown-bgColor-active: #483a28;
    --label-brown-bgColor-hover: #342a1d;
    --label-brown-bgColor-rest: #241c14;
    --label-brown-fgColor-active: #cdbb98;
    --label-brown-fgColor-hover: #bfa77d;
    --label-brown-fgColor-rest: #b69a6d;
    --label-coral-bgColor-active: #72220d;
    --label-coral-bgColor-hover: #51180b;
    --label-coral-bgColor-rest: #351008;
    --label-coral-fgColor-active: #fdaa86;
    --label-coral-fgColor-hover: #fa8c61;
    --label-coral-fgColor-rest: #f7794b;
    --label-cyan-bgColor-active: #014156;
    --label-cyan-bgColor-hover: #002e3d;
    --label-cyan-bgColor-rest: #001f29;
    --label-cyan-fgColor-active: #45cbf7;
    --label-cyan-fgColor-hover: #09b7f1;
    --label-cyan-fgColor-rest: #07ace4;
    --label-gray-bgColor-active: #393d41;
    --label-gray-bgColor-hover: #2a2b2d;
    --label-gray-bgColor-rest: #1c1c1c;
    --label-gray-fgColor-active: #b3c0d1;
    --label-gray-fgColor-hover: #9babbf;
    --label-gray-fgColor-rest: #92a1b5;
    --label-green-bgColor-active: #214529;
    --label-green-bgColor-hover: #182f1f;
    --label-green-bgColor-rest: #122117;
    --label-green-fgColor-active: #75d36f;
    --label-green-fgColor-hover: #46c144;
    --label-green-fgColor-rest: #41b445;
    --label-indigo-bgColor-active: #312c90;
    --label-indigo-bgColor-hover: #25215f;
    --label-indigo-bgColor-rest: #1b183f;
    --label-indigo-fgColor-active: #b7baf6;
    --label-indigo-fgColor-hover: #a2a5f1;
    --label-indigo-fgColor-rest: #9899ec;
    --label-lemon-bgColor-active: #4f3c02;
    --label-lemon-bgColor-hover: #372901;
    --label-lemon-bgColor-rest: #291d00;
    --label-lemon-fgColor-active: #d7bc1d;
    --label-lemon-fgColor-hover: #c4a717;
    --label-lemon-fgColor-rest: #ba9b12;
    --label-lime-bgColor-active: #2c441d;
    --label-lime-bgColor-hover: #1f3116;
    --label-lime-bgColor-rest: #141f0f;
    --label-lime-fgColor-active: #9fcc3e;
    --label-lime-fgColor-hover: #89ba36;
    --label-lime-fgColor-rest: #7dae37;
    --label-olive-bgColor-active: #374115;
    --label-olive-bgColor-hover: #252d10;
    --label-olive-bgColor-rest: #171e0b;
    --label-olive-fgColor-active: #cbc025;
    --label-olive-fgColor-hover: #b2af24;
    --label-olive-fgColor-rest: #a2a626;
    --label-orange-bgColor-active: #632f0d;
    --label-orange-bgColor-hover: #43200a;
    --label-orange-bgColor-rest: #311708;
    --label-orange-fgColor-active: #f6b06a;
    --label-orange-fgColor-hover: #f1933b;
    --label-orange-fgColor-rest: #ed8326;
    --label-pine-bgColor-active: #0e4430;
    --label-pine-bgColor-hover: #0b3224;
    --label-pine-bgColor-rest: #082119;
    --label-pine-fgColor-active: #1bda81;
    --label-pine-fgColor-hover: #1ac176;
    --label-pine-fgColor-rest: #1bb673;
    --label-pink-bgColor-active: #65244a;
    --label-pink-bgColor-hover: #451c35;
    --label-pink-bgColor-rest: #2d1524;
    --label-pink-fgColor-active: #f4a9cd;
    --label-pink-fgColor-hover: #ec8dbd;
    --label-pink-fgColor-rest: #e57bb2;
    --label-plum-bgColor-active: #5c1688;
    --label-plum-bgColor-hover: #40125e;
    --label-plum-bgColor-rest: #2a0e3f;
    --label-plum-fgColor-active: #e4a5fd;
    --label-plum-fgColor-hover: #d889fa;
    --label-plum-fgColor-rest: #d07ef7;
    --label-purple-bgColor-active: #481a9e;
    --label-purple-bgColor-hover: #31146b;
    --label-purple-bgColor-rest: #211047;
    --label-purple-fgColor-active: #d2affd;
    --label-purple-fgColor-hover: #c398fb;
    --label-purple-fgColor-rest: #b687f7;
    --label-red-bgColor-active: #790c20;
    --label-red-bgColor-hover: #58091a;
    --label-red-bgColor-rest: #3c0614;
    --label-red-fgColor-active: #f7adab;
    --label-red-fgColor-hover: #f48b8d;
    --label-red-fgColor-rest: #f27d83;
    --label-teal-bgColor-active: #0a464d;
    --label-teal-bgColor-hover: #073036;
    --label-teal-bgColor-rest: #041f25;
    --label-teal-fgColor-active: #24d6c4;
    --label-teal-fgColor-hover: #1fbdb2;
    --label-teal-fgColor-rest: #1cb0ab;
    --label-yellow-bgColor-active: #5a3702;
    --label-yellow-bgColor-hover: #3d2401;
    --label-yellow-bgColor-rest: #2e1a00;
    --label-yellow-fgColor-active: #edb431;
    --label-yellow-fgColor-hover: #df9e11;
    --label-yellow-fgColor-rest: #d3910d;
    --menu-bgColor-active: #151b23;
    --overlay-backdrop-bgColor: #262c3666;
    --overlay-bgColor: #2a313c;
    --overlay-borderColor: #3d444db3;
    --reactionButton-selected-bgColor-rest: #4184e433;
    --reactionButton-selected-fgColor-hover: #6cb6ff;
    --selectMenu-bgColor-active: #143d79;
    --sideNav-bgColor-selected: #212830;
    --skeletonLoader-bgColor: #656c7633;
    --timelineBadge-bgColor: #262c36;
    --topicTag-borderColor: #00000000;
    --underlineNav-borderColor-active: #ec775c;
    --avatar-bgColor: #cdd9e51a;
    --bgColor-black: #1c2128;
    --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
    --bgColor-closed-muted: var(--bgColor-danger-muted);
    --bgColor-inverse: #cdd9e5;
    --bgColor-open-emphasis: var(--bgColor-success-emphasis);
    --bgColor-open-muted: var(--bgColor-success-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #cdd9e5;
    --border-accent-emphasis: 0.0625rem solid #316dca;
    --border-accent-muted: 0.0625rem solid #4184e466;
    --border-attention-emphasis: 0.0625rem solid #966600;
    --border-attention-muted: 0.0625rem solid #ae7c1466;
    --border-danger-emphasis: 0.0625rem solid #c93c37;
    --border-danger-muted: 0.0625rem solid #e5534b66;
    --border-default: 0.0625rem solid #3d444d;
    --border-disabled: 0.0625rem solid #656c761a;
    --border-done-emphasis: 0.0625rem solid #8256d0;
    --border-done-muted: 0.0625rem solid #986ee266;
    --border-emphasis: 0.0625rem solid #656c76;
    --border-muted: 0.0625rem solid #3d444db3;
    --border-neutral-muted: 0.0625rem solid #3d444db3;
    --border-severe-emphasis: 0.0625rem solid #ae5622;
    --border-severe-muted: 0.0625rem solid #cc6b2c66;
    --border-sponsors-emphasis: 0.0625rem solid #ae4c82;
    --border-sponsors-muted: 0.0625rem solid #c9619866;
    --border-success-emphasis: 0.0625rem solid #347d39;
    --border-success-muted: 0.0625rem solid #46954a66;
    --border-transparent: 0.0625rem solid #00000000;
    --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
    --borderColor-closed-muted: var(--borderColor-danger-muted);
    --borderColor-neutral-emphasis: var(--borderColor-emphasis);
    --borderColor-open-emphasis: var(--borderColor-success-emphasis);
    --borderColor-open-muted: var(--borderColor-success-muted);
    --borderColor-translucent: #cdd9e526;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #cdd9e5;
    --button-danger-fgColor-disabled: #e5534b80;
    --button-danger-fgColor-hover: #cdd9e5;
    --button-danger-iconColor-hover: #cdd9e5;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-default-borderColor-active: var(--button-default-borderColor-rest);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-outline-bgColor-hover: var(--control-bgColor-hover);
    --button-outline-fgColor-active: #cdd9e5;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #cdd9e51a;
    --button-primary-fgColor-disabled: #cdd9e566;
    --buttonCounter-danger-bgColor-disabled: #c93c370d;
    --buttonCounter-danger-bgColor-hover: #cdd9e533;
    --buttonCounter-danger-fgColor-disabled: #e5534b80;
    --buttonCounter-danger-fgColor-hover: #cdd9e5;
    --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #316dca0d;
    --card-bgColor: var(--bgColor-muted);
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --color-ansi-white-bright: #cdd9e5;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-checked-fgColor-disabled: #1c2128;
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --control-danger-bgColor-active: #e5534b66;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-fgColor-rest: var(--fgColor-default);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #cdd9e5;
    --controlKnob-bgColor-rest: var(--bgColor-inset);
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --controlTrack-fgColor-rest: var(--fgColor-muted);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --fgColor-black: #1c2128;
    --fgColor-closed: var(--fgColor-danger);
    --fgColor-onInverse: #1c2128;
    --fgColor-open: var(--fgColor-success);
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #cdd9e5;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #cdd9e5b3;
    --page-header-bgColor: var(--bgColor-default);
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --selectMenu-borderColor: var(--borderColor-default);
    --selection-bgColor: #316dcab3;
    --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #1c2128;
    --shadow-floating-legacy: 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
    --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #1c212866, 0px 4px 32px -4px #1c212866, 0px 24px 48px -12px #1c212866, 0px 48px 96px -24px #1c212866;
    --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #1c212866, 0px 6px 18px 0px #1c212866;
    --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #1c2128;
    --shadow-inset: inset 0px 1px 0px 0px #1c21283d;
    --shadow-resting-medium: 0px 1px 1px 0px #1c212866, 0px 3px 6px 0px #1c2128cc;
    --shadow-resting-small: 0px 1px 1px 0px #1c212899, 0px 1px 3px 0px #1c212899;
    --shadow-resting-xsmall: 0px 1px 1px 0px #1c2128cc;
    --tooltip-bgColor: var(--bgColor-emphasis);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
    --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-neutral-emphasis: 0.0625rem solid #656c76;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8256d0;
    --border-upsell-muted: 0.0625rem solid #986ee266;
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --focus-outline: 2px solid #316dca;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --button-danger-iconColor-rest: #ffb1af;
  --button-primary-bgColor-active: #109135;
  --button-primary-bgColor-disabled: #048f2f;
  --button-primary-bgColor-hover: #08792b;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --control-checked-bgColor-active: #3c79d0;
  --control-checked-bgColor-hover: #2b64c1;
  --control-danger-bgColor-active: #c51120;
  --fgColor-accent: #74b9ff;
  --fgColor-done: #d3abff;
  --fgColor-sponsors: #ff90c8;
  --fgColor-success: #2bd853;
  --reactionButton-selected-bgColor-hover: #5dadff5c;
  --avatar-shadow: 0px 0px 0px 2px #0d1117;
  --avatarStack-fade-bgColor-default: #3d444d;
  --avatarStack-fade-bgColor-muted: #2a313c;
  --bgColor-accent-emphasis: #194fb1;
  --bgColor-accent-muted: #5cacff1a;
  --bgColor-attention-emphasis: #7b4900;
  --bgColor-attention-muted: #edaa2726;
  --bgColor-danger-emphasis: #ad0116;
  --bgColor-danger-muted: #ff80801a;
  --bgColor-disabled: #262c36;
  --bgColor-done-emphasis: #6921d7;
  --bgColor-done-muted: #bf8fff26;
  --bgColor-emphasis: #3d444d;
  --bgColor-muted: #151b23;
  --bgColor-neutral-emphasis: #3d444d;
  --bgColor-neutral-muted: #212830;
  --bgColor-severe-emphasis: #8f3c00;
  --bgColor-severe-muted: #f48b251a;
  --bgColor-sponsors-emphasis: #9c1d6a;
  --bgColor-sponsors-muted: #f87cbd1a;
  --bgColor-success-emphasis: #006222;
  --bgColor-success-muted: #0ac74026;
  --bgColor-transparent: #00000000;
  --borderColor-accent-emphasis: #409eff;
  --borderColor-accent-muted: #5cacff;
  --borderColor-attention-emphasis: #e09b13;
  --borderColor-attention-muted: #edaa27;
  --borderColor-danger-emphasis: #ff6a69;
  --borderColor-danger-muted: #ff8080;
  --borderColor-default: #b7bdc8;
  --borderColor-disabled: #656c761a;
  --borderColor-done-emphasis: #b87fff;
  --borderColor-done-muted: #bf8fff;
  --borderColor-severe-emphasis: #e7811d;
  --borderColor-severe-muted: #f48b25;
  --borderColor-sponsors-emphasis: #ef6eb1;
  --borderColor-sponsors-muted: #f87cbd;
  --borderColor-success-emphasis: #09b43a;
  --borderColor-success-muted: #0ac740;
  --borderColor-translucent: #9198a1;
  --borderColor-transparent: #00000000;
  --button-danger-borderColor-active: #ffb1af;
  --button-danger-borderColor-hover: #ffb1af;
  --button-danger-fgColor-rest: #ffb1af;
  --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
  --button-default-shadow-resting: 0px 0px 0px 0px #000000;
  --button-inactive-fgColor: #b7bdc8;
  --button-invisible-bgColor-active: #212830;
  --button-invisible-bgColor-disabled: #00000000;
  --button-invisible-bgColor-hover: #151b23;
  --button-invisible-borderColor-disabled: #00000000;
  --button-invisible-iconColor-hover: #d1d7e0;
  --button-invisible-iconColor-rest: #d1d7e0;
  --button-outline-bgColor-active: #2672f3;
  --button-outline-bgColor-rest: #f0f6fc;
  --button-outline-fgColor-disabled: #74b9ff80;
  --button-outline-fgColor-hover: #71b7ff;
  --button-outline-fgColor-rest: #5cacff;
  --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
  --button-primary-borderColor-active: #4ae168;
  --button-primary-borderColor-disabled: #4ae16866;
  --button-primary-borderColor-hover: #4ae168;
  --button-primary-borderColor-rest: #4ae168;
  --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
  --button-star-iconColor: #f7c843;
  --buttonCounter-default-bgColor-rest: #2f3742;
  --buttonCounter-outline-bgColor-hover: #194fb133;
  --buttonCounter-outline-bgColor-rest: #194fb133;
  --buttonCounter-outline-fgColor-disabled: #74b9ff80;
  --buttonCounter-outline-fgColor-hover: #71b7ff;
  --buttonCounter-outline-fgColor-rest: #5cacff;
  --codeMirror-selection-bgColor: #5cacff66;
  --codeMirror-syntax-fgColor-comment: #656c76;
  --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;
  --color-ansi-black: #2f3742;
  --color-ansi-black-bright: #656c76;
  --color-ansi-blue: #71b7ff;
  --color-ansi-blue-bright: #91cbff;
  --color-ansi-gray: #656c76;
  --color-ansi-green: #28d751;
  --color-ansi-green-bright: #4ae168;
  --color-ansi-magenta: #cb9eff;
  --color-ansi-magenta-bright: #dbb7ff;
  --color-ansi-red: #ff9492;
  --color-ansi-red-bright: #ffb1af;
  --color-ansi-white: #f0f6fc;
  --color-ansi-yellow: #f0b72f;
  --color-ansi-yellow-bright: #f7c843;
  --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
  --color-prettylights-syntax-brackethighlighter-unmatched: #ff8080;
  --color-prettylights-syntax-carriage-return-bg: #ff4445;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-comment: #9198a1;
  --color-prettylights-syntax-constant: #91cbff;
  --color-prettylights-syntax-constant-other-reference-link: #addcff;
  --color-prettylights-syntax-entity: #dbb7ff;
  --color-prettylights-syntax-entity-tag: #72f088;
  --color-prettylights-syntax-invalid-illegal-bg: #e82a2f;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-keyword: #ff9492;
  --color-prettylights-syntax-markup-bold: #f0f6fc;
  --color-prettylights-syntax-markup-changed-bg: #a74c00;
  --color-prettylights-syntax-markup-changed-text: #ffe1b4;
  --color-prettylights-syntax-markup-deleted-bg: #cc1421;
  --color-prettylights-syntax-markup-deleted-text: #ffdedb;
  --color-prettylights-syntax-markup-heading: #409eff;
  --color-prettylights-syntax-markup-ignored-bg: #318bf8;
  --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
  --color-prettylights-syntax-markup-inserted-bg: #007728;
  --color-prettylights-syntax-markup-inserted-text: #acf7b6;
  --color-prettylights-syntax-markup-italic: #f0f6fc;
  --color-prettylights-syntax-markup-list: #fbd669;
  --color-prettylights-syntax-meta-diff-range: #dbb7ff;
  --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
  --color-prettylights-syntax-string: #addcff;
  --color-prettylights-syntax-string-regexp: #72f088;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
  --color-prettylights-syntax-variable: #ffb757;
  --contribution-default-bgColor-0: #151b23;
  --contribution-default-bgColor-1: #007728;
  --contribution-default-bgColor-2: #02a232;
  --contribution-default-bgColor-3: #0ac740;
  --contribution-default-bgColor-4: #4ae168;
  --contribution-default-borderColor-0: #ffffff0d;
  --contribution-default-borderColor-1: #ffffff0d;
  --contribution-default-borderColor-2: #ffffff0d;
  --contribution-default-borderColor-3: #ffffff0d;
  --contribution-default-borderColor-4: #ffffff0d;
  --contribution-halloween-bgColor-1: #fac68f;
  --contribution-halloween-bgColor-2: #c46212;
  --contribution-halloween-bgColor-3: #984b10;
  --contribution-halloween-bgColor-4: #e3d04f;
  --contribution-winter-bgColor-1: #1e60d5;
  --contribution-winter-bgColor-2: #318bf8;
  --contribution-winter-bgColor-3: #71b7ff;
  --contribution-winter-bgColor-4: #caeaff;
  --control-bgColor-active: #2f3742;
  --control-bgColor-hover: #2a313c;
  --control-bgColor-rest: #262c36;
  --control-borderColor-selected: #f0f6fc;
  --control-checked-borderColor-active: #91cbff;
  --control-checked-borderColor-hover: #91cbff;
  --control-checked-borderColor-rest: #91cbff;
  --control-fgColor-placeholder: #b7bdc8;
  --control-transparent-bgColor-active: #3d444d;
  --control-transparent-bgColor-hover: #2f3742;
  --control-transparent-bgColor-rest: #00000000;
  --control-transparent-bgColor-selected: #2f3742;
  --control-transparent-borderColor-rest: #00000000;
  --controlTrack-bgColor-active: #3d444d;
  --controlTrack-bgColor-hover: #2f3742;
  --controlTrack-bgColor-rest: #2a313c;
  --data-auburn-color-emphasis: #a86f6b;
  --data-auburn-color-muted: #271817;
  --data-blue-color-emphasis: #0576ff;
  --data-blue-color-muted: #001a47;
  --data-brown-color-emphasis: #94774c;
  --data-brown-color-muted: #241c14;
  --data-coral-color-emphasis: #e1430e;
  --data-coral-color-muted: #351008;
  --data-gray-color-emphasis: #576270;
  --data-gray-color-muted: #1c1c1c;
  --data-green-color-emphasis: #2f6f37;
  --data-green-color-muted: #122117;
  --data-lemon-color-emphasis: #977b0c;
  --data-lemon-color-muted: #291d00;
  --data-lime-color-emphasis: #5f892f;
  --data-lime-color-muted: #141f0f;
  --data-olive-color-emphasis: #7a8321;
  --data-olive-color-muted: #171e0b;
  --data-orange-color-emphasis: #984b10;
  --data-orange-color-muted: #311708;
  --data-pine-color-emphasis: #18915e;
  --data-pine-color-muted: #082119;
  --data-pink-color-emphasis: #d34591;
  --data-pink-color-muted: #2d1524;
  --data-plum-color-emphasis: #b643ef;
  --data-plum-color-muted: #2a0e3f;
  --data-purple-color-emphasis: #975bf1;
  --data-purple-color-muted: #211047;
  --data-red-color-emphasis: #eb3342;
  --data-red-color-muted: #3c0614;
  --data-teal-color-emphasis: #106c70;
  --data-teal-color-muted: #041f25;
  --data-yellow-color-emphasis: #895906;
  --data-yellow-color-muted: #2e1a00;
  --diffBlob-additionNum-bgColor: #28d7514d;
  --diffBlob-deletionNum-bgColor: #ff80804d;
  --diffBlob-hunkNum-bgColor-rest: #5cacff66;
  --display-auburn-bgColor-emphasis: #6d4340;
  --display-auburn-bgColor-muted: #271817;
  --display-auburn-borderColor-emphasis: #bf9592;
  --display-auburn-borderColor-muted: #3a2422;
  --display-auburn-fgColor: #d4b7b5;
  --display-auburn-scale-0: #271817;
  --display-auburn-scale-1: #3a2422;
  --display-auburn-scale-2: #543331;
  --display-auburn-scale-3: #6d4340;
  --display-auburn-scale-4: #87534f;
  --display-auburn-scale-5: #a86f6b;
  --display-auburn-scale-6: #bf9592;
  --display-auburn-scale-7: #c6a19f;
  --display-auburn-scale-8: #d4b7b5;
  --display-auburn-scale-9: #dfcac8;
  --display-blue-bgColor-emphasis: #0046a8;
  --display-blue-bgColor-muted: #001a47;
  --display-blue-borderColor-emphasis: #4da0ff;
  --display-blue-borderColor-muted: #002766;
  --display-blue-fgColor: #85c2ff;
  --display-blue-scale-0: #001a47;
  --display-blue-scale-1: #002766;
  --display-blue-scale-2: #00378a;
  --display-blue-scale-3: #0046a8;
  --display-blue-scale-4: #005bd1;
  --display-blue-scale-5: #0576ff;
  --display-blue-scale-6: #4da0ff;
  --display-blue-scale-7: #61adff;
  --display-blue-scale-8: #85c2ff;
  --display-blue-scale-9: #a3d3ff;
  --display-brown-bgColor-emphasis: #5d4a32;
  --display-brown-bgColor-muted: #241c14;
  --display-brown-borderColor-emphasis: #b69a6d;
  --display-brown-borderColor-muted: #342a1d;
  --display-brown-fgColor: #cdbb98;
  --display-brown-scale-0: #241c14;
  --display-brown-scale-1: #342a1d;
  --display-brown-scale-2: #483a28;
  --display-brown-scale-3: #5d4a32;
  --display-brown-scale-4: #755e3e;
  --display-brown-scale-5: #94774c;
  --display-brown-scale-6: #b69a6d;
  --display-brown-scale-7: #bfa77d;
  --display-brown-scale-8: #cdbb98;
  --display-brown-scale-9: #dbceb3;
  --display-coral-bgColor-emphasis: #902a0e;
  --display-coral-bgColor-muted: #3c0614;
  --display-coral-borderColor-emphasis: #f7794b;
  --display-coral-borderColor-muted: #58091a;
  --display-coral-fgColor: #fdaa86;
  --display-coral-scale-0: #351008;
  --display-coral-scale-1: #51180b;
  --display-coral-scale-2: #72220d;
  --display-coral-scale-3: #902a0e;
  --display-coral-scale-4: #b3350f;
  --display-coral-scale-5: #e1430e;
  --display-coral-scale-6: #f7794b;
  --display-coral-scale-7: #fa8c61;
  --display-coral-scale-8: #fdaa86;
  --display-coral-scale-9: #ffc0a3;
  --display-cyan-bgColor-emphasis: #02536f;
  --display-cyan-bgColor-muted: #001f29;
  --display-cyan-borderColor-emphasis: #07ace4;
  --display-cyan-borderColor-muted: #002e3d;
  --display-cyan-fgColor: #45cbf7;
  --display-cyan-scale-0: #001f29;
  --display-cyan-scale-1: #002e3d;
  --display-cyan-scale-2: #014156;
  --display-cyan-scale-3: #02536f;
  --display-cyan-scale-4: #036a8c;
  --display-cyan-scale-5: #0587b3;
  --display-cyan-scale-6: #07ace4;
  --display-cyan-scale-7: #09b7f1;
  --display-cyan-scale-8: #45cbf7;
  --display-cyan-scale-9: #80dbf9;
  --display-gray-bgColor-emphasis: #474e57;
  --display-gray-bgColor-muted: #1c1c1c;
  --display-gray-borderColor-emphasis: #92a1b5;
  --display-gray-borderColor-muted: #2a2b2d;
  --display-gray-fgColor: #b3c0d1;
  --display-gray-scale-0: #1c1c1c;
  --display-gray-scale-1: #2a2b2d;
  --display-gray-scale-2: #393d41;
  --display-gray-scale-3: #474e57;
  --display-gray-scale-4: #576270;
  --display-gray-scale-5: #6e7f96;
  --display-gray-scale-6: #92a1b5;
  --display-gray-scale-7: #9babbf;
  --display-gray-scale-8: #b3c0d1;
  --display-gray-scale-9: #c4cfde;
  --display-green-bgColor-emphasis: #285830;
  --display-green-bgColor-muted: #122117;
  --display-green-borderColor-emphasis: #41b445;
  --display-green-borderColor-muted: #182f1f;
  --display-green-fgColor: #75d36f;
  --display-green-scale-0: #122117;
  --display-green-scale-1: #182f1f;
  --display-green-scale-2: #214529;
  --display-green-scale-3: #285830;
  --display-green-scale-4: #2f6f37;
  --display-green-scale-5: #388f3f;
  --display-green-scale-6: #41b445;
  --display-green-scale-7: #46c144;
  --display-green-scale-8: #75d36f;
  --display-green-scale-9: #99e090;
  --display-indigo-bgColor-emphasis: #3935c0;
  --display-indigo-bgColor-muted: #1b183f;
  --display-indigo-borderColor-emphasis: #9899ec;
  --display-indigo-borderColor-muted: #25215f;
  --display-indigo-fgColor: #b7baf6;
  --display-indigo-scale-0: #1b183f;
  --display-indigo-scale-1: #25215f;
  --display-indigo-scale-2: #312c90;
  --display-indigo-scale-3: #3935c0;
  --display-indigo-scale-4: #514ed4;
  --display-indigo-scale-5: #7070e1;
  --display-indigo-scale-6: #9899ec;
  --display-indigo-scale-7: #a2a5f1;
  --display-indigo-scale-8: #b7baf6;
  --display-indigo-scale-9: #c8cbf9;
  --display-lemon-bgColor-emphasis: #614c05;
  --display-lemon-bgColor-muted: #291d00;
  --display-lemon-borderColor-emphasis: #ba9b12;
  --display-lemon-borderColor-muted: #372901;
  --display-lemon-fgColor: #d7bc1d;
  --display-lemon-scale-0: #291d00;
  --display-lemon-scale-1: #372901;
  --display-lemon-scale-2: #4f3c02;
  --display-lemon-scale-3: #614c05;
  --display-lemon-scale-4: #786008;
  --display-lemon-scale-5: #977b0c;
  --display-lemon-scale-6: #ba9b12;
  --display-lemon-scale-7: #c4a717;
  --display-lemon-scale-8: #d7bc1d;
  --display-lemon-scale-9: #e3d04f;
  --display-lime-bgColor-emphasis: #375421;
  --display-lime-bgColor-muted: #141f0f;
  --display-lime-borderColor-emphasis: #7dae37;
  --display-lime-borderColor-muted: #1f3116;
  --display-lime-fgColor: #9fcc3e;
  --display-lime-scale-0: #141f0f;
  --display-lime-scale-1: #1f3116;
  --display-lime-scale-2: #2c441d;
  --display-lime-scale-3: #375421;
  --display-lime-scale-4: #496c28;
  --display-lime-scale-5: #5f892f;
  --display-lime-scale-6: #7dae37;
  --display-lime-scale-7: #89ba36;
  --display-lime-scale-8: #9fcc3e;
  --display-lime-scale-9: #bcda67;
  --display-olive-bgColor-emphasis: #485219;
  --display-olive-bgColor-muted: #171e0b;
  --display-olive-borderColor-emphasis: #a2a626;
  --display-olive-borderColor-muted: #252d10;
  --display-olive-fgColor: #cbc025;
  --display-olive-scale-0: #171e0b;
  --display-olive-scale-1: #252d10;
  --display-olive-scale-2: #374115;
  --display-olive-scale-3: #485219;
  --display-olive-scale-4: #5e681d;
  --display-olive-scale-5: #7a8321;
  --display-olive-scale-6: #a2a626;
  --display-olive-scale-7: #b2af24;
  --display-olive-scale-8: #cbc025;
  --display-olive-scale-9: #e2d04b;
  --display-orange-bgColor-emphasis: #7b3c0e;
  --display-orange-bgColor-muted: #311708;
  --display-orange-borderColor-emphasis: #ed8326;
  --display-orange-borderColor-muted: #43200a;
  --display-orange-fgColor: #f6b06a;
  --display-orange-scale-0: #311708;
  --display-orange-scale-1: #43200a;
  --display-orange-scale-2: #632f0d;
  --display-orange-scale-3: #7b3c0e;
  --display-orange-scale-4: #984b10;
  --display-orange-scale-5: #c46212;
  --display-orange-scale-6: #ed8326;
  --display-orange-scale-7: #f1933b;
  --display-orange-scale-8: #f6b06a;
  --display-orange-scale-9: #fac68f;
  --display-pine-bgColor-emphasis: #115a3e;
  --display-pine-bgColor-muted: #082119;
  --display-pine-borderColor-emphasis: #1bb673;
  --display-pine-borderColor-muted: #0b3224;
  --display-pine-fgColor: #1bda81;
  --display-pine-scale-0: #082119;
  --display-pine-scale-1: #0b3224;
  --display-pine-scale-2: #0e4430;
  --display-pine-scale-3: #115a3e;
  --display-pine-scale-4: #14714c;
  --display-pine-scale-5: #18915e;
  --display-pine-scale-6: #1bb673;
  --display-pine-scale-7: #1ac176;
  --display-pine-scale-8: #1bda81;
  --display-pine-scale-9: #3eea97;
  --display-pink-bgColor-emphasis: #842a5d;
  --display-pink-bgColor-muted: #2d1524;
  --display-pink-borderColor-emphasis: #e57bb2;
  --display-pink-borderColor-muted: #451c35;
  --display-pink-fgColor: #f4a9cd;
  --display-pink-scale-0: #2d1524;
  --display-pink-scale-1: #451c35;
  --display-pink-scale-2: #65244a;
  --display-pink-scale-3: #842a5d;
  --display-pink-scale-4: #ac2f74;
  --display-pink-scale-5: #d34591;
  --display-pink-scale-6: #e57bb2;
  --display-pink-scale-7: #ec8dbd;
  --display-pink-scale-8: #f4a9cd;
  --display-pink-scale-9: #f9bed9;
  --display-plum-bgColor-emphasis: #7517ab;
  --display-plum-bgColor-muted: #2a0e3f;
  --display-plum-borderColor-emphasis: #d07ef7;
  --display-plum-borderColor-muted: #40125e;
  --display-plum-fgColor: #e4a5fd;
  --display-plum-scale-0: #2a0e3f;
  --display-plum-scale-1: #40125e;
  --display-plum-scale-2: #5c1688;
  --display-plum-scale-3: #7517ab;
  --display-plum-scale-4: #9518d8;
  --display-plum-scale-5: #b643ef;
  --display-plum-scale-6: #d07ef7;
  --display-plum-scale-7: #d889fa;
  --display-plum-scale-8: #e4a5fd;
  --display-plum-scale-9: #edbdff;
  --display-purple-bgColor-emphasis: #5b1cca;
  --display-purple-bgColor-muted: #211047;
  --display-purple-borderColor-emphasis: #b687f7;
  --display-purple-borderColor-muted: #31146b;
  --display-purple-fgColor: #d2affd;
  --display-purple-scale-0: #211047;
  --display-purple-scale-1: #31146b;
  --display-purple-scale-2: #481a9e;
  --display-purple-scale-3: #5b1cca;
  --display-purple-scale-4: #7730e8;
  --display-purple-scale-5: #975bf1;
  --display-purple-scale-6: #b687f7;
  --display-purple-scale-7: #c398fb;
  --display-purple-scale-8: #d2affd;
  --display-purple-scale-9: #e1c7ff;
  --display-red-bgColor-emphasis: #990f24;
  --display-red-bgColor-muted: #3c0614;
  --display-red-borderColor-emphasis: #f27d83;
  --display-red-borderColor-muted: #58091a;
  --display-red-fgColor: #f7adab;
  --display-red-scale-0: #3c0614;
  --display-red-scale-1: #58091a;
  --display-red-scale-2: #790c20;
  --display-red-scale-3: #990f24;
  --display-red-scale-4: #c31328;
  --display-red-scale-5: #eb3342;
  --display-red-scale-6: #f27d83;
  --display-red-scale-7: #f48b8d;
  --display-red-scale-8: #f7adab;
  --display-red-scale-9: #f9c1be;
  --display-teal-bgColor-emphasis: #0c555a;
  --display-teal-bgColor-muted: #041f25;
  --display-teal-borderColor-emphasis: #1cb0ab;
  --display-teal-borderColor-muted: #073036;
  --display-teal-fgColor: #24d6c4;
  --display-teal-scale-0: #041f25;
  --display-teal-scale-1: #073036;
  --display-teal-scale-2: #0a464d;
  --display-teal-scale-3: #0c555a;
  --display-teal-scale-4: #106c70;
  --display-teal-scale-5: #158a8a;
  --display-teal-scale-6: #1cb0ab;
  --display-teal-scale-7: #1fbdb2;
  --display-teal-scale-8: #24d6c4;
  --display-teal-scale-9: #5fe3d1;
  --display-yellow-bgColor-emphasis: #6d4403;
  --display-yellow-bgColor-muted: #2e1a00;
  --display-yellow-borderColor-emphasis: #d3910d;
  --display-yellow-borderColor-muted: #3d2401;
  --display-yellow-fgColor: #edb431;
  --display-yellow-scale-0: #2e1a00;
  --display-yellow-scale-1: #3d2401;
  --display-yellow-scale-2: #5a3702;
  --display-yellow-scale-3: #6d4403;
  --display-yellow-scale-4: #895906;
  --display-yellow-scale-5: #aa7109;
  --display-yellow-scale-6: #d3910d;
  --display-yellow-scale-7: #df9e11;
  --display-yellow-scale-8: #edb431;
  --display-yellow-scale-9: #f0ca6a;
  --fgColor-attention: #f0b72f;
  --fgColor-danger: #ff9492;
  --fgColor-disabled: #656c76;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-muted: #b7bdc8;
  --fgColor-neutral: #d1d7e0;
  --fgColor-open: var(--fgColor-success);
  --fgColor-severe: #fe9a2d;
  --fgColor-upsell: var(--fgColor-done);
  --header-bgColor: #151b23f2;
  --header-borderColor-divider: #656c76;
  --header-fgColor-logo: #f0f6fc;
  --headerSearch-bgColor: #0d1117;
  --headerSearch-borderColor: #2a313c;
  --highlight-neutral-bgColor: #f0b72f66;
  --label-auburn-bgColor-active: #543331;
  --label-auburn-bgColor-hover: #3a2422;
  --label-auburn-bgColor-rest: #271817;
  --label-auburn-fgColor-active: #d4b7b5;
  --label-auburn-fgColor-hover: #c6a19f;
  --label-auburn-fgColor-rest: #bf9592;
  --label-blue-bgColor-active: #00378a;
  --label-blue-bgColor-hover: #002766;
  --label-blue-bgColor-rest: #001a47;
  --label-blue-fgColor-active: #85c2ff;
  --label-blue-fgColor-hover: #61adff;
  --label-blue-fgColor-rest: #4da0ff;
  --label-brown-bgColor-active: #483a28;
  --label-brown-bgColor-hover: #342a1d;
  --label-brown-bgColor-rest: #241c14;
  --label-brown-fgColor-active: #cdbb98;
  --label-brown-fgColor-hover: #bfa77d;
  --label-brown-fgColor-rest: #b69a6d;
  --label-coral-bgColor-active: #72220d;
  --label-coral-bgColor-hover: #51180b;
  --label-coral-bgColor-rest: #351008;
  --label-coral-fgColor-active: #fdaa86;
  --label-coral-fgColor-hover: #fa8c61;
  --label-coral-fgColor-rest: #f7794b;
  --label-cyan-bgColor-active: #014156;
  --label-cyan-bgColor-hover: #002e3d;
  --label-cyan-bgColor-rest: #001f29;
  --label-cyan-fgColor-active: #45cbf7;
  --label-cyan-fgColor-hover: #09b7f1;
  --label-cyan-fgColor-rest: #07ace4;
  --label-gray-bgColor-active: #393d41;
  --label-gray-bgColor-hover: #2a2b2d;
  --label-gray-bgColor-rest: #1c1c1c;
  --label-gray-fgColor-active: #b3c0d1;
  --label-gray-fgColor-hover: #9babbf;
  --label-gray-fgColor-rest: #92a1b5;
  --label-green-bgColor-active: #214529;
  --label-green-bgColor-hover: #182f1f;
  --label-green-bgColor-rest: #122117;
  --label-green-fgColor-active: #75d36f;
  --label-green-fgColor-hover: #46c144;
  --label-green-fgColor-rest: #41b445;
  --label-indigo-bgColor-active: #312c90;
  --label-indigo-bgColor-hover: #25215f;
  --label-indigo-bgColor-rest: #1b183f;
  --label-indigo-fgColor-active: #b7baf6;
  --label-indigo-fgColor-hover: #a2a5f1;
  --label-indigo-fgColor-rest: #9899ec;
  --label-lemon-bgColor-active: #4f3c02;
  --label-lemon-bgColor-hover: #372901;
  --label-lemon-bgColor-rest: #291d00;
  --label-lemon-fgColor-active: #d7bc1d;
  --label-lemon-fgColor-hover: #c4a717;
  --label-lemon-fgColor-rest: #ba9b12;
  --label-lime-bgColor-active: #2c441d;
  --label-lime-bgColor-hover: #1f3116;
  --label-lime-bgColor-rest: #141f0f;
  --label-lime-fgColor-active: #9fcc3e;
  --label-lime-fgColor-hover: #89ba36;
  --label-lime-fgColor-rest: #7dae37;
  --label-olive-bgColor-active: #374115;
  --label-olive-bgColor-hover: #252d10;
  --label-olive-bgColor-rest: #171e0b;
  --label-olive-fgColor-active: #cbc025;
  --label-olive-fgColor-hover: #b2af24;
  --label-olive-fgColor-rest: #a2a626;
  --label-orange-bgColor-active: #632f0d;
  --label-orange-bgColor-hover: #43200a;
  --label-orange-bgColor-rest: #311708;
  --label-orange-fgColor-active: #f6b06a;
  --label-orange-fgColor-hover: #f1933b;
  --label-orange-fgColor-rest: #ed8326;
  --label-pine-bgColor-active: #0e4430;
  --label-pine-bgColor-hover: #0b3224;
  --label-pine-bgColor-rest: #082119;
  --label-pine-fgColor-active: #1bda81;
  --label-pine-fgColor-hover: #1ac176;
  --label-pine-fgColor-rest: #1bb673;
  --label-pink-bgColor-active: #65244a;
  --label-pink-bgColor-hover: #451c35;
  --label-pink-bgColor-rest: #2d1524;
  --label-pink-fgColor-active: #f4a9cd;
  --label-pink-fgColor-hover: #ec8dbd;
  --label-pink-fgColor-rest: #e57bb2;
  --label-plum-bgColor-active: #5c1688;
  --label-plum-bgColor-hover: #40125e;
  --label-plum-bgColor-rest: #2a0e3f;
  --label-plum-fgColor-active: #e4a5fd;
  --label-plum-fgColor-hover: #d889fa;
  --label-plum-fgColor-rest: #d07ef7;
  --label-purple-bgColor-active: #481a9e;
  --label-purple-bgColor-hover: #31146b;
  --label-purple-bgColor-rest: #211047;
  --label-purple-fgColor-active: #d2affd;
  --label-purple-fgColor-hover: #c398fb;
  --label-purple-fgColor-rest: #b687f7;
  --label-red-bgColor-active: #790c20;
  --label-red-bgColor-hover: #58091a;
  --label-red-bgColor-rest: #3c0614;
  --label-red-fgColor-active: #f7adab;
  --label-red-fgColor-hover: #f48b8d;
  --label-red-fgColor-rest: #f27d83;
  --label-teal-bgColor-active: #0a464d;
  --label-teal-bgColor-hover: #073036;
  --label-teal-bgColor-rest: #041f25;
  --label-teal-fgColor-active: #24d6c4;
  --label-teal-fgColor-hover: #1fbdb2;
  --label-teal-fgColor-rest: #1cb0ab;
  --label-yellow-bgColor-active: #5a3702;
  --label-yellow-bgColor-hover: #3d2401;
  --label-yellow-bgColor-rest: #2e1a00;
  --label-yellow-fgColor-active: #edb431;
  --label-yellow-fgColor-hover: #df9e11;
  --label-yellow-fgColor-rest: #d3910d;
  --menu-bgColor-active: #151b23;
  --overlay-backdrop-bgColor: #d1d7e066;
  --reactionButton-selected-bgColor-rest: #5cacff33;
  --reactionButton-selected-fgColor-hover: #91cbff;
  --selectMenu-bgColor-active: #1e60d5;
  --sideNav-bgColor-selected: #212830;
  --skeletonLoader-bgColor: #2a313c;
  --timelineBadge-bgColor: #212830;
  --underlineNav-borderColor-active: #ff967d;
  --avatar-bgColor: #ffffff1a;
  --avatar-borderColor: #ffffffe6;
  --bgColor-black: #010409;
  --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
  --bgColor-closed-muted: var(--bgColor-danger-muted);
  --bgColor-default: #010409;
  --bgColor-inset: #010409;
  --bgColor-inverse: #ffffff;
  --bgColor-open-emphasis: var(--bgColor-success-emphasis);
  --bgColor-open-muted: var(--bgColor-success-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #409eff;
  --border-accent-muted: 0.0625rem solid #5cacff;
  --border-attention-emphasis: 0.0625rem solid #e09b13;
  --border-attention-muted: 0.0625rem solid #edaa27;
  --border-danger-emphasis: 0.0625rem solid #ff6a69;
  --border-danger-muted: 0.0625rem solid #ff8080;
  --border-default: 0.0625rem solid #b7bdc8;
  --border-disabled: 0.0625rem solid #656c761a;
  --border-done-emphasis: 0.0625rem solid #b87fff;
  --border-done-muted: 0.0625rem solid #bf8fff;
  --border-severe-emphasis: 0.0625rem solid #e7811d;
  --border-severe-muted: 0.0625rem solid #f48b25;
  --border-sponsors-emphasis: 0.0625rem solid #ef6eb1;
  --border-sponsors-muted: 0.0625rem solid #f87cbd;
  --border-success-emphasis: 0.0625rem solid #09b43a;
  --border-success-muted: 0.0625rem solid #0ac740;
  --border-transparent: 0.0625rem solid #00000000;
  --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
  --borderColor-closed-muted: var(--borderColor-danger-muted);
  --borderColor-emphasis: var(--borderColor-default);
  --borderColor-muted: var(--borderColor-default);
  --borderColor-open-emphasis: var(--borderColor-success-emphasis);
  --borderColor-open-muted: var(--borderColor-success-muted);
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-active: var(--bgColor-danger-emphasis);
  --button-danger-bgColor-hover: var(--bgColor-danger-emphasis);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #ff949280;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-inactive-bgColor: var(--control-bgColor-rest);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-outline-bgColor-hover: var(--control-bgColor-hover);
  --button-outline-fgColor-active: #ffffff;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-fgColor-disabled: #ffffff66;
  --buttonCounter-danger-bgColor-disabled: #ad01160d;
  --buttonCounter-danger-bgColor-hover: #01040926;
  --buttonCounter-danger-bgColor-rest: #01040926;
  --buttonCounter-danger-fgColor-disabled: #ff949280;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #194fb10d;
  --buttonCounter-primary-bgColor-rest: #01040926;
  --card-bgColor: var(--bgColor-muted);
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --color-ansi-white-bright: #ffffff;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-checked-fgColor-disabled: #010409;
  --control-danger-bgColor-hover: var(--bgColor-danger-emphasis);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --control-transparent-borderColor-active: var(--borderColor-default);
  --control-transparent-borderColor-hover: var(--borderColor-default);
  --controlKnob-bgColor-checked: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --counter-borderColor: var(--borderColor-default);
  --diffBlob-additionLine-bgColor: #0ac74033;
  --diffBlob-additionWord-bgColor: var(--bgColor-success-emphasis);
  --diffBlob-deletionLine-bgColor: #ff808033;
  --diffBlob-deletionWord-bgColor: var(--bgColor-danger-emphasis);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-hunkLine-bgColor: #5cacff33;
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
  --fgColor-black: #010409;
  --fgColor-closed: var(--fgColor-danger);
  --fgColor-default: #ffffff;
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #010409;
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --overlay-bgColor: var(--bgColor-muted);
  --overlay-borderColor: var(--borderColor-default);
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --selectMenu-borderColor: var(--borderColor-default);
  --selection-bgColor: #194fb1b3;
  --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-inset: inset 0px 1px 0px 0px #0104093d;
  --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
  --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
  --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
  --topicTag-borderColor: var(--borderColor-accent-emphasis);
  --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-emphasis: 0.0625rem solid #b7bdc8;
  --border-muted: 0.0625rem solid #b7bdc8;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #b87fff;
  --border-upsell-muted: 0.0625rem solid #bf8fff;
  --borderColor-neutral-emphasis: var(--borderColor-emphasis);
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: var(--fgColor-white);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --control-danger-fgColor-hover: var(--fgColor-onEmphasis);
  --control-fgColor-rest: var(--fgColor-default);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-bgColor-rest: var(--bgColor-inset);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --controlTrack-fgColor-rest: var(--fgColor-default);
  --diffBlob-additionLine-fgColor: var(--fgColor-onEmphasis);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-fgColor: var(--fgColor-onEmphasis);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-expander-iconColor: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --focus-outline: 2px solid #409eff;
  --page-header-bgColor: var(--bgColor-default);
  --shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
  --shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
  --shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
  --tooltip-bgColor: var(--bgColor-inverse);
  --tooltip-fgColor: var(--fgColor-onInverse);
  --border-neutral-emphasis: 0.0625rem solid #b7bdc8;
  --border-neutral-muted: 0.0625rem solid #b7bdc8;
  --button-default-borderColor-active: var(--button-default-borderColor-rest);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
  --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@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 {
    --button-danger-iconColor-rest: #ffb1af;
    --button-primary-bgColor-active: #109135;
    --button-primary-bgColor-disabled: #048f2f;
    --button-primary-bgColor-hover: #08792b;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --control-checked-bgColor-active: #3c79d0;
    --control-checked-bgColor-hover: #2b64c1;
    --control-danger-bgColor-active: #c51120;
    --fgColor-accent: #74b9ff;
    --fgColor-done: #d3abff;
    --fgColor-sponsors: #ff90c8;
    --fgColor-success: #2bd853;
    --reactionButton-selected-bgColor-hover: #5dadff5c;
    --avatar-shadow: 0px 0px 0px 2px #0d1117;
    --avatarStack-fade-bgColor-default: #3d444d;
    --avatarStack-fade-bgColor-muted: #2a313c;
    --bgColor-accent-emphasis: #194fb1;
    --bgColor-accent-muted: #5cacff1a;
    --bgColor-attention-emphasis: #7b4900;
    --bgColor-attention-muted: #edaa2726;
    --bgColor-danger-emphasis: #ad0116;
    --bgColor-danger-muted: #ff80801a;
    --bgColor-disabled: #262c36;
    --bgColor-done-emphasis: #6921d7;
    --bgColor-done-muted: #bf8fff26;
    --bgColor-emphasis: #3d444d;
    --bgColor-muted: #151b23;
    --bgColor-neutral-emphasis: #3d444d;
    --bgColor-neutral-muted: #212830;
    --bgColor-severe-emphasis: #8f3c00;
    --bgColor-severe-muted: #f48b251a;
    --bgColor-sponsors-emphasis: #9c1d6a;
    --bgColor-sponsors-muted: #f87cbd1a;
    --bgColor-success-emphasis: #006222;
    --bgColor-success-muted: #0ac74026;
    --bgColor-transparent: #00000000;
    --borderColor-accent-emphasis: #409eff;
    --borderColor-accent-muted: #5cacff;
    --borderColor-attention-emphasis: #e09b13;
    --borderColor-attention-muted: #edaa27;
    --borderColor-danger-emphasis: #ff6a69;
    --borderColor-danger-muted: #ff8080;
    --borderColor-default: #b7bdc8;
    --borderColor-disabled: #656c761a;
    --borderColor-done-emphasis: #b87fff;
    --borderColor-done-muted: #bf8fff;
    --borderColor-severe-emphasis: #e7811d;
    --borderColor-severe-muted: #f48b25;
    --borderColor-sponsors-emphasis: #ef6eb1;
    --borderColor-sponsors-muted: #f87cbd;
    --borderColor-success-emphasis: #09b43a;
    --borderColor-success-muted: #0ac740;
    --borderColor-translucent: #9198a1;
    --borderColor-transparent: #00000000;
    --button-danger-borderColor-active: #ffb1af;
    --button-danger-borderColor-hover: #ffb1af;
    --button-danger-fgColor-rest: #ffb1af;
    --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
    --button-default-shadow-resting: 0px 0px 0px 0px #000000;
    --button-inactive-fgColor: #b7bdc8;
    --button-invisible-bgColor-active: #212830;
    --button-invisible-bgColor-disabled: #00000000;
    --button-invisible-bgColor-hover: #151b23;
    --button-invisible-borderColor-disabled: #00000000;
    --button-invisible-iconColor-hover: #d1d7e0;
    --button-invisible-iconColor-rest: #d1d7e0;
    --button-outline-bgColor-active: #2672f3;
    --button-outline-bgColor-rest: #f0f6fc;
    --button-outline-fgColor-disabled: #74b9ff80;
    --button-outline-fgColor-hover: #71b7ff;
    --button-outline-fgColor-rest: #5cacff;
    --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
    --button-primary-borderColor-active: #4ae168;
    --button-primary-borderColor-disabled: #4ae16866;
    --button-primary-borderColor-hover: #4ae168;
    --button-primary-borderColor-rest: #4ae168;
    --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
    --button-star-iconColor: #f7c843;
    --buttonCounter-default-bgColor-rest: #2f3742;
    --buttonCounter-outline-bgColor-hover: #194fb133;
    --buttonCounter-outline-bgColor-rest: #194fb133;
    --buttonCounter-outline-fgColor-disabled: #74b9ff80;
    --buttonCounter-outline-fgColor-hover: #71b7ff;
    --buttonCounter-outline-fgColor-rest: #5cacff;
    --codeMirror-selection-bgColor: #5cacff66;
    --codeMirror-syntax-fgColor-comment: #656c76;
    --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;
    --color-ansi-black: #2f3742;
    --color-ansi-black-bright: #656c76;
    --color-ansi-blue: #71b7ff;
    --color-ansi-blue-bright: #91cbff;
    --color-ansi-gray: #656c76;
    --color-ansi-green: #28d751;
    --color-ansi-green-bright: #4ae168;
    --color-ansi-magenta: #cb9eff;
    --color-ansi-magenta-bright: #dbb7ff;
    --color-ansi-red: #ff9492;
    --color-ansi-red-bright: #ffb1af;
    --color-ansi-white: #f0f6fc;
    --color-ansi-yellow: #f0b72f;
    --color-ansi-yellow-bright: #f7c843;
    --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
    --color-prettylights-syntax-brackethighlighter-unmatched: #ff8080;
    --color-prettylights-syntax-carriage-return-bg: #ff4445;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-comment: #9198a1;
    --color-prettylights-syntax-constant: #91cbff;
    --color-prettylights-syntax-constant-other-reference-link: #addcff;
    --color-prettylights-syntax-entity: #dbb7ff;
    --color-prettylights-syntax-entity-tag: #72f088;
    --color-prettylights-syntax-invalid-illegal-bg: #e82a2f;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-keyword: #ff9492;
    --color-prettylights-syntax-markup-bold: #f0f6fc;
    --color-prettylights-syntax-markup-changed-bg: #a74c00;
    --color-prettylights-syntax-markup-changed-text: #ffe1b4;
    --color-prettylights-syntax-markup-deleted-bg: #cc1421;
    --color-prettylights-syntax-markup-deleted-text: #ffdedb;
    --color-prettylights-syntax-markup-heading: #409eff;
    --color-prettylights-syntax-markup-ignored-bg: #318bf8;
    --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
    --color-prettylights-syntax-markup-inserted-bg: #007728;
    --color-prettylights-syntax-markup-inserted-text: #acf7b6;
    --color-prettylights-syntax-markup-italic: #f0f6fc;
    --color-prettylights-syntax-markup-list: #fbd669;
    --color-prettylights-syntax-meta-diff-range: #dbb7ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
    --color-prettylights-syntax-string: #addcff;
    --color-prettylights-syntax-string-regexp: #72f088;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
    --color-prettylights-syntax-variable: #ffb757;
    --contribution-default-bgColor-0: #151b23;
    --contribution-default-bgColor-1: #007728;
    --contribution-default-bgColor-2: #02a232;
    --contribution-default-bgColor-3: #0ac740;
    --contribution-default-bgColor-4: #4ae168;
    --contribution-default-borderColor-0: #ffffff0d;
    --contribution-default-borderColor-1: #ffffff0d;
    --contribution-default-borderColor-2: #ffffff0d;
    --contribution-default-borderColor-3: #ffffff0d;
    --contribution-default-borderColor-4: #ffffff0d;
    --contribution-halloween-bgColor-1: #fac68f;
    --contribution-halloween-bgColor-2: #c46212;
    --contribution-halloween-bgColor-3: #984b10;
    --contribution-halloween-bgColor-4: #e3d04f;
    --contribution-winter-bgColor-1: #1e60d5;
    --contribution-winter-bgColor-2: #318bf8;
    --contribution-winter-bgColor-3: #71b7ff;
    --contribution-winter-bgColor-4: #caeaff;
    --control-bgColor-active: #2f3742;
    --control-bgColor-hover: #2a313c;
    --control-bgColor-rest: #262c36;
    --control-borderColor-selected: #f0f6fc;
    --control-checked-borderColor-active: #91cbff;
    --control-checked-borderColor-hover: #91cbff;
    --control-checked-borderColor-rest: #91cbff;
    --control-fgColor-placeholder: #b7bdc8;
    --control-transparent-bgColor-active: #3d444d;
    --control-transparent-bgColor-hover: #2f3742;
    --control-transparent-bgColor-rest: #00000000;
    --control-transparent-bgColor-selected: #2f3742;
    --control-transparent-borderColor-rest: #00000000;
    --controlTrack-bgColor-active: #3d444d;
    --controlTrack-bgColor-hover: #2f3742;
    --controlTrack-bgColor-rest: #2a313c;
    --data-auburn-color-emphasis: #a86f6b;
    --data-auburn-color-muted: #271817;
    --data-blue-color-emphasis: #0576ff;
    --data-blue-color-muted: #001a47;
    --data-brown-color-emphasis: #94774c;
    --data-brown-color-muted: #241c14;
    --data-coral-color-emphasis: #e1430e;
    --data-coral-color-muted: #351008;
    --data-gray-color-emphasis: #576270;
    --data-gray-color-muted: #1c1c1c;
    --data-green-color-emphasis: #2f6f37;
    --data-green-color-muted: #122117;
    --data-lemon-color-emphasis: #977b0c;
    --data-lemon-color-muted: #291d00;
    --data-lime-color-emphasis: #5f892f;
    --data-lime-color-muted: #141f0f;
    --data-olive-color-emphasis: #7a8321;
    --data-olive-color-muted: #171e0b;
    --data-orange-color-emphasis: #984b10;
    --data-orange-color-muted: #311708;
    --data-pine-color-emphasis: #18915e;
    --data-pine-color-muted: #082119;
    --data-pink-color-emphasis: #d34591;
    --data-pink-color-muted: #2d1524;
    --data-plum-color-emphasis: #b643ef;
    --data-plum-color-muted: #2a0e3f;
    --data-purple-color-emphasis: #975bf1;
    --data-purple-color-muted: #211047;
    --data-red-color-emphasis: #eb3342;
    --data-red-color-muted: #3c0614;
    --data-teal-color-emphasis: #106c70;
    --data-teal-color-muted: #041f25;
    --data-yellow-color-emphasis: #895906;
    --data-yellow-color-muted: #2e1a00;
    --diffBlob-additionNum-bgColor: #28d7514d;
    --diffBlob-deletionNum-bgColor: #ff80804d;
    --diffBlob-hunkNum-bgColor-rest: #5cacff66;
    --display-auburn-bgColor-emphasis: #6d4340;
    --display-auburn-bgColor-muted: #271817;
    --display-auburn-borderColor-emphasis: #bf9592;
    --display-auburn-borderColor-muted: #3a2422;
    --display-auburn-fgColor: #d4b7b5;
    --display-auburn-scale-0: #271817;
    --display-auburn-scale-1: #3a2422;
    --display-auburn-scale-2: #543331;
    --display-auburn-scale-3: #6d4340;
    --display-auburn-scale-4: #87534f;
    --display-auburn-scale-5: #a86f6b;
    --display-auburn-scale-6: #bf9592;
    --display-auburn-scale-7: #c6a19f;
    --display-auburn-scale-8: #d4b7b5;
    --display-auburn-scale-9: #dfcac8;
    --display-blue-bgColor-emphasis: #0046a8;
    --display-blue-bgColor-muted: #001a47;
    --display-blue-borderColor-emphasis: #4da0ff;
    --display-blue-borderColor-muted: #002766;
    --display-blue-fgColor: #85c2ff;
    --display-blue-scale-0: #001a47;
    --display-blue-scale-1: #002766;
    --display-blue-scale-2: #00378a;
    --display-blue-scale-3: #0046a8;
    --display-blue-scale-4: #005bd1;
    --display-blue-scale-5: #0576ff;
    --display-blue-scale-6: #4da0ff;
    --display-blue-scale-7: #61adff;
    --display-blue-scale-8: #85c2ff;
    --display-blue-scale-9: #a3d3ff;
    --display-brown-bgColor-emphasis: #5d4a32;
    --display-brown-bgColor-muted: #241c14;
    --display-brown-borderColor-emphasis: #b69a6d;
    --display-brown-borderColor-muted: #342a1d;
    --display-brown-fgColor: #cdbb98;
    --display-brown-scale-0: #241c14;
    --display-brown-scale-1: #342a1d;
    --display-brown-scale-2: #483a28;
    --display-brown-scale-3: #5d4a32;
    --display-brown-scale-4: #755e3e;
    --display-brown-scale-5: #94774c;
    --display-brown-scale-6: #b69a6d;
    --display-brown-scale-7: #bfa77d;
    --display-brown-scale-8: #cdbb98;
    --display-brown-scale-9: #dbceb3;
    --display-coral-bgColor-emphasis: #902a0e;
    --display-coral-bgColor-muted: #3c0614;
    --display-coral-borderColor-emphasis: #f7794b;
    --display-coral-borderColor-muted: #58091a;
    --display-coral-fgColor: #fdaa86;
    --display-coral-scale-0: #351008;
    --display-coral-scale-1: #51180b;
    --display-coral-scale-2: #72220d;
    --display-coral-scale-3: #902a0e;
    --display-coral-scale-4: #b3350f;
    --display-coral-scale-5: #e1430e;
    --display-coral-scale-6: #f7794b;
    --display-coral-scale-7: #fa8c61;
    --display-coral-scale-8: #fdaa86;
    --display-coral-scale-9: #ffc0a3;
    --display-cyan-bgColor-emphasis: #02536f;
    --display-cyan-bgColor-muted: #001f29;
    --display-cyan-borderColor-emphasis: #07ace4;
    --display-cyan-borderColor-muted: #002e3d;
    --display-cyan-fgColor: #45cbf7;
    --display-cyan-scale-0: #001f29;
    --display-cyan-scale-1: #002e3d;
    --display-cyan-scale-2: #014156;
    --display-cyan-scale-3: #02536f;
    --display-cyan-scale-4: #036a8c;
    --display-cyan-scale-5: #0587b3;
    --display-cyan-scale-6: #07ace4;
    --display-cyan-scale-7: #09b7f1;
    --display-cyan-scale-8: #45cbf7;
    --display-cyan-scale-9: #80dbf9;
    --display-gray-bgColor-emphasis: #474e57;
    --display-gray-bgColor-muted: #1c1c1c;
    --display-gray-borderColor-emphasis: #92a1b5;
    --display-gray-borderColor-muted: #2a2b2d;
    --display-gray-fgColor: #b3c0d1;
    --display-gray-scale-0: #1c1c1c;
    --display-gray-scale-1: #2a2b2d;
    --display-gray-scale-2: #393d41;
    --display-gray-scale-3: #474e57;
    --display-gray-scale-4: #576270;
    --display-gray-scale-5: #6e7f96;
    --display-gray-scale-6: #92a1b5;
    --display-gray-scale-7: #9babbf;
    --display-gray-scale-8: #b3c0d1;
    --display-gray-scale-9: #c4cfde;
    --display-green-bgColor-emphasis: #285830;
    --display-green-bgColor-muted: #122117;
    --display-green-borderColor-emphasis: #41b445;
    --display-green-borderColor-muted: #182f1f;
    --display-green-fgColor: #75d36f;
    --display-green-scale-0: #122117;
    --display-green-scale-1: #182f1f;
    --display-green-scale-2: #214529;
    --display-green-scale-3: #285830;
    --display-green-scale-4: #2f6f37;
    --display-green-scale-5: #388f3f;
    --display-green-scale-6: #41b445;
    --display-green-scale-7: #46c144;
    --display-green-scale-8: #75d36f;
    --display-green-scale-9: #99e090;
    --display-indigo-bgColor-emphasis: #3935c0;
    --display-indigo-bgColor-muted: #1b183f;
    --display-indigo-borderColor-emphasis: #9899ec;
    --display-indigo-borderColor-muted: #25215f;
    --display-indigo-fgColor: #b7baf6;
    --display-indigo-scale-0: #1b183f;
    --display-indigo-scale-1: #25215f;
    --display-indigo-scale-2: #312c90;
    --display-indigo-scale-3: #3935c0;
    --display-indigo-scale-4: #514ed4;
    --display-indigo-scale-5: #7070e1;
    --display-indigo-scale-6: #9899ec;
    --display-indigo-scale-7: #a2a5f1;
    --display-indigo-scale-8: #b7baf6;
    --display-indigo-scale-9: #c8cbf9;
    --display-lemon-bgColor-emphasis: #614c05;
    --display-lemon-bgColor-muted: #291d00;
    --display-lemon-borderColor-emphasis: #ba9b12;
    --display-lemon-borderColor-muted: #372901;
    --display-lemon-fgColor: #d7bc1d;
    --display-lemon-scale-0: #291d00;
    --display-lemon-scale-1: #372901;
    --display-lemon-scale-2: #4f3c02;
    --display-lemon-scale-3: #614c05;
    --display-lemon-scale-4: #786008;
    --display-lemon-scale-5: #977b0c;
    --display-lemon-scale-6: #ba9b12;
    --display-lemon-scale-7: #c4a717;
    --display-lemon-scale-8: #d7bc1d;
    --display-lemon-scale-9: #e3d04f;
    --display-lime-bgColor-emphasis: #375421;
    --display-lime-bgColor-muted: #141f0f;
    --display-lime-borderColor-emphasis: #7dae37;
    --display-lime-borderColor-muted: #1f3116;
    --display-lime-fgColor: #9fcc3e;
    --display-lime-scale-0: #141f0f;
    --display-lime-scale-1: #1f3116;
    --display-lime-scale-2: #2c441d;
    --display-lime-scale-3: #375421;
    --display-lime-scale-4: #496c28;
    --display-lime-scale-5: #5f892f;
    --display-lime-scale-6: #7dae37;
    --display-lime-scale-7: #89ba36;
    --display-lime-scale-8: #9fcc3e;
    --display-lime-scale-9: #bcda67;
    --display-olive-bgColor-emphasis: #485219;
    --display-olive-bgColor-muted: #171e0b;
    --display-olive-borderColor-emphasis: #a2a626;
    --display-olive-borderColor-muted: #252d10;
    --display-olive-fgColor: #cbc025;
    --display-olive-scale-0: #171e0b;
    --display-olive-scale-1: #252d10;
    --display-olive-scale-2: #374115;
    --display-olive-scale-3: #485219;
    --display-olive-scale-4: #5e681d;
    --display-olive-scale-5: #7a8321;
    --display-olive-scale-6: #a2a626;
    --display-olive-scale-7: #b2af24;
    --display-olive-scale-8: #cbc025;
    --display-olive-scale-9: #e2d04b;
    --display-orange-bgColor-emphasis: #7b3c0e;
    --display-orange-bgColor-muted: #311708;
    --display-orange-borderColor-emphasis: #ed8326;
    --display-orange-borderColor-muted: #43200a;
    --display-orange-fgColor: #f6b06a;
    --display-orange-scale-0: #311708;
    --display-orange-scale-1: #43200a;
    --display-orange-scale-2: #632f0d;
    --display-orange-scale-3: #7b3c0e;
    --display-orange-scale-4: #984b10;
    --display-orange-scale-5: #c46212;
    --display-orange-scale-6: #ed8326;
    --display-orange-scale-7: #f1933b;
    --display-orange-scale-8: #f6b06a;
    --display-orange-scale-9: #fac68f;
    --display-pine-bgColor-emphasis: #115a3e;
    --display-pine-bgColor-muted: #082119;
    --display-pine-borderColor-emphasis: #1bb673;
    --display-pine-borderColor-muted: #0b3224;
    --display-pine-fgColor: #1bda81;
    --display-pine-scale-0: #082119;
    --display-pine-scale-1: #0b3224;
    --display-pine-scale-2: #0e4430;
    --display-pine-scale-3: #115a3e;
    --display-pine-scale-4: #14714c;
    --display-pine-scale-5: #18915e;
    --display-pine-scale-6: #1bb673;
    --display-pine-scale-7: #1ac176;
    --display-pine-scale-8: #1bda81;
    --display-pine-scale-9: #3eea97;
    --display-pink-bgColor-emphasis: #842a5d;
    --display-pink-bgColor-muted: #2d1524;
    --display-pink-borderColor-emphasis: #e57bb2;
    --display-pink-borderColor-muted: #451c35;
    --display-pink-fgColor: #f4a9cd;
    --display-pink-scale-0: #2d1524;
    --display-pink-scale-1: #451c35;
    --display-pink-scale-2: #65244a;
    --display-pink-scale-3: #842a5d;
    --display-pink-scale-4: #ac2f74;
    --display-pink-scale-5: #d34591;
    --display-pink-scale-6: #e57bb2;
    --display-pink-scale-7: #ec8dbd;
    --display-pink-scale-8: #f4a9cd;
    --display-pink-scale-9: #f9bed9;
    --display-plum-bgColor-emphasis: #7517ab;
    --display-plum-bgColor-muted: #2a0e3f;
    --display-plum-borderColor-emphasis: #d07ef7;
    --display-plum-borderColor-muted: #40125e;
    --display-plum-fgColor: #e4a5fd;
    --display-plum-scale-0: #2a0e3f;
    --display-plum-scale-1: #40125e;
    --display-plum-scale-2: #5c1688;
    --display-plum-scale-3: #7517ab;
    --display-plum-scale-4: #9518d8;
    --display-plum-scale-5: #b643ef;
    --display-plum-scale-6: #d07ef7;
    --display-plum-scale-7: #d889fa;
    --display-plum-scale-8: #e4a5fd;
    --display-plum-scale-9: #edbdff;
    --display-purple-bgColor-emphasis: #5b1cca;
    --display-purple-bgColor-muted: #211047;
    --display-purple-borderColor-emphasis: #b687f7;
    --display-purple-borderColor-muted: #31146b;
    --display-purple-fgColor: #d2affd;
    --display-purple-scale-0: #211047;
    --display-purple-scale-1: #31146b;
    --display-purple-scale-2: #481a9e;
    --display-purple-scale-3: #5b1cca;
    --display-purple-scale-4: #7730e8;
    --display-purple-scale-5: #975bf1;
    --display-purple-scale-6: #b687f7;
    --display-purple-scale-7: #c398fb;
    --display-purple-scale-8: #d2affd;
    --display-purple-scale-9: #e1c7ff;
    --display-red-bgColor-emphasis: #990f24;
    --display-red-bgColor-muted: #3c0614;
    --display-red-borderColor-emphasis: #f27d83;
    --display-red-borderColor-muted: #58091a;
    --display-red-fgColor: #f7adab;
    --display-red-scale-0: #3c0614;
    --display-red-scale-1: #58091a;
    --display-red-scale-2: #790c20;
    --display-red-scale-3: #990f24;
    --display-red-scale-4: #c31328;
    --display-red-scale-5: #eb3342;
    --display-red-scale-6: #f27d83;
    --display-red-scale-7: #f48b8d;
    --display-red-scale-8: #f7adab;
    --display-red-scale-9: #f9c1be;
    --display-teal-bgColor-emphasis: #0c555a;
    --display-teal-bgColor-muted: #041f25;
    --display-teal-borderColor-emphasis: #1cb0ab;
    --display-teal-borderColor-muted: #073036;
    --display-teal-fgColor: #24d6c4;
    --display-teal-scale-0: #041f25;
    --display-teal-scale-1: #073036;
    --display-teal-scale-2: #0a464d;
    --display-teal-scale-3: #0c555a;
    --display-teal-scale-4: #106c70;
    --display-teal-scale-5: #158a8a;
    --display-teal-scale-6: #1cb0ab;
    --display-teal-scale-7: #1fbdb2;
    --display-teal-scale-8: #24d6c4;
    --display-teal-scale-9: #5fe3d1;
    --display-yellow-bgColor-emphasis: #6d4403;
    --display-yellow-bgColor-muted: #2e1a00;
    --display-yellow-borderColor-emphasis: #d3910d;
    --display-yellow-borderColor-muted: #3d2401;
    --display-yellow-fgColor: #edb431;
    --display-yellow-scale-0: #2e1a00;
    --display-yellow-scale-1: #3d2401;
    --display-yellow-scale-2: #5a3702;
    --display-yellow-scale-3: #6d4403;
    --display-yellow-scale-4: #895906;
    --display-yellow-scale-5: #aa7109;
    --display-yellow-scale-6: #d3910d;
    --display-yellow-scale-7: #df9e11;
    --display-yellow-scale-8: #edb431;
    --display-yellow-scale-9: #f0ca6a;
    --fgColor-attention: #f0b72f;
    --fgColor-danger: #ff9492;
    --fgColor-disabled: #656c76;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-muted: #b7bdc8;
    --fgColor-neutral: #d1d7e0;
    --fgColor-open: var(--fgColor-success);
    --fgColor-severe: #fe9a2d;
    --fgColor-upsell: var(--fgColor-done);
    --header-bgColor: #151b23f2;
    --header-borderColor-divider: #656c76;
    --header-fgColor-logo: #f0f6fc;
    --headerSearch-bgColor: #0d1117;
    --headerSearch-borderColor: #2a313c;
    --highlight-neutral-bgColor: #f0b72f66;
    --label-auburn-bgColor-active: #543331;
    --label-auburn-bgColor-hover: #3a2422;
    --label-auburn-bgColor-rest: #271817;
    --label-auburn-fgColor-active: #d4b7b5;
    --label-auburn-fgColor-hover: #c6a19f;
    --label-auburn-fgColor-rest: #bf9592;
    --label-blue-bgColor-active: #00378a;
    --label-blue-bgColor-hover: #002766;
    --label-blue-bgColor-rest: #001a47;
    --label-blue-fgColor-active: #85c2ff;
    --label-blue-fgColor-hover: #61adff;
    --label-blue-fgColor-rest: #4da0ff;
    --label-brown-bgColor-active: #483a28;
    --label-brown-bgColor-hover: #342a1d;
    --label-brown-bgColor-rest: #241c14;
    --label-brown-fgColor-active: #cdbb98;
    --label-brown-fgColor-hover: #bfa77d;
    --label-brown-fgColor-rest: #b69a6d;
    --label-coral-bgColor-active: #72220d;
    --label-coral-bgColor-hover: #51180b;
    --label-coral-bgColor-rest: #351008;
    --label-coral-fgColor-active: #fdaa86;
    --label-coral-fgColor-hover: #fa8c61;
    --label-coral-fgColor-rest: #f7794b;
    --label-cyan-bgColor-active: #014156;
    --label-cyan-bgColor-hover: #002e3d;
    --label-cyan-bgColor-rest: #001f29;
    --label-cyan-fgColor-active: #45cbf7;
    --label-cyan-fgColor-hover: #09b7f1;
    --label-cyan-fgColor-rest: #07ace4;
    --label-gray-bgColor-active: #393d41;
    --label-gray-bgColor-hover: #2a2b2d;
    --label-gray-bgColor-rest: #1c1c1c;
    --label-gray-fgColor-active: #b3c0d1;
    --label-gray-fgColor-hover: #9babbf;
    --label-gray-fgColor-rest: #92a1b5;
    --label-green-bgColor-active: #214529;
    --label-green-bgColor-hover: #182f1f;
    --label-green-bgColor-rest: #122117;
    --label-green-fgColor-active: #75d36f;
    --label-green-fgColor-hover: #46c144;
    --label-green-fgColor-rest: #41b445;
    --label-indigo-bgColor-active: #312c90;
    --label-indigo-bgColor-hover: #25215f;
    --label-indigo-bgColor-rest: #1b183f;
    --label-indigo-fgColor-active: #b7baf6;
    --label-indigo-fgColor-hover: #a2a5f1;
    --label-indigo-fgColor-rest: #9899ec;
    --label-lemon-bgColor-active: #4f3c02;
    --label-lemon-bgColor-hover: #372901;
    --label-lemon-bgColor-rest: #291d00;
    --label-lemon-fgColor-active: #d7bc1d;
    --label-lemon-fgColor-hover: #c4a717;
    --label-lemon-fgColor-rest: #ba9b12;
    --label-lime-bgColor-active: #2c441d;
    --label-lime-bgColor-hover: #1f3116;
    --label-lime-bgColor-rest: #141f0f;
    --label-lime-fgColor-active: #9fcc3e;
    --label-lime-fgColor-hover: #89ba36;
    --label-lime-fgColor-rest: #7dae37;
    --label-olive-bgColor-active: #374115;
    --label-olive-bgColor-hover: #252d10;
    --label-olive-bgColor-rest: #171e0b;
    --label-olive-fgColor-active: #cbc025;
    --label-olive-fgColor-hover: #b2af24;
    --label-olive-fgColor-rest: #a2a626;
    --label-orange-bgColor-active: #632f0d;
    --label-orange-bgColor-hover: #43200a;
    --label-orange-bgColor-rest: #311708;
    --label-orange-fgColor-active: #f6b06a;
    --label-orange-fgColor-hover: #f1933b;
    --label-orange-fgColor-rest: #ed8326;
    --label-pine-bgColor-active: #0e4430;
    --label-pine-bgColor-hover: #0b3224;
    --label-pine-bgColor-rest: #082119;
    --label-pine-fgColor-active: #1bda81;
    --label-pine-fgColor-hover: #1ac176;
    --label-pine-fgColor-rest: #1bb673;
    --label-pink-bgColor-active: #65244a;
    --label-pink-bgColor-hover: #451c35;
    --label-pink-bgColor-rest: #2d1524;
    --label-pink-fgColor-active: #f4a9cd;
    --label-pink-fgColor-hover: #ec8dbd;
    --label-pink-fgColor-rest: #e57bb2;
    --label-plum-bgColor-active: #5c1688;
    --label-plum-bgColor-hover: #40125e;
    --label-plum-bgColor-rest: #2a0e3f;
    --label-plum-fgColor-active: #e4a5fd;
    --label-plum-fgColor-hover: #d889fa;
    --label-plum-fgColor-rest: #d07ef7;
    --label-purple-bgColor-active: #481a9e;
    --label-purple-bgColor-hover: #31146b;
    --label-purple-bgColor-rest: #211047;
    --label-purple-fgColor-active: #d2affd;
    --label-purple-fgColor-hover: #c398fb;
    --label-purple-fgColor-rest: #b687f7;
    --label-red-bgColor-active: #790c20;
    --label-red-bgColor-hover: #58091a;
    --label-red-bgColor-rest: #3c0614;
    --label-red-fgColor-active: #f7adab;
    --label-red-fgColor-hover: #f48b8d;
    --label-red-fgColor-rest: #f27d83;
    --label-teal-bgColor-active: #0a464d;
    --label-teal-bgColor-hover: #073036;
    --label-teal-bgColor-rest: #041f25;
    --label-teal-fgColor-active: #24d6c4;
    --label-teal-fgColor-hover: #1fbdb2;
    --label-teal-fgColor-rest: #1cb0ab;
    --label-yellow-bgColor-active: #5a3702;
    --label-yellow-bgColor-hover: #3d2401;
    --label-yellow-bgColor-rest: #2e1a00;
    --label-yellow-fgColor-active: #edb431;
    --label-yellow-fgColor-hover: #df9e11;
    --label-yellow-fgColor-rest: #d3910d;
    --menu-bgColor-active: #151b23;
    --overlay-backdrop-bgColor: #d1d7e066;
    --reactionButton-selected-bgColor-rest: #5cacff33;
    --reactionButton-selected-fgColor-hover: #91cbff;
    --selectMenu-bgColor-active: #1e60d5;
    --sideNav-bgColor-selected: #212830;
    --skeletonLoader-bgColor: #2a313c;
    --timelineBadge-bgColor: #212830;
    --underlineNav-borderColor-active: #ff967d;
    --avatar-bgColor: #ffffff1a;
    --avatar-borderColor: #ffffffe6;
    --bgColor-black: #010409;
    --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
    --bgColor-closed-muted: var(--bgColor-danger-muted);
    --bgColor-default: #010409;
    --bgColor-inset: #010409;
    --bgColor-inverse: #ffffff;
    --bgColor-open-emphasis: var(--bgColor-success-emphasis);
    --bgColor-open-muted: var(--bgColor-success-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #409eff;
    --border-accent-muted: 0.0625rem solid #5cacff;
    --border-attention-emphasis: 0.0625rem solid #e09b13;
    --border-attention-muted: 0.0625rem solid #edaa27;
    --border-danger-emphasis: 0.0625rem solid #ff6a69;
    --border-danger-muted: 0.0625rem solid #ff8080;
    --border-default: 0.0625rem solid #b7bdc8;
    --border-disabled: 0.0625rem solid #656c761a;
    --border-done-emphasis: 0.0625rem solid #b87fff;
    --border-done-muted: 0.0625rem solid #bf8fff;
    --border-severe-emphasis: 0.0625rem solid #e7811d;
    --border-severe-muted: 0.0625rem solid #f48b25;
    --border-sponsors-emphasis: 0.0625rem solid #ef6eb1;
    --border-sponsors-muted: 0.0625rem solid #f87cbd;
    --border-success-emphasis: 0.0625rem solid #09b43a;
    --border-success-muted: 0.0625rem solid #0ac740;
    --border-transparent: 0.0625rem solid #00000000;
    --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
    --borderColor-closed-muted: var(--borderColor-danger-muted);
    --borderColor-emphasis: var(--borderColor-default);
    --borderColor-muted: var(--borderColor-default);
    --borderColor-open-emphasis: var(--borderColor-success-emphasis);
    --borderColor-open-muted: var(--borderColor-success-muted);
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-active: var(--bgColor-danger-emphasis);
    --button-danger-bgColor-hover: var(--bgColor-danger-emphasis);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #ff949280;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-inactive-bgColor: var(--control-bgColor-rest);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-outline-bgColor-hover: var(--control-bgColor-hover);
    --button-outline-fgColor-active: #ffffff;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-fgColor-disabled: #ffffff66;
    --buttonCounter-danger-bgColor-disabled: #ad01160d;
    --buttonCounter-danger-bgColor-hover: #01040926;
    --buttonCounter-danger-bgColor-rest: #01040926;
    --buttonCounter-danger-fgColor-disabled: #ff949280;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #194fb10d;
    --buttonCounter-primary-bgColor-rest: #01040926;
    --card-bgColor: var(--bgColor-muted);
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --color-ansi-white-bright: #ffffff;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-checked-fgColor-disabled: #010409;
    --control-danger-bgColor-hover: var(--bgColor-danger-emphasis);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --control-transparent-borderColor-active: var(--borderColor-default);
    --control-transparent-borderColor-hover: var(--borderColor-default);
    --controlKnob-bgColor-checked: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --counter-borderColor: var(--borderColor-default);
    --diffBlob-additionLine-bgColor: #0ac74033;
    --diffBlob-additionWord-bgColor: var(--bgColor-success-emphasis);
    --diffBlob-deletionLine-bgColor: #ff808033;
    --diffBlob-deletionWord-bgColor: var(--bgColor-danger-emphasis);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-hunkLine-bgColor: #5cacff33;
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
    --fgColor-black: #010409;
    --fgColor-closed: var(--fgColor-danger);
    --fgColor-default: #ffffff;
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #010409;
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --overlay-bgColor: var(--bgColor-muted);
    --overlay-borderColor: var(--borderColor-default);
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --selectMenu-borderColor: var(--borderColor-default);
    --selection-bgColor: #194fb1b3;
    --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-inset: inset 0px 1px 0px 0px #0104093d;
    --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
    --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
    --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
    --topicTag-borderColor: var(--borderColor-accent-emphasis);
    --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-emphasis: 0.0625rem solid #b7bdc8;
    --border-muted: 0.0625rem solid #b7bdc8;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #b87fff;
    --border-upsell-muted: 0.0625rem solid #bf8fff;
    --borderColor-neutral-emphasis: var(--borderColor-emphasis);
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: var(--fgColor-white);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --control-danger-fgColor-hover: var(--fgColor-onEmphasis);
    --control-fgColor-rest: var(--fgColor-default);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-bgColor-rest: var(--bgColor-inset);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --controlTrack-fgColor-rest: var(--fgColor-default);
    --diffBlob-additionLine-fgColor: var(--fgColor-onEmphasis);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-fgColor: var(--fgColor-onEmphasis);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-expander-iconColor: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --focus-outline: 2px solid #409eff;
    --page-header-bgColor: var(--bgColor-default);
    --shadow-floating-large: 0px 0px 0px 1px #b7bdc8, 0px 24px 48px 0px #010409;
    --shadow-floating-medium: 0px 0px 0px 1px #b7bdc8, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
    --shadow-floating-small: 0px 0px 0px 1px #b7bdc8, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-floating-xlarge: 0px 0px 0px 1px #b7bdc8, 0px 32px 64px 0px #010409;
    --tooltip-bgColor: var(--bgColor-inverse);
    --tooltip-fgColor: var(--fgColor-onInverse);
    --border-neutral-emphasis: 0.0625rem solid #b7bdc8;
    --border-neutral-muted: 0.0625rem solid #b7bdc8;
    --button-default-borderColor-active: var(--button-default-borderColor-rest);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
    --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --bgColor-sponsors-muted: #db61a21a;
  --button-danger-bgColor-active: #d03533;
  --button-danger-fgColor-rest: #fa5e55;
  --button-danger-iconColor-rest: #fa5e55;
  --button-outline-bgColor-active: #0d419d;
  --button-outline-bgColor-disabled: #212830;
  --button-outline-bgColor-hover: #262c36;
  --button-primary-bgColor-active: #3685f3;
  --button-primary-bgColor-disabled: #5fabfe;
  --button-primary-bgColor-hover: #2a7aef;
  --button-primary-borderColor-disabled: #5fabfe;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --control-checked-bgColor-active: #3685f3;
  --control-checked-bgColor-hover: #2a7aef;
  --fgColor-accent: #4493f8;
  --reactionButton-selected-bgColor-hover: #3a8cfd5c;
  --avatar-shadow: 0px 0px 0px 2px #0d1117;
  --avatarStack-fade-bgColor-default: #3d444d;
  --avatarStack-fade-bgColor-muted: #2a313c;
  --bgColor-accent-emphasis: #1f6feb;
  --bgColor-accent-muted: #388bfd1a;
  --bgColor-attention-emphasis: #9e6a03;
  --bgColor-attention-muted: #bb800926;
  --bgColor-danger-emphasis: #da3633;
  --bgColor-danger-muted: #f851491a;
  --bgColor-default: #0d1117;
  --bgColor-disabled: #212830;
  --bgColor-done-emphasis: #8957e5;
  --bgColor-done-muted: #ab7df826;
  --bgColor-emphasis: #3d444d;
  --bgColor-muted: #151b23;
  --bgColor-neutral-emphasis: #656c76;
  --bgColor-neutral-muted: #656c7633;
  --bgColor-open-emphasis: #da3633;
  --bgColor-open-muted: #f851491a;
  --bgColor-severe-emphasis: #da3633;
  --bgColor-severe-muted: #f851491a;
  --bgColor-sponsors-emphasis: #bf4b8a;
  --bgColor-success-emphasis: #1f6feb;
  --bgColor-success-muted: #388bfd26;
  --bgColor-transparent: #00000000;
  --borderColor-accent-emphasis: #1f6feb;
  --borderColor-accent-muted: #388bfd66;
  --borderColor-attention-emphasis: #9e6a03;
  --borderColor-attention-muted: #bb800966;
  --borderColor-danger-emphasis: #da3633;
  --borderColor-danger-muted: #f8514966;
  --borderColor-default: #3d444d;
  --borderColor-disabled: #656c761a;
  --borderColor-done-emphasis: #8957e5;
  --borderColor-done-muted: #ab7df866;
  --borderColor-emphasis: #656c76;
  --borderColor-open-emphasis: #da3633;
  --borderColor-open-muted: #f8514966;
  --borderColor-severe-emphasis: #da3633;
  --borderColor-severe-muted: #f8514966;
  --borderColor-sponsors-emphasis: #bf4b8a;
  --borderColor-sponsors-muted: #db61a266;
  --borderColor-success-emphasis: #1f6feb;
  --borderColor-success-muted: #388bfd66;
  --borderColor-transparent: #00000000;
  --button-danger-bgColor-hover: #b62324;
  --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
  --button-default-shadow-resting: 0px 0px 0px 0px #000000;
  --button-inactive-bgColor: #262c36;
  --button-inactive-fgColor: #9198a1;
  --button-invisible-bgColor-disabled: #00000000;
  --button-invisible-borderColor-disabled: #00000000;
  --button-outline-bgColor-rest: #f0f6fc;
  --button-outline-fgColor-disabled: #4493f880;
  --button-outline-fgColor-hover: #58a6ff;
  --button-outline-fgColor-rest: #388bfd;
  --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
  --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
  --button-star-iconColor: #e3b341;
  --buttonCounter-danger-bgColor-rest: #49020233;
  --buttonCounter-default-bgColor-rest: #2f3742;
  --buttonCounter-outline-bgColor-hover: #051d4d33;
  --buttonCounter-outline-bgColor-rest: #051d4d33;
  --buttonCounter-outline-fgColor-disabled: #4493f880;
  --buttonCounter-outline-fgColor-hover: #58a6ff;
  --buttonCounter-outline-fgColor-rest: #388bfd;
  --buttonCounter-primary-bgColor-rest: #04260f33;
  --codeMirror-syntax-fgColor-comment: #656c76;
  --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;
  --color-ansi-black: #2f3742;
  --color-ansi-black-bright: #656c76;
  --color-ansi-blue: #58a6ff;
  --color-ansi-blue-bright: #79c0ff;
  --color-ansi-gray: #656c76;
  --color-ansi-green: #58a6ff;
  --color-ansi-green-bright: #79c0ff;
  --color-ansi-magenta: #be8fff;
  --color-ansi-magenta-bright: #d2a8ff;
  --color-ansi-red: #ff7b72;
  --color-ansi-red-bright: #ffa198;
  --color-ansi-white: #f0f6fc;
  --color-ansi-yellow: #d29922;
  --color-ansi-yellow-bright: #e3b341;
  --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
  --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
  --color-prettylights-syntax-carriage-return-bg: #b62324;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-comment: #9198a1;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-entity-tag: #a5d6ff;
  --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-markup-bold: #f0f6fc;
  --color-prettylights-syntax-markup-changed-bg: #67060c;
  --color-prettylights-syntax-markup-changed-text: #ffdcd7;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
  --color-prettylights-syntax-markup-inserted-bg: #0c2d6b;
  --color-prettylights-syntax-markup-inserted-text: #cae8ff;
  --color-prettylights-syntax-markup-italic: #f0f6fc;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-string-regexp: #a5d6ff;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
  --color-prettylights-syntax-variable: #ffa198;
  --contribution-default-bgColor-0: #151b23;
  --contribution-default-bgColor-1: #033a16;
  --contribution-default-bgColor-2: #196c2e;
  --contribution-default-bgColor-3: #2ea043;
  --contribution-default-bgColor-4: #56d364;
  --contribution-default-borderColor-0: #ffffff0d;
  --contribution-default-borderColor-1: #ffffff0d;
  --contribution-default-borderColor-2: #ffffff0d;
  --contribution-default-borderColor-3: #ffffff0d;
  --contribution-default-borderColor-4: #ffffff0d;
  --contribution-halloween-bgColor-1: #fac68f;
  --contribution-halloween-bgColor-2: #c46212;
  --contribution-halloween-bgColor-3: #984b10;
  --contribution-halloween-bgColor-4: #e3d04f;
  --contribution-winter-bgColor-1: #0c2d6b;
  --contribution-winter-bgColor-2: #1158c7;
  --contribution-winter-bgColor-3: #58a6ff;
  --contribution-winter-bgColor-4: #cae8ff;
  --control-bgColor-active: #2a313c;
  --control-bgColor-hover: #262c36;
  --control-bgColor-rest: #212830;
  --control-borderColor-selected: #f0f6fc;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-danger-fgColor-hover: #ff7b72;
  --control-transparent-bgColor-active: #656c7640;
  --control-transparent-bgColor-hover: #656c7633;
  --control-transparent-bgColor-rest: #00000000;
  --control-transparent-bgColor-selected: #656c761a;
  --control-transparent-borderColor-active: #00000000;
  --control-transparent-borderColor-hover: #00000000;
  --control-transparent-borderColor-rest: #00000000;
  --controlTrack-bgColor-active: #2f3742;
  --controlTrack-bgColor-hover: #2a313c;
  --controlTrack-bgColor-rest: #262c36;
  --counter-borderColor: #00000000;
  --data-auburn-color-emphasis: #a86f6b;
  --data-auburn-color-muted: #271817;
  --data-blue-color-emphasis: #0576ff;
  --data-blue-color-muted: #001a47;
  --data-brown-color-emphasis: #94774c;
  --data-brown-color-muted: #241c14;
  --data-coral-color-emphasis: #e1430e;
  --data-coral-color-muted: #351008;
  --data-gray-color-emphasis: #576270;
  --data-gray-color-muted: #1c1c1c;
  --data-green-color-emphasis: #2f6f37;
  --data-green-color-muted: #122117;
  --data-lemon-color-emphasis: #977b0c;
  --data-lemon-color-muted: #291d00;
  --data-lime-color-emphasis: #5f892f;
  --data-lime-color-muted: #141f0f;
  --data-olive-color-emphasis: #7a8321;
  --data-olive-color-muted: #171e0b;
  --data-orange-color-emphasis: #984b10;
  --data-orange-color-muted: #311708;
  --data-pine-color-emphasis: #18915e;
  --data-pine-color-muted: #082119;
  --data-pink-color-emphasis: #d34591;
  --data-pink-color-muted: #2d1524;
  --data-plum-color-emphasis: #b643ef;
  --data-plum-color-muted: #2a0e3f;
  --data-purple-color-emphasis: #975bf1;
  --data-purple-color-muted: #211047;
  --data-red-color-emphasis: #eb3342;
  --data-red-color-muted: #3c0614;
  --data-teal-color-emphasis: #106c70;
  --data-teal-color-muted: #041f25;
  --data-yellow-color-emphasis: #895906;
  --data-yellow-color-muted: #2e1a00;
  --diffBlob-additionNum-bgColor: #58a6ff4d;
  --diffBlob-additionWord-bgColor: #388bfd66;
  --diffBlob-deletionNum-bgColor: #f851494d;
  --diffBlob-deletionWord-bgColor: #f8514966;
  --diffBlob-hunkLine-bgColor: #212830;
  --diffBlob-hunkNum-bgColor-hover: #656c76;
  --diffBlob-hunkNum-bgColor-rest: #2f3742;
  --display-auburn-bgColor-emphasis: #87534f;
  --display-auburn-bgColor-muted: #271817;
  --display-auburn-borderColor-emphasis: #a86f6b;
  --display-auburn-borderColor-muted: #3a2422;
  --display-auburn-fgColor: #bf9592;
  --display-auburn-scale-0: #271817;
  --display-auburn-scale-1: #3a2422;
  --display-auburn-scale-2: #543331;
  --display-auburn-scale-3: #6d4340;
  --display-auburn-scale-4: #87534f;
  --display-auburn-scale-5: #a86f6b;
  --display-auburn-scale-6: #bf9592;
  --display-auburn-scale-7: #c6a19f;
  --display-auburn-scale-8: #d4b7b5;
  --display-auburn-scale-9: #dfcac8;
  --display-blue-bgColor-emphasis: #005bd1;
  --display-blue-bgColor-muted: #001a47;
  --display-blue-borderColor-emphasis: #0576ff;
  --display-blue-borderColor-muted: #002766;
  --display-blue-fgColor: #4da0ff;
  --display-blue-scale-0: #001a47;
  --display-blue-scale-1: #002766;
  --display-blue-scale-2: #00378a;
  --display-blue-scale-3: #0046a8;
  --display-blue-scale-4: #005bd1;
  --display-blue-scale-5: #0576ff;
  --display-blue-scale-6: #4da0ff;
  --display-blue-scale-7: #61adff;
  --display-blue-scale-8: #85c2ff;
  --display-blue-scale-9: #a3d3ff;
  --display-brown-bgColor-emphasis: #755e3e;
  --display-brown-bgColor-muted: #241c14;
  --display-brown-borderColor-emphasis: #94774c;
  --display-brown-borderColor-muted: #342a1d;
  --display-brown-fgColor: #b69a6d;
  --display-brown-scale-0: #241c14;
  --display-brown-scale-1: #342a1d;
  --display-brown-scale-2: #483a28;
  --display-brown-scale-3: #5d4a32;
  --display-brown-scale-4: #755e3e;
  --display-brown-scale-5: #94774c;
  --display-brown-scale-6: #b69a6d;
  --display-brown-scale-7: #bfa77d;
  --display-brown-scale-8: #cdbb98;
  --display-brown-scale-9: #dbceb3;
  --display-coral-bgColor-emphasis: #c31328;
  --display-coral-bgColor-muted: #3c0614;
  --display-coral-borderColor-emphasis: #eb3342;
  --display-coral-borderColor-muted: #58091a;
  --display-coral-fgColor: #f27d83;
  --display-coral-scale-0: #351008;
  --display-coral-scale-1: #51180b;
  --display-coral-scale-2: #72220d;
  --display-coral-scale-3: #902a0e;
  --display-coral-scale-4: #b3350f;
  --display-coral-scale-5: #e1430e;
  --display-coral-scale-6: #f7794b;
  --display-coral-scale-7: #fa8c61;
  --display-coral-scale-8: #fdaa86;
  --display-coral-scale-9: #ffc0a3;
  --display-cyan-bgColor-emphasis: #036a8c;
  --display-cyan-bgColor-muted: #001f29;
  --display-cyan-borderColor-emphasis: #0587b3;
  --display-cyan-borderColor-muted: #002e3d;
  --display-cyan-fgColor: #07ace4;
  --display-cyan-scale-0: #001f29;
  --display-cyan-scale-1: #002e3d;
  --display-cyan-scale-2: #014156;
  --display-cyan-scale-3: #02536f;
  --display-cyan-scale-4: #036a8c;
  --display-cyan-scale-5: #0587b3;
  --display-cyan-scale-6: #07ace4;
  --display-cyan-scale-7: #09b7f1;
  --display-cyan-scale-8: #45cbf7;
  --display-cyan-scale-9: #80dbf9;
  --display-gray-bgColor-emphasis: #576270;
  --display-gray-bgColor-muted: #1c1c1c;
  --display-gray-borderColor-emphasis: #6e7f96;
  --display-gray-borderColor-muted: #2a2b2d;
  --display-gray-fgColor: #92a1b5;
  --display-gray-scale-0: #1c1c1c;
  --display-gray-scale-1: #2a2b2d;
  --display-gray-scale-2: #393d41;
  --display-gray-scale-3: #474e57;
  --display-gray-scale-4: #576270;
  --display-gray-scale-5: #6e7f96;
  --display-gray-scale-6: #92a1b5;
  --display-gray-scale-7: #9babbf;
  --display-gray-scale-8: #b3c0d1;
  --display-gray-scale-9: #c4cfde;
  --display-green-bgColor-emphasis: #2f6f37;
  --display-green-bgColor-muted: #122117;
  --display-green-borderColor-emphasis: #388f3f;
  --display-green-borderColor-muted: #182f1f;
  --display-green-fgColor: #41b445;
  --display-green-scale-0: #122117;
  --display-green-scale-1: #182f1f;
  --display-green-scale-2: #214529;
  --display-green-scale-3: #285830;
  --display-green-scale-4: #2f6f37;
  --display-green-scale-5: #388f3f;
  --display-green-scale-6: #41b445;
  --display-green-scale-7: #46c144;
  --display-green-scale-8: #75d36f;
  --display-green-scale-9: #99e090;
  --display-indigo-bgColor-emphasis: #514ed4;
  --display-indigo-bgColor-muted: #1b183f;
  --display-indigo-borderColor-emphasis: #7070e1;
  --display-indigo-borderColor-muted: #25215f;
  --display-indigo-fgColor: #9899ec;
  --display-indigo-scale-0: #1b183f;
  --display-indigo-scale-1: #25215f;
  --display-indigo-scale-2: #312c90;
  --display-indigo-scale-3: #3935c0;
  --display-indigo-scale-4: #514ed4;
  --display-indigo-scale-5: #7070e1;
  --display-indigo-scale-6: #9899ec;
  --display-indigo-scale-7: #a2a5f1;
  --display-indigo-scale-8: #b7baf6;
  --display-indigo-scale-9: #c8cbf9;
  --display-lemon-bgColor-emphasis: #786008;
  --display-lemon-bgColor-muted: #291d00;
  --display-lemon-borderColor-emphasis: #977b0c;
  --display-lemon-borderColor-muted: #372901;
  --display-lemon-fgColor: #ba9b12;
  --display-lemon-scale-0: #291d00;
  --display-lemon-scale-1: #372901;
  --display-lemon-scale-2: #4f3c02;
  --display-lemon-scale-3: #614c05;
  --display-lemon-scale-4: #786008;
  --display-lemon-scale-5: #977b0c;
  --display-lemon-scale-6: #ba9b12;
  --display-lemon-scale-7: #c4a717;
  --display-lemon-scale-8: #d7bc1d;
  --display-lemon-scale-9: #e3d04f;
  --display-lime-bgColor-emphasis: #496c28;
  --display-lime-bgColor-muted: #141f0f;
  --display-lime-borderColor-emphasis: #5f892f;
  --display-lime-borderColor-muted: #1f3116;
  --display-lime-fgColor: #7dae37;
  --display-lime-scale-0: #141f0f;
  --display-lime-scale-1: #1f3116;
  --display-lime-scale-2: #2c441d;
  --display-lime-scale-3: #375421;
  --display-lime-scale-4: #496c28;
  --display-lime-scale-5: #5f892f;
  --display-lime-scale-6: #7dae37;
  --display-lime-scale-7: #89ba36;
  --display-lime-scale-8: #9fcc3e;
  --display-lime-scale-9: #bcda67;
  --display-olive-bgColor-emphasis: #5e681d;
  --display-olive-bgColor-muted: #171e0b;
  --display-olive-borderColor-emphasis: #7a8321;
  --display-olive-borderColor-muted: #252d10;
  --display-olive-fgColor: #a2a626;
  --display-olive-scale-0: #171e0b;
  --display-olive-scale-1: #252d10;
  --display-olive-scale-2: #374115;
  --display-olive-scale-3: #485219;
  --display-olive-scale-4: #5e681d;
  --display-olive-scale-5: #7a8321;
  --display-olive-scale-6: #a2a626;
  --display-olive-scale-7: #b2af24;
  --display-olive-scale-8: #cbc025;
  --display-olive-scale-9: #e2d04b;
  --display-orange-bgColor-emphasis: #984b10;
  --display-orange-bgColor-muted: #311708;
  --display-orange-borderColor-emphasis: #c46212;
  --display-orange-borderColor-muted: #43200a;
  --display-orange-fgColor: #ed8326;
  --display-orange-scale-0: #311708;
  --display-orange-scale-1: #43200a;
  --display-orange-scale-2: #632f0d;
  --display-orange-scale-3: #7b3c0e;
  --display-orange-scale-4: #984b10;
  --display-orange-scale-5: #c46212;
  --display-orange-scale-6: #ed8326;
  --display-orange-scale-7: #f1933b;
  --display-orange-scale-8: #f6b06a;
  --display-orange-scale-9: #fac68f;
  --display-pine-bgColor-emphasis: #14714c;
  --display-pine-bgColor-muted: #082119;
  --display-pine-borderColor-emphasis: #18915e;
  --display-pine-borderColor-muted: #0b3224;
  --display-pine-fgColor: #1bb673;
  --display-pine-scale-0: #082119;
  --display-pine-scale-1: #0b3224;
  --display-pine-scale-2: #0e4430;
  --display-pine-scale-3: #115a3e;
  --display-pine-scale-4: #14714c;
  --display-pine-scale-5: #18915e;
  --display-pine-scale-6: #1bb673;
  --display-pine-scale-7: #1ac176;
  --display-pine-scale-8: #1bda81;
  --display-pine-scale-9: #3eea97;
  --display-pink-bgColor-emphasis: #ac2f74;
  --display-pink-bgColor-muted: #2d1524;
  --display-pink-borderColor-emphasis: #d34591;
  --display-pink-borderColor-muted: #451c35;
  --display-pink-fgColor: #e57bb2;
  --display-pink-scale-0: #2d1524;
  --display-pink-scale-1: #451c35;
  --display-pink-scale-2: #65244a;
  --display-pink-scale-3: #842a5d;
  --display-pink-scale-4: #ac2f74;
  --display-pink-scale-5: #d34591;
  --display-pink-scale-6: #e57bb2;
  --display-pink-scale-7: #ec8dbd;
  --display-pink-scale-8: #f4a9cd;
  --display-pink-scale-9: #f9bed9;
  --display-plum-bgColor-emphasis: #9518d8;
  --display-plum-bgColor-muted: #2a0e3f;
  --display-plum-borderColor-emphasis: #b643ef;
  --display-plum-borderColor-muted: #40125e;
  --display-plum-fgColor: #d07ef7;
  --display-plum-scale-0: #2a0e3f;
  --display-plum-scale-1: #40125e;
  --display-plum-scale-2: #5c1688;
  --display-plum-scale-3: #7517ab;
  --display-plum-scale-4: #9518d8;
  --display-plum-scale-5: #b643ef;
  --display-plum-scale-6: #d07ef7;
  --display-plum-scale-7: #d889fa;
  --display-plum-scale-8: #e4a5fd;
  --display-plum-scale-9: #edbdff;
  --display-purple-bgColor-emphasis: #7730e8;
  --display-purple-bgColor-muted: #211047;
  --display-purple-borderColor-emphasis: #975bf1;
  --display-purple-borderColor-muted: #31146b;
  --display-purple-fgColor: #b687f7;
  --display-purple-scale-0: #211047;
  --display-purple-scale-1: #31146b;
  --display-purple-scale-2: #481a9e;
  --display-purple-scale-3: #5b1cca;
  --display-purple-scale-4: #7730e8;
  --display-purple-scale-5: #975bf1;
  --display-purple-scale-6: #b687f7;
  --display-purple-scale-7: #c398fb;
  --display-purple-scale-8: #d2affd;
  --display-purple-scale-9: #e1c7ff;
  --display-red-bgColor-emphasis: #c31328;
  --display-red-bgColor-muted: #3c0614;
  --display-red-borderColor-emphasis: #eb3342;
  --display-red-borderColor-muted: #58091a;
  --display-red-fgColor: #f27d83;
  --display-red-scale-0: #3c0614;
  --display-red-scale-1: #58091a;
  --display-red-scale-2: #790c20;
  --display-red-scale-3: #990f24;
  --display-red-scale-4: #c31328;
  --display-red-scale-5: #eb3342;
  --display-red-scale-6: #f27d83;
  --display-red-scale-7: #f48b8d;
  --display-red-scale-8: #f7adab;
  --display-red-scale-9: #f9c1be;
  --display-teal-bgColor-emphasis: #106c70;
  --display-teal-bgColor-muted: #041f25;
  --display-teal-borderColor-emphasis: #158a8a;
  --display-teal-borderColor-muted: #073036;
  --display-teal-fgColor: #1cb0ab;
  --display-teal-scale-0: #041f25;
  --display-teal-scale-1: #073036;
  --display-teal-scale-2: #0a464d;
  --display-teal-scale-3: #0c555a;
  --display-teal-scale-4: #106c70;
  --display-teal-scale-5: #158a8a;
  --display-teal-scale-6: #1cb0ab;
  --display-teal-scale-7: #1fbdb2;
  --display-teal-scale-8: #24d6c4;
  --display-teal-scale-9: #5fe3d1;
  --display-yellow-bgColor-emphasis: #895906;
  --display-yellow-bgColor-muted: #2e1a00;
  --display-yellow-borderColor-emphasis: #aa7109;
  --display-yellow-borderColor-muted: #3d2401;
  --display-yellow-fgColor: #d3910d;
  --display-yellow-scale-0: #2e1a00;
  --display-yellow-scale-1: #3d2401;
  --display-yellow-scale-2: #5a3702;
  --display-yellow-scale-3: #6d4403;
  --display-yellow-scale-4: #895906;
  --display-yellow-scale-5: #aa7109;
  --display-yellow-scale-6: #d3910d;
  --display-yellow-scale-7: #df9e11;
  --display-yellow-scale-8: #edb431;
  --display-yellow-scale-9: #f0ca6a;
  --fgColor-attention: #d29922;
  --fgColor-danger: #f85149;
  --fgColor-default: #f0f6fc;
  --fgColor-disabled: #656c7699;
  --fgColor-done: #ab7df8;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-muted: #9198a1;
  --fgColor-neutral: #9198a1;
  --fgColor-open: #f85149;
  --fgColor-severe: #f85149;
  --fgColor-sponsors: #db61a2;
  --fgColor-success: #58a6ff;
  --header-bgColor: #151b23f2;
  --header-borderColor-divider: #656c76;
  --header-fgColor-logo: #f0f6fc;
  --headerSearch-bgColor: #0d1117;
  --headerSearch-borderColor: #2a313c;
  --highlight-neutral-bgColor: #d2992266;
  --label-auburn-bgColor-active: #543331;
  --label-auburn-bgColor-hover: #3a2422;
  --label-auburn-bgColor-rest: #271817;
  --label-auburn-fgColor-active: #d4b7b5;
  --label-auburn-fgColor-hover: #c6a19f;
  --label-auburn-fgColor-rest: #bf9592;
  --label-blue-bgColor-active: #00378a;
  --label-blue-bgColor-hover: #002766;
  --label-blue-bgColor-rest: #001a47;
  --label-blue-fgColor-active: #85c2ff;
  --label-blue-fgColor-hover: #61adff;
  --label-blue-fgColor-rest: #4da0ff;
  --label-brown-bgColor-active: #483a28;
  --label-brown-bgColor-hover: #342a1d;
  --label-brown-bgColor-rest: #241c14;
  --label-brown-fgColor-active: #cdbb98;
  --label-brown-fgColor-hover: #bfa77d;
  --label-brown-fgColor-rest: #b69a6d;
  --label-coral-bgColor-active: #72220d;
  --label-coral-bgColor-hover: #51180b;
  --label-coral-bgColor-rest: #351008;
  --label-coral-fgColor-active: #fdaa86;
  --label-coral-fgColor-hover: #fa8c61;
  --label-coral-fgColor-rest: #f7794b;
  --label-cyan-bgColor-active: #014156;
  --label-cyan-bgColor-hover: #002e3d;
  --label-cyan-bgColor-rest: #001f29;
  --label-cyan-fgColor-active: #45cbf7;
  --label-cyan-fgColor-hover: #09b7f1;
  --label-cyan-fgColor-rest: #07ace4;
  --label-gray-bgColor-active: #393d41;
  --label-gray-bgColor-hover: #2a2b2d;
  --label-gray-bgColor-rest: #1c1c1c;
  --label-gray-fgColor-active: #b3c0d1;
  --label-gray-fgColor-hover: #9babbf;
  --label-gray-fgColor-rest: #92a1b5;
  --label-green-bgColor-active: #214529;
  --label-green-bgColor-hover: #182f1f;
  --label-green-bgColor-rest: #122117;
  --label-green-fgColor-active: #75d36f;
  --label-green-fgColor-hover: #46c144;
  --label-green-fgColor-rest: #41b445;
  --label-indigo-bgColor-active: #312c90;
  --label-indigo-bgColor-hover: #25215f;
  --label-indigo-bgColor-rest: #1b183f;
  --label-indigo-fgColor-active: #b7baf6;
  --label-indigo-fgColor-hover: #a2a5f1;
  --label-indigo-fgColor-rest: #9899ec;
  --label-lemon-bgColor-active: #4f3c02;
  --label-lemon-bgColor-hover: #372901;
  --label-lemon-bgColor-rest: #291d00;
  --label-lemon-fgColor-active: #d7bc1d;
  --label-lemon-fgColor-hover: #c4a717;
  --label-lemon-fgColor-rest: #ba9b12;
  --label-lime-bgColor-active: #2c441d;
  --label-lime-bgColor-hover: #1f3116;
  --label-lime-bgColor-rest: #141f0f;
  --label-lime-fgColor-active: #9fcc3e;
  --label-lime-fgColor-hover: #89ba36;
  --label-lime-fgColor-rest: #7dae37;
  --label-olive-bgColor-active: #374115;
  --label-olive-bgColor-hover: #252d10;
  --label-olive-bgColor-rest: #171e0b;
  --label-olive-fgColor-active: #cbc025;
  --label-olive-fgColor-hover: #b2af24;
  --label-olive-fgColor-rest: #a2a626;
  --label-orange-bgColor-active: #632f0d;
  --label-orange-bgColor-hover: #43200a;
  --label-orange-bgColor-rest: #311708;
  --label-orange-fgColor-active: #f6b06a;
  --label-orange-fgColor-hover: #f1933b;
  --label-orange-fgColor-rest: #ed8326;
  --label-pine-bgColor-active: #0e4430;
  --label-pine-bgColor-hover: #0b3224;
  --label-pine-bgColor-rest: #082119;
  --label-pine-fgColor-active: #1bda81;
  --label-pine-fgColor-hover: #1ac176;
  --label-pine-fgColor-rest: #1bb673;
  --label-pink-bgColor-active: #65244a;
  --label-pink-bgColor-hover: #451c35;
  --label-pink-bgColor-rest: #2d1524;
  --label-pink-fgColor-active: #f4a9cd;
  --label-pink-fgColor-hover: #ec8dbd;
  --label-pink-fgColor-rest: #e57bb2;
  --label-plum-bgColor-active: #5c1688;
  --label-plum-bgColor-hover: #40125e;
  --label-plum-bgColor-rest: #2a0e3f;
  --label-plum-fgColor-active: #e4a5fd;
  --label-plum-fgColor-hover: #d889fa;
  --label-plum-fgColor-rest: #d07ef7;
  --label-purple-bgColor-active: #481a9e;
  --label-purple-bgColor-hover: #31146b;
  --label-purple-bgColor-rest: #211047;
  --label-purple-fgColor-active: #d2affd;
  --label-purple-fgColor-hover: #c398fb;
  --label-purple-fgColor-rest: #b687f7;
  --label-red-bgColor-active: #790c20;
  --label-red-bgColor-hover: #58091a;
  --label-red-bgColor-rest: #3c0614;
  --label-red-fgColor-active: #f7adab;
  --label-red-fgColor-hover: #f48b8d;
  --label-red-fgColor-rest: #f27d83;
  --label-teal-bgColor-active: #0a464d;
  --label-teal-bgColor-hover: #073036;
  --label-teal-bgColor-rest: #041f25;
  --label-teal-fgColor-active: #24d6c4;
  --label-teal-fgColor-hover: #1fbdb2;
  --label-teal-fgColor-rest: #1cb0ab;
  --label-yellow-bgColor-active: #5a3702;
  --label-yellow-bgColor-hover: #3d2401;
  --label-yellow-bgColor-rest: #2e1a00;
  --label-yellow-fgColor-active: #edb431;
  --label-yellow-fgColor-hover: #df9e11;
  --label-yellow-fgColor-rest: #d3910d;
  --menu-bgColor-active: #151b23;
  --overlay-backdrop-bgColor: #21283066;
  --reactionButton-selected-bgColor-rest: #388bfd33;
  --reactionButton-selected-fgColor-hover: #79c0ff;
  --selectMenu-bgColor-active: #0c2d6b;
  --sideNav-bgColor-selected: #212830;
  --skeletonLoader-bgColor: #656c7633;
  --timelineBadge-bgColor: #212830;
  --topicTag-borderColor: #00000000;
  --underlineNav-borderColor-active: #f78166;
  --avatar-bgColor: #ffffff1a;
  --bgColor-black: #010409;
  --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
  --bgColor-closed-muted: #656c761a;
  --bgColor-inset: #010409;
  --bgColor-inverse: #ffffff;
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #1f6feb;
  --border-accent-muted: 0.0625rem solid #388bfd66;
  --border-attention-emphasis: 0.0625rem solid #9e6a03;
  --border-attention-muted: 0.0625rem solid #bb800966;
  --border-danger-emphasis: 0.0625rem solid #da3633;
  --border-danger-muted: 0.0625rem solid #f8514966;
  --border-default: 0.0625rem solid #3d444d;
  --border-disabled: 0.0625rem solid #656c761a;
  --border-done-emphasis: 0.0625rem solid #8957e5;
  --border-done-muted: 0.0625rem solid #ab7df866;
  --border-emphasis: 0.0625rem solid #656c76;
  --border-severe-emphasis: 0.0625rem solid #da3633;
  --border-severe-muted: 0.0625rem solid #f8514966;
  --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
  --border-sponsors-muted: 0.0625rem solid #db61a266;
  --border-success-emphasis: 0.0625rem solid #1f6feb;
  --border-success-muted: 0.0625rem solid #388bfd66;
  --border-transparent: 0.0625rem solid #00000000;
  --borderColor-closed-emphasis: var(--borderColor-emphasis);
  --borderColor-closed-muted: #3d444d66;
  --borderColor-muted: #3d444db3;
  --borderColor-neutral-emphasis: var(--borderColor-emphasis);
  --borderColor-translucent: #ffffff26;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #f8514980;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-fgColor-active: #ffffff;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #ffffff1a;
  --button-primary-fgColor-disabled: #ffffff66;
  --buttonCounter-danger-bgColor-disabled: #da36330d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-fgColor-disabled: #f8514980;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
  --card-bgColor: var(--bgColor-muted);
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --color-ansi-white-bright: #ffffff;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-checked-fgColor-disabled: #010409;
  --control-danger-bgColor-active: #f8514966;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-fgColor-rest: var(--fgColor-default);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --controlTrack-fgColor-rest: var(--fgColor-muted);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --fgColor-black: #010409;
  --fgColor-closed: var(--fgColor-muted);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #010409;
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --overlay-bgColor: var(--bgColor-muted);
  --page-header-bgColor: var(--bgColor-default);
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --selectMenu-borderColor: var(--borderColor-default);
  --selection-bgColor: #1f6febb3;
  --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-inset: inset 0px 1px 0px 0px #0104093d;
  --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
  --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
  --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
  --tooltip-bgColor: var(--bgColor-emphasis);
  --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #3d444db3;
  --border-neutral-emphasis: 0.0625rem solid #656c76;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8957e5;
  --border-upsell-muted: 0.0625rem solid #ab7df866;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: var(--fgColor-white);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-bgColor-rest: var(--bgColor-inset);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --focus-outline: 2px solid #1f6feb;
  --overlay-borderColor: var(--borderColor-muted);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --border-neutral-muted: 0.0625rem solid #3d444db3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-active: var(--button-default-borderColor-rest);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
  --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
  --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
  --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
  --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="dark_tritanopia"],
  [data-color-mode="auto"][data-dark-theme="dark_tritanopia"] ::backdrop {
    --bgColor-sponsors-muted: #db61a21a;
    --button-danger-bgColor-active: #d03533;
    --button-danger-fgColor-rest: #fa5e55;
    --button-danger-iconColor-rest: #fa5e55;
    --button-outline-bgColor-active: #0d419d;
    --button-outline-bgColor-disabled: #212830;
    --button-outline-bgColor-hover: #262c36;
    --button-primary-bgColor-active: #3685f3;
    --button-primary-bgColor-disabled: #5fabfe;
    --button-primary-bgColor-hover: #2a7aef;
    --button-primary-borderColor-disabled: #5fabfe;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --control-checked-bgColor-active: #3685f3;
    --control-checked-bgColor-hover: #2a7aef;
    --fgColor-accent: #4493f8;
    --reactionButton-selected-bgColor-hover: #3a8cfd5c;
    --avatar-shadow: 0px 0px 0px 2px #0d1117;
    --avatarStack-fade-bgColor-default: #3d444d;
    --avatarStack-fade-bgColor-muted: #2a313c;
    --bgColor-accent-emphasis: #1f6feb;
    --bgColor-accent-muted: #388bfd1a;
    --bgColor-attention-emphasis: #9e6a03;
    --bgColor-attention-muted: #bb800926;
    --bgColor-danger-emphasis: #da3633;
    --bgColor-danger-muted: #f851491a;
    --bgColor-default: #0d1117;
    --bgColor-disabled: #212830;
    --bgColor-done-emphasis: #8957e5;
    --bgColor-done-muted: #ab7df826;
    --bgColor-emphasis: #3d444d;
    --bgColor-muted: #151b23;
    --bgColor-neutral-emphasis: #656c76;
    --bgColor-neutral-muted: #656c7633;
    --bgColor-open-emphasis: #da3633;
    --bgColor-open-muted: #f851491a;
    --bgColor-severe-emphasis: #da3633;
    --bgColor-severe-muted: #f851491a;
    --bgColor-sponsors-emphasis: #bf4b8a;
    --bgColor-success-emphasis: #1f6feb;
    --bgColor-success-muted: #388bfd26;
    --bgColor-transparent: #00000000;
    --borderColor-accent-emphasis: #1f6feb;
    --borderColor-accent-muted: #388bfd66;
    --borderColor-attention-emphasis: #9e6a03;
    --borderColor-attention-muted: #bb800966;
    --borderColor-danger-emphasis: #da3633;
    --borderColor-danger-muted: #f8514966;
    --borderColor-default: #3d444d;
    --borderColor-disabled: #656c761a;
    --borderColor-done-emphasis: #8957e5;
    --borderColor-done-muted: #ab7df866;
    --borderColor-emphasis: #656c76;
    --borderColor-open-emphasis: #da3633;
    --borderColor-open-muted: #f8514966;
    --borderColor-severe-emphasis: #da3633;
    --borderColor-severe-muted: #f8514966;
    --borderColor-sponsors-emphasis: #bf4b8a;
    --borderColor-sponsors-muted: #db61a266;
    --borderColor-success-emphasis: #1f6feb;
    --borderColor-success-muted: #388bfd66;
    --borderColor-transparent: #00000000;
    --button-danger-bgColor-hover: #b62324;
    --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
    --button-default-shadow-resting: 0px 0px 0px 0px #000000;
    --button-inactive-bgColor: #262c36;
    --button-inactive-fgColor: #9198a1;
    --button-invisible-bgColor-disabled: #00000000;
    --button-invisible-borderColor-disabled: #00000000;
    --button-outline-bgColor-rest: #f0f6fc;
    --button-outline-fgColor-disabled: #4493f880;
    --button-outline-fgColor-hover: #58a6ff;
    --button-outline-fgColor-rest: #388bfd;
    --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
    --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
    --button-star-iconColor: #e3b341;
    --buttonCounter-danger-bgColor-rest: #49020233;
    --buttonCounter-default-bgColor-rest: #2f3742;
    --buttonCounter-outline-bgColor-hover: #051d4d33;
    --buttonCounter-outline-bgColor-rest: #051d4d33;
    --buttonCounter-outline-fgColor-disabled: #4493f880;
    --buttonCounter-outline-fgColor-hover: #58a6ff;
    --buttonCounter-outline-fgColor-rest: #388bfd;
    --buttonCounter-primary-bgColor-rest: #04260f33;
    --codeMirror-syntax-fgColor-comment: #656c76;
    --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;
    --color-ansi-black: #2f3742;
    --color-ansi-black-bright: #656c76;
    --color-ansi-blue: #58a6ff;
    --color-ansi-blue-bright: #79c0ff;
    --color-ansi-gray: #656c76;
    --color-ansi-green: #58a6ff;
    --color-ansi-green-bright: #79c0ff;
    --color-ansi-magenta: #be8fff;
    --color-ansi-magenta-bright: #d2a8ff;
    --color-ansi-red: #ff7b72;
    --color-ansi-red-bright: #ffa198;
    --color-ansi-white: #f0f6fc;
    --color-ansi-yellow: #d29922;
    --color-ansi-yellow-bright: #e3b341;
    --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-comment: #9198a1;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-entity-tag: #a5d6ff;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-markup-bold: #f0f6fc;
    --color-prettylights-syntax-markup-changed-bg: #67060c;
    --color-prettylights-syntax-markup-changed-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
    --color-prettylights-syntax-markup-inserted-bg: #0c2d6b;
    --color-prettylights-syntax-markup-inserted-text: #cae8ff;
    --color-prettylights-syntax-markup-italic: #f0f6fc;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-string-regexp: #a5d6ff;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
    --color-prettylights-syntax-variable: #ffa198;
    --contribution-default-bgColor-0: #151b23;
    --contribution-default-bgColor-1: #033a16;
    --contribution-default-bgColor-2: #196c2e;
    --contribution-default-bgColor-3: #2ea043;
    --contribution-default-bgColor-4: #56d364;
    --contribution-default-borderColor-0: #ffffff0d;
    --contribution-default-borderColor-1: #ffffff0d;
    --contribution-default-borderColor-2: #ffffff0d;
    --contribution-default-borderColor-3: #ffffff0d;
    --contribution-default-borderColor-4: #ffffff0d;
    --contribution-halloween-bgColor-1: #fac68f;
    --contribution-halloween-bgColor-2: #c46212;
    --contribution-halloween-bgColor-3: #984b10;
    --contribution-halloween-bgColor-4: #e3d04f;
    --contribution-winter-bgColor-1: #0c2d6b;
    --contribution-winter-bgColor-2: #1158c7;
    --contribution-winter-bgColor-3: #58a6ff;
    --contribution-winter-bgColor-4: #cae8ff;
    --control-bgColor-active: #2a313c;
    --control-bgColor-hover: #262c36;
    --control-bgColor-rest: #212830;
    --control-borderColor-selected: #f0f6fc;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-danger-fgColor-hover: #ff7b72;
    --control-transparent-bgColor-active: #656c7640;
    --control-transparent-bgColor-hover: #656c7633;
    --control-transparent-bgColor-rest: #00000000;
    --control-transparent-bgColor-selected: #656c761a;
    --control-transparent-borderColor-active: #00000000;
    --control-transparent-borderColor-hover: #00000000;
    --control-transparent-borderColor-rest: #00000000;
    --controlTrack-bgColor-active: #2f3742;
    --controlTrack-bgColor-hover: #2a313c;
    --controlTrack-bgColor-rest: #262c36;
    --counter-borderColor: #00000000;
    --data-auburn-color-emphasis: #a86f6b;
    --data-auburn-color-muted: #271817;
    --data-blue-color-emphasis: #0576ff;
    --data-blue-color-muted: #001a47;
    --data-brown-color-emphasis: #94774c;
    --data-brown-color-muted: #241c14;
    --data-coral-color-emphasis: #e1430e;
    --data-coral-color-muted: #351008;
    --data-gray-color-emphasis: #576270;
    --data-gray-color-muted: #1c1c1c;
    --data-green-color-emphasis: #2f6f37;
    --data-green-color-muted: #122117;
    --data-lemon-color-emphasis: #977b0c;
    --data-lemon-color-muted: #291d00;
    --data-lime-color-emphasis: #5f892f;
    --data-lime-color-muted: #141f0f;
    --data-olive-color-emphasis: #7a8321;
    --data-olive-color-muted: #171e0b;
    --data-orange-color-emphasis: #984b10;
    --data-orange-color-muted: #311708;
    --data-pine-color-emphasis: #18915e;
    --data-pine-color-muted: #082119;
    --data-pink-color-emphasis: #d34591;
    --data-pink-color-muted: #2d1524;
    --data-plum-color-emphasis: #b643ef;
    --data-plum-color-muted: #2a0e3f;
    --data-purple-color-emphasis: #975bf1;
    --data-purple-color-muted: #211047;
    --data-red-color-emphasis: #eb3342;
    --data-red-color-muted: #3c0614;
    --data-teal-color-emphasis: #106c70;
    --data-teal-color-muted: #041f25;
    --data-yellow-color-emphasis: #895906;
    --data-yellow-color-muted: #2e1a00;
    --diffBlob-additionNum-bgColor: #58a6ff4d;
    --diffBlob-additionWord-bgColor: #388bfd66;
    --diffBlob-deletionNum-bgColor: #f851494d;
    --diffBlob-deletionWord-bgColor: #f8514966;
    --diffBlob-hunkLine-bgColor: #212830;
    --diffBlob-hunkNum-bgColor-hover: #656c76;
    --diffBlob-hunkNum-bgColor-rest: #2f3742;
    --display-auburn-bgColor-emphasis: #87534f;
    --display-auburn-bgColor-muted: #271817;
    --display-auburn-borderColor-emphasis: #a86f6b;
    --display-auburn-borderColor-muted: #3a2422;
    --display-auburn-fgColor: #bf9592;
    --display-auburn-scale-0: #271817;
    --display-auburn-scale-1: #3a2422;
    --display-auburn-scale-2: #543331;
    --display-auburn-scale-3: #6d4340;
    --display-auburn-scale-4: #87534f;
    --display-auburn-scale-5: #a86f6b;
    --display-auburn-scale-6: #bf9592;
    --display-auburn-scale-7: #c6a19f;
    --display-auburn-scale-8: #d4b7b5;
    --display-auburn-scale-9: #dfcac8;
    --display-blue-bgColor-emphasis: #005bd1;
    --display-blue-bgColor-muted: #001a47;
    --display-blue-borderColor-emphasis: #0576ff;
    --display-blue-borderColor-muted: #002766;
    --display-blue-fgColor: #4da0ff;
    --display-blue-scale-0: #001a47;
    --display-blue-scale-1: #002766;
    --display-blue-scale-2: #00378a;
    --display-blue-scale-3: #0046a8;
    --display-blue-scale-4: #005bd1;
    --display-blue-scale-5: #0576ff;
    --display-blue-scale-6: #4da0ff;
    --display-blue-scale-7: #61adff;
    --display-blue-scale-8: #85c2ff;
    --display-blue-scale-9: #a3d3ff;
    --display-brown-bgColor-emphasis: #755e3e;
    --display-brown-bgColor-muted: #241c14;
    --display-brown-borderColor-emphasis: #94774c;
    --display-brown-borderColor-muted: #342a1d;
    --display-brown-fgColor: #b69a6d;
    --display-brown-scale-0: #241c14;
    --display-brown-scale-1: #342a1d;
    --display-brown-scale-2: #483a28;
    --display-brown-scale-3: #5d4a32;
    --display-brown-scale-4: #755e3e;
    --display-brown-scale-5: #94774c;
    --display-brown-scale-6: #b69a6d;
    --display-brown-scale-7: #bfa77d;
    --display-brown-scale-8: #cdbb98;
    --display-brown-scale-9: #dbceb3;
    --display-coral-bgColor-emphasis: #c31328;
    --display-coral-bgColor-muted: #3c0614;
    --display-coral-borderColor-emphasis: #eb3342;
    --display-coral-borderColor-muted: #58091a;
    --display-coral-fgColor: #f27d83;
    --display-coral-scale-0: #351008;
    --display-coral-scale-1: #51180b;
    --display-coral-scale-2: #72220d;
    --display-coral-scale-3: #902a0e;
    --display-coral-scale-4: #b3350f;
    --display-coral-scale-5: #e1430e;
    --display-coral-scale-6: #f7794b;
    --display-coral-scale-7: #fa8c61;
    --display-coral-scale-8: #fdaa86;
    --display-coral-scale-9: #ffc0a3;
    --display-cyan-bgColor-emphasis: #036a8c;
    --display-cyan-bgColor-muted: #001f29;
    --display-cyan-borderColor-emphasis: #0587b3;
    --display-cyan-borderColor-muted: #002e3d;
    --display-cyan-fgColor: #07ace4;
    --display-cyan-scale-0: #001f29;
    --display-cyan-scale-1: #002e3d;
    --display-cyan-scale-2: #014156;
    --display-cyan-scale-3: #02536f;
    --display-cyan-scale-4: #036a8c;
    --display-cyan-scale-5: #0587b3;
    --display-cyan-scale-6: #07ace4;
    --display-cyan-scale-7: #09b7f1;
    --display-cyan-scale-8: #45cbf7;
    --display-cyan-scale-9: #80dbf9;
    --display-gray-bgColor-emphasis: #576270;
    --display-gray-bgColor-muted: #1c1c1c;
    --display-gray-borderColor-emphasis: #6e7f96;
    --display-gray-borderColor-muted: #2a2b2d;
    --display-gray-fgColor: #92a1b5;
    --display-gray-scale-0: #1c1c1c;
    --display-gray-scale-1: #2a2b2d;
    --display-gray-scale-2: #393d41;
    --display-gray-scale-3: #474e57;
    --display-gray-scale-4: #576270;
    --display-gray-scale-5: #6e7f96;
    --display-gray-scale-6: #92a1b5;
    --display-gray-scale-7: #9babbf;
    --display-gray-scale-8: #b3c0d1;
    --display-gray-scale-9: #c4cfde;
    --display-green-bgColor-emphasis: #2f6f37;
    --display-green-bgColor-muted: #122117;
    --display-green-borderColor-emphasis: #388f3f;
    --display-green-borderColor-muted: #182f1f;
    --display-green-fgColor: #41b445;
    --display-green-scale-0: #122117;
    --display-green-scale-1: #182f1f;
    --display-green-scale-2: #214529;
    --display-green-scale-3: #285830;
    --display-green-scale-4: #2f6f37;
    --display-green-scale-5: #388f3f;
    --display-green-scale-6: #41b445;
    --display-green-scale-7: #46c144;
    --display-green-scale-8: #75d36f;
    --display-green-scale-9: #99e090;
    --display-indigo-bgColor-emphasis: #514ed4;
    --display-indigo-bgColor-muted: #1b183f;
    --display-indigo-borderColor-emphasis: #7070e1;
    --display-indigo-borderColor-muted: #25215f;
    --display-indigo-fgColor: #9899ec;
    --display-indigo-scale-0: #1b183f;
    --display-indigo-scale-1: #25215f;
    --display-indigo-scale-2: #312c90;
    --display-indigo-scale-3: #3935c0;
    --display-indigo-scale-4: #514ed4;
    --display-indigo-scale-5: #7070e1;
    --display-indigo-scale-6: #9899ec;
    --display-indigo-scale-7: #a2a5f1;
    --display-indigo-scale-8: #b7baf6;
    --display-indigo-scale-9: #c8cbf9;
    --display-lemon-bgColor-emphasis: #786008;
    --display-lemon-bgColor-muted: #291d00;
    --display-lemon-borderColor-emphasis: #977b0c;
    --display-lemon-borderColor-muted: #372901;
    --display-lemon-fgColor: #ba9b12;
    --display-lemon-scale-0: #291d00;
    --display-lemon-scale-1: #372901;
    --display-lemon-scale-2: #4f3c02;
    --display-lemon-scale-3: #614c05;
    --display-lemon-scale-4: #786008;
    --display-lemon-scale-5: #977b0c;
    --display-lemon-scale-6: #ba9b12;
    --display-lemon-scale-7: #c4a717;
    --display-lemon-scale-8: #d7bc1d;
    --display-lemon-scale-9: #e3d04f;
    --display-lime-bgColor-emphasis: #496c28;
    --display-lime-bgColor-muted: #141f0f;
    --display-lime-borderColor-emphasis: #5f892f;
    --display-lime-borderColor-muted: #1f3116;
    --display-lime-fgColor: #7dae37;
    --display-lime-scale-0: #141f0f;
    --display-lime-scale-1: #1f3116;
    --display-lime-scale-2: #2c441d;
    --display-lime-scale-3: #375421;
    --display-lime-scale-4: #496c28;
    --display-lime-scale-5: #5f892f;
    --display-lime-scale-6: #7dae37;
    --display-lime-scale-7: #89ba36;
    --display-lime-scale-8: #9fcc3e;
    --display-lime-scale-9: #bcda67;
    --display-olive-bgColor-emphasis: #5e681d;
    --display-olive-bgColor-muted: #171e0b;
    --display-olive-borderColor-emphasis: #7a8321;
    --display-olive-borderColor-muted: #252d10;
    --display-olive-fgColor: #a2a626;
    --display-olive-scale-0: #171e0b;
    --display-olive-scale-1: #252d10;
    --display-olive-scale-2: #374115;
    --display-olive-scale-3: #485219;
    --display-olive-scale-4: #5e681d;
    --display-olive-scale-5: #7a8321;
    --display-olive-scale-6: #a2a626;
    --display-olive-scale-7: #b2af24;
    --display-olive-scale-8: #cbc025;
    --display-olive-scale-9: #e2d04b;
    --display-orange-bgColor-emphasis: #984b10;
    --display-orange-bgColor-muted: #311708;
    --display-orange-borderColor-emphasis: #c46212;
    --display-orange-borderColor-muted: #43200a;
    --display-orange-fgColor: #ed8326;
    --display-orange-scale-0: #311708;
    --display-orange-scale-1: #43200a;
    --display-orange-scale-2: #632f0d;
    --display-orange-scale-3: #7b3c0e;
    --display-orange-scale-4: #984b10;
    --display-orange-scale-5: #c46212;
    --display-orange-scale-6: #ed8326;
    --display-orange-scale-7: #f1933b;
    --display-orange-scale-8: #f6b06a;
    --display-orange-scale-9: #fac68f;
    --display-pine-bgColor-emphasis: #14714c;
    --display-pine-bgColor-muted: #082119;
    --display-pine-borderColor-emphasis: #18915e;
    --display-pine-borderColor-muted: #0b3224;
    --display-pine-fgColor: #1bb673;
    --display-pine-scale-0: #082119;
    --display-pine-scale-1: #0b3224;
    --display-pine-scale-2: #0e4430;
    --display-pine-scale-3: #115a3e;
    --display-pine-scale-4: #14714c;
    --display-pine-scale-5: #18915e;
    --display-pine-scale-6: #1bb673;
    --display-pine-scale-7: #1ac176;
    --display-pine-scale-8: #1bda81;
    --display-pine-scale-9: #3eea97;
    --display-pink-bgColor-emphasis: #ac2f74;
    --display-pink-bgColor-muted: #2d1524;
    --display-pink-borderColor-emphasis: #d34591;
    --display-pink-borderColor-muted: #451c35;
    --display-pink-fgColor: #e57bb2;
    --display-pink-scale-0: #2d1524;
    --display-pink-scale-1: #451c35;
    --display-pink-scale-2: #65244a;
    --display-pink-scale-3: #842a5d;
    --display-pink-scale-4: #ac2f74;
    --display-pink-scale-5: #d34591;
    --display-pink-scale-6: #e57bb2;
    --display-pink-scale-7: #ec8dbd;
    --display-pink-scale-8: #f4a9cd;
    --display-pink-scale-9: #f9bed9;
    --display-plum-bgColor-emphasis: #9518d8;
    --display-plum-bgColor-muted: #2a0e3f;
    --display-plum-borderColor-emphasis: #b643ef;
    --display-plum-borderColor-muted: #40125e;
    --display-plum-fgColor: #d07ef7;
    --display-plum-scale-0: #2a0e3f;
    --display-plum-scale-1: #40125e;
    --display-plum-scale-2: #5c1688;
    --display-plum-scale-3: #7517ab;
    --display-plum-scale-4: #9518d8;
    --display-plum-scale-5: #b643ef;
    --display-plum-scale-6: #d07ef7;
    --display-plum-scale-7: #d889fa;
    --display-plum-scale-8: #e4a5fd;
    --display-plum-scale-9: #edbdff;
    --display-purple-bgColor-emphasis: #7730e8;
    --display-purple-bgColor-muted: #211047;
    --display-purple-borderColor-emphasis: #975bf1;
    --display-purple-borderColor-muted: #31146b;
    --display-purple-fgColor: #b687f7;
    --display-purple-scale-0: #211047;
    --display-purple-scale-1: #31146b;
    --display-purple-scale-2: #481a9e;
    --display-purple-scale-3: #5b1cca;
    --display-purple-scale-4: #7730e8;
    --display-purple-scale-5: #975bf1;
    --display-purple-scale-6: #b687f7;
    --display-purple-scale-7: #c398fb;
    --display-purple-scale-8: #d2affd;
    --display-purple-scale-9: #e1c7ff;
    --display-red-bgColor-emphasis: #c31328;
    --display-red-bgColor-muted: #3c0614;
    --display-red-borderColor-emphasis: #eb3342;
    --display-red-borderColor-muted: #58091a;
    --display-red-fgColor: #f27d83;
    --display-red-scale-0: #3c0614;
    --display-red-scale-1: #58091a;
    --display-red-scale-2: #790c20;
    --display-red-scale-3: #990f24;
    --display-red-scale-4: #c31328;
    --display-red-scale-5: #eb3342;
    --display-red-scale-6: #f27d83;
    --display-red-scale-7: #f48b8d;
    --display-red-scale-8: #f7adab;
    --display-red-scale-9: #f9c1be;
    --display-teal-bgColor-emphasis: #106c70;
    --display-teal-bgColor-muted: #041f25;
    --display-teal-borderColor-emphasis: #158a8a;
    --display-teal-borderColor-muted: #073036;
    --display-teal-fgColor: #1cb0ab;
    --display-teal-scale-0: #041f25;
    --display-teal-scale-1: #073036;
    --display-teal-scale-2: #0a464d;
    --display-teal-scale-3: #0c555a;
    --display-teal-scale-4: #106c70;
    --display-teal-scale-5: #158a8a;
    --display-teal-scale-6: #1cb0ab;
    --display-teal-scale-7: #1fbdb2;
    --display-teal-scale-8: #24d6c4;
    --display-teal-scale-9: #5fe3d1;
    --display-yellow-bgColor-emphasis: #895906;
    --display-yellow-bgColor-muted: #2e1a00;
    --display-yellow-borderColor-emphasis: #aa7109;
    --display-yellow-borderColor-muted: #3d2401;
    --display-yellow-fgColor: #d3910d;
    --display-yellow-scale-0: #2e1a00;
    --display-yellow-scale-1: #3d2401;
    --display-yellow-scale-2: #5a3702;
    --display-yellow-scale-3: #6d4403;
    --display-yellow-scale-4: #895906;
    --display-yellow-scale-5: #aa7109;
    --display-yellow-scale-6: #d3910d;
    --display-yellow-scale-7: #df9e11;
    --display-yellow-scale-8: #edb431;
    --display-yellow-scale-9: #f0ca6a;
    --fgColor-attention: #d29922;
    --fgColor-danger: #f85149;
    --fgColor-default: #f0f6fc;
    --fgColor-disabled: #656c7699;
    --fgColor-done: #ab7df8;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-muted: #9198a1;
    --fgColor-neutral: #9198a1;
    --fgColor-open: #f85149;
    --fgColor-severe: #f85149;
    --fgColor-sponsors: #db61a2;
    --fgColor-success: #58a6ff;
    --header-bgColor: #151b23f2;
    --header-borderColor-divider: #656c76;
    --header-fgColor-logo: #f0f6fc;
    --headerSearch-bgColor: #0d1117;
    --headerSearch-borderColor: #2a313c;
    --highlight-neutral-bgColor: #d2992266;
    --label-auburn-bgColor-active: #543331;
    --label-auburn-bgColor-hover: #3a2422;
    --label-auburn-bgColor-rest: #271817;
    --label-auburn-fgColor-active: #d4b7b5;
    --label-auburn-fgColor-hover: #c6a19f;
    --label-auburn-fgColor-rest: #bf9592;
    --label-blue-bgColor-active: #00378a;
    --label-blue-bgColor-hover: #002766;
    --label-blue-bgColor-rest: #001a47;
    --label-blue-fgColor-active: #85c2ff;
    --label-blue-fgColor-hover: #61adff;
    --label-blue-fgColor-rest: #4da0ff;
    --label-brown-bgColor-active: #483a28;
    --label-brown-bgColor-hover: #342a1d;
    --label-brown-bgColor-rest: #241c14;
    --label-brown-fgColor-active: #cdbb98;
    --label-brown-fgColor-hover: #bfa77d;
    --label-brown-fgColor-rest: #b69a6d;
    --label-coral-bgColor-active: #72220d;
    --label-coral-bgColor-hover: #51180b;
    --label-coral-bgColor-rest: #351008;
    --label-coral-fgColor-active: #fdaa86;
    --label-coral-fgColor-hover: #fa8c61;
    --label-coral-fgColor-rest: #f7794b;
    --label-cyan-bgColor-active: #014156;
    --label-cyan-bgColor-hover: #002e3d;
    --label-cyan-bgColor-rest: #001f29;
    --label-cyan-fgColor-active: #45cbf7;
    --label-cyan-fgColor-hover: #09b7f1;
    --label-cyan-fgColor-rest: #07ace4;
    --label-gray-bgColor-active: #393d41;
    --label-gray-bgColor-hover: #2a2b2d;
    --label-gray-bgColor-rest: #1c1c1c;
    --label-gray-fgColor-active: #b3c0d1;
    --label-gray-fgColor-hover: #9babbf;
    --label-gray-fgColor-rest: #92a1b5;
    --label-green-bgColor-active: #214529;
    --label-green-bgColor-hover: #182f1f;
    --label-green-bgColor-rest: #122117;
    --label-green-fgColor-active: #75d36f;
    --label-green-fgColor-hover: #46c144;
    --label-green-fgColor-rest: #41b445;
    --label-indigo-bgColor-active: #312c90;
    --label-indigo-bgColor-hover: #25215f;
    --label-indigo-bgColor-rest: #1b183f;
    --label-indigo-fgColor-active: #b7baf6;
    --label-indigo-fgColor-hover: #a2a5f1;
    --label-indigo-fgColor-rest: #9899ec;
    --label-lemon-bgColor-active: #4f3c02;
    --label-lemon-bgColor-hover: #372901;
    --label-lemon-bgColor-rest: #291d00;
    --label-lemon-fgColor-active: #d7bc1d;
    --label-lemon-fgColor-hover: #c4a717;
    --label-lemon-fgColor-rest: #ba9b12;
    --label-lime-bgColor-active: #2c441d;
    --label-lime-bgColor-hover: #1f3116;
    --label-lime-bgColor-rest: #141f0f;
    --label-lime-fgColor-active: #9fcc3e;
    --label-lime-fgColor-hover: #89ba36;
    --label-lime-fgColor-rest: #7dae37;
    --label-olive-bgColor-active: #374115;
    --label-olive-bgColor-hover: #252d10;
    --label-olive-bgColor-rest: #171e0b;
    --label-olive-fgColor-active: #cbc025;
    --label-olive-fgColor-hover: #b2af24;
    --label-olive-fgColor-rest: #a2a626;
    --label-orange-bgColor-active: #632f0d;
    --label-orange-bgColor-hover: #43200a;
    --label-orange-bgColor-rest: #311708;
    --label-orange-fgColor-active: #f6b06a;
    --label-orange-fgColor-hover: #f1933b;
    --label-orange-fgColor-rest: #ed8326;
    --label-pine-bgColor-active: #0e4430;
    --label-pine-bgColor-hover: #0b3224;
    --label-pine-bgColor-rest: #082119;
    --label-pine-fgColor-active: #1bda81;
    --label-pine-fgColor-hover: #1ac176;
    --label-pine-fgColor-rest: #1bb673;
    --label-pink-bgColor-active: #65244a;
    --label-pink-bgColor-hover: #451c35;
    --label-pink-bgColor-rest: #2d1524;
    --label-pink-fgColor-active: #f4a9cd;
    --label-pink-fgColor-hover: #ec8dbd;
    --label-pink-fgColor-rest: #e57bb2;
    --label-plum-bgColor-active: #5c1688;
    --label-plum-bgColor-hover: #40125e;
    --label-plum-bgColor-rest: #2a0e3f;
    --label-plum-fgColor-active: #e4a5fd;
    --label-plum-fgColor-hover: #d889fa;
    --label-plum-fgColor-rest: #d07ef7;
    --label-purple-bgColor-active: #481a9e;
    --label-purple-bgColor-hover: #31146b;
    --label-purple-bgColor-rest: #211047;
    --label-purple-fgColor-active: #d2affd;
    --label-purple-fgColor-hover: #c398fb;
    --label-purple-fgColor-rest: #b687f7;
    --label-red-bgColor-active: #790c20;
    --label-red-bgColor-hover: #58091a;
    --label-red-bgColor-rest: #3c0614;
    --label-red-fgColor-active: #f7adab;
    --label-red-fgColor-hover: #f48b8d;
    --label-red-fgColor-rest: #f27d83;
    --label-teal-bgColor-active: #0a464d;
    --label-teal-bgColor-hover: #073036;
    --label-teal-bgColor-rest: #041f25;
    --label-teal-fgColor-active: #24d6c4;
    --label-teal-fgColor-hover: #1fbdb2;
    --label-teal-fgColor-rest: #1cb0ab;
    --label-yellow-bgColor-active: #5a3702;
    --label-yellow-bgColor-hover: #3d2401;
    --label-yellow-bgColor-rest: #2e1a00;
    --label-yellow-fgColor-active: #edb431;
    --label-yellow-fgColor-hover: #df9e11;
    --label-yellow-fgColor-rest: #d3910d;
    --menu-bgColor-active: #151b23;
    --overlay-backdrop-bgColor: #21283066;
    --reactionButton-selected-bgColor-rest: #388bfd33;
    --reactionButton-selected-fgColor-hover: #79c0ff;
    --selectMenu-bgColor-active: #0c2d6b;
    --sideNav-bgColor-selected: #212830;
    --skeletonLoader-bgColor: #656c7633;
    --timelineBadge-bgColor: #212830;
    --topicTag-borderColor: #00000000;
    --underlineNav-borderColor-active: #f78166;
    --avatar-bgColor: #ffffff1a;
    --bgColor-black: #010409;
    --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
    --bgColor-closed-muted: #656c761a;
    --bgColor-inset: #010409;
    --bgColor-inverse: #ffffff;
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #1f6feb;
    --border-accent-muted: 0.0625rem solid #388bfd66;
    --border-attention-emphasis: 0.0625rem solid #9e6a03;
    --border-attention-muted: 0.0625rem solid #bb800966;
    --border-danger-emphasis: 0.0625rem solid #da3633;
    --border-danger-muted: 0.0625rem solid #f8514966;
    --border-default: 0.0625rem solid #3d444d;
    --border-disabled: 0.0625rem solid #656c761a;
    --border-done-emphasis: 0.0625rem solid #8957e5;
    --border-done-muted: 0.0625rem solid #ab7df866;
    --border-emphasis: 0.0625rem solid #656c76;
    --border-severe-emphasis: 0.0625rem solid #da3633;
    --border-severe-muted: 0.0625rem solid #f8514966;
    --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
    --border-sponsors-muted: 0.0625rem solid #db61a266;
    --border-success-emphasis: 0.0625rem solid #1f6feb;
    --border-success-muted: 0.0625rem solid #388bfd66;
    --border-transparent: 0.0625rem solid #00000000;
    --borderColor-closed-emphasis: var(--borderColor-emphasis);
    --borderColor-closed-muted: #3d444d66;
    --borderColor-muted: #3d444db3;
    --borderColor-neutral-emphasis: var(--borderColor-emphasis);
    --borderColor-translucent: #ffffff26;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #f8514980;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-fgColor-active: #ffffff;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #ffffff1a;
    --button-primary-fgColor-disabled: #ffffff66;
    --buttonCounter-danger-bgColor-disabled: #da36330d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-fgColor-disabled: #f8514980;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
    --card-bgColor: var(--bgColor-muted);
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --color-ansi-white-bright: #ffffff;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-checked-fgColor-disabled: #010409;
    --control-danger-bgColor-active: #f8514966;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-fgColor-rest: var(--fgColor-default);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --controlTrack-fgColor-rest: var(--fgColor-muted);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --fgColor-black: #010409;
    --fgColor-closed: var(--fgColor-muted);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #010409;
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --overlay-bgColor: var(--bgColor-muted);
    --page-header-bgColor: var(--bgColor-default);
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --selectMenu-borderColor: var(--borderColor-default);
    --selection-bgColor: #1f6febb3;
    --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-inset: inset 0px 1px 0px 0px #0104093d;
    --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
    --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
    --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
    --tooltip-bgColor: var(--bgColor-emphasis);
    --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #3d444db3;
    --border-neutral-emphasis: 0.0625rem solid #656c76;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8957e5;
    --border-upsell-muted: 0.0625rem solid #ab7df866;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: var(--fgColor-white);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-bgColor-rest: var(--bgColor-inset);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --focus-outline: 2px solid #1f6feb;
    --overlay-borderColor: var(--borderColor-muted);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --border-neutral-muted: 0.0625rem solid #3d444db3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-active: var(--button-default-borderColor-rest);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
    --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
    --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
    --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
    --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --button-danger-bgColor-active: #d03533;
  --button-danger-fgColor-rest: #fa5e55;
  --button-danger-iconColor-rest: #fa5e55;
  --button-primary-bgColor-active: #2e9a40;
  --button-primary-bgColor-disabled: #105823;
  --button-primary-bgColor-hover: #29903b;
  --button-primary-borderColor-disabled: #105823;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --control-checked-bgColor-active: #3685f3;
  --control-checked-bgColor-hover: #2a7aef;
  --fgColor-accent: #4493f8;
  --reactionButton-selected-bgColor-hover: #3a8cfd5c;
  --avatar-shadow: 0px 0px 0px 2px #0d1117;
  --avatarStack-fade-bgColor-default: #3d444d;
  --avatarStack-fade-bgColor-muted: #2a313c;
  --bgColor-accent-emphasis: #1f6feb;
  --bgColor-accent-muted: #388bfd1a;
  --bgColor-attention-emphasis: #9e6a03;
  --bgColor-attention-muted: #bb800926;
  --bgColor-danger-emphasis: #da3633;
  --bgColor-danger-muted: #f851491a;
  --bgColor-default: #0d1117;
  --bgColor-disabled: #212830;
  --bgColor-done-emphasis: #8957e5;
  --bgColor-done-muted: #ab7df826;
  --bgColor-emphasis: #3d444d;
  --bgColor-muted: #151b23;
  --bgColor-neutral-emphasis: #656c76;
  --bgColor-neutral-muted: #656c7633;
  --bgColor-severe-emphasis: #bd561d;
  --bgColor-severe-muted: #db6d281a;
  --bgColor-sponsors-emphasis: #bf4b8a;
  --bgColor-sponsors-muted: #db61a21a;
  --bgColor-success-emphasis: #238636;
  --bgColor-success-muted: #2ea04326;
  --bgColor-transparent: #00000000;
  --borderColor-accent-emphasis: #1f6feb;
  --borderColor-accent-muted: #388bfd66;
  --borderColor-attention-emphasis: #9e6a03;
  --borderColor-attention-muted: #bb800966;
  --borderColor-danger-emphasis: #da3633;
  --borderColor-danger-muted: #f8514966;
  --borderColor-default: #3d444d;
  --borderColor-disabled: #656c761a;
  --borderColor-done-emphasis: #8957e5;
  --borderColor-done-muted: #ab7df866;
  --borderColor-emphasis: #656c76;
  --borderColor-severe-emphasis: #bd561d;
  --borderColor-severe-muted: #db6d2866;
  --borderColor-sponsors-emphasis: #bf4b8a;
  --borderColor-sponsors-muted: #db61a266;
  --borderColor-success-emphasis: #238636;
  --borderColor-success-muted: #2ea04366;
  --borderColor-transparent: #00000000;
  --button-danger-bgColor-hover: #b62324;
  --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
  --button-default-shadow-resting: 0px 0px 0px 0px #000000;
  --button-inactive-bgColor: #262c36;
  --button-inactive-fgColor: #9198a1;
  --button-invisible-bgColor-disabled: #00000000;
  --button-invisible-borderColor-disabled: #00000000;
  --button-outline-bgColor-active: #0d419d;
  --button-outline-bgColor-rest: #f0f6fc;
  --button-outline-fgColor-disabled: #4493f880;
  --button-outline-fgColor-hover: #58a6ff;
  --button-outline-fgColor-rest: #388bfd;
  --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
  --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
  --button-star-iconColor: #e3b341;
  --buttonCounter-danger-bgColor-rest: #49020233;
  --buttonCounter-default-bgColor-rest: #2f3742;
  --buttonCounter-outline-bgColor-hover: #051d4d33;
  --buttonCounter-outline-bgColor-rest: #051d4d33;
  --buttonCounter-outline-fgColor-disabled: #4493f880;
  --buttonCounter-outline-fgColor-hover: #58a6ff;
  --buttonCounter-outline-fgColor-rest: #388bfd;
  --buttonCounter-primary-bgColor-rest: #04260f33;
  --codeMirror-syntax-fgColor-comment: #656c76;
  --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;
  --color-ansi-black: #2f3742;
  --color-ansi-black-bright: #656c76;
  --color-ansi-blue: #58a6ff;
  --color-ansi-blue-bright: #79c0ff;
  --color-ansi-gray: #656c76;
  --color-ansi-green: #3fb950;
  --color-ansi-green-bright: #56d364;
  --color-ansi-magenta: #be8fff;
  --color-ansi-magenta-bright: #d2a8ff;
  --color-ansi-red: #ff7b72;
  --color-ansi-red-bright: #ffa198;
  --color-ansi-white: #f0f6fc;
  --color-ansi-yellow: #d29922;
  --color-ansi-yellow-bright: #e3b341;
  --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
  --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
  --color-prettylights-syntax-carriage-return-bg: #b62324;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-comment: #9198a1;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-markup-bold: #f0f6fc;
  --color-prettylights-syntax-markup-changed-bg: #5a1e02;
  --color-prettylights-syntax-markup-changed-text: #ffdfb6;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
  --color-prettylights-syntax-markup-inserted-bg: #033a16;
  --color-prettylights-syntax-markup-inserted-text: #aff5b4;
  --color-prettylights-syntax-markup-italic: #f0f6fc;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-string-regexp: #7ee787;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
  --color-prettylights-syntax-variable: #ffa657;
  --contribution-default-bgColor-0: #151b23;
  --contribution-default-bgColor-1: #033a16;
  --contribution-default-bgColor-2: #196c2e;
  --contribution-default-bgColor-3: #2ea043;
  --contribution-default-bgColor-4: #56d364;
  --contribution-default-borderColor-0: #ffffff0d;
  --contribution-default-borderColor-1: #ffffff0d;
  --contribution-default-borderColor-2: #ffffff0d;
  --contribution-default-borderColor-3: #ffffff0d;
  --contribution-default-borderColor-4: #ffffff0d;
  --contribution-halloween-bgColor-1: #fac68f;
  --contribution-halloween-bgColor-2: #c46212;
  --contribution-halloween-bgColor-3: #984b10;
  --contribution-halloween-bgColor-4: #e3d04f;
  --contribution-winter-bgColor-1: #0c2d6b;
  --contribution-winter-bgColor-2: #1158c7;
  --contribution-winter-bgColor-3: #58a6ff;
  --contribution-winter-bgColor-4: #cae8ff;
  --control-bgColor-active: #2a313c;
  --control-bgColor-hover: #262c36;
  --control-bgColor-rest: #212830;
  --control-borderColor-selected: #f0f6fc;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-danger-fgColor-hover: #ff7b72;
  --control-transparent-bgColor-active: #656c7640;
  --control-transparent-bgColor-hover: #656c7633;
  --control-transparent-bgColor-rest: #00000000;
  --control-transparent-bgColor-selected: #656c761a;
  --control-transparent-borderColor-active: #00000000;
  --control-transparent-borderColor-hover: #00000000;
  --control-transparent-borderColor-rest: #00000000;
  --controlTrack-bgColor-active: #2f3742;
  --controlTrack-bgColor-hover: #2a313c;
  --controlTrack-bgColor-rest: #262c36;
  --counter-borderColor: #00000000;
  --data-auburn-color-emphasis: #a86f6b;
  --data-auburn-color-muted: #271817;
  --data-blue-color-emphasis: #0576ff;
  --data-blue-color-muted: #001a47;
  --data-brown-color-emphasis: #94774c;
  --data-brown-color-muted: #241c14;
  --data-coral-color-emphasis: #e1430e;
  --data-coral-color-muted: #351008;
  --data-gray-color-emphasis: #576270;
  --data-gray-color-muted: #1c1c1c;
  --data-green-color-emphasis: #2f6f37;
  --data-green-color-muted: #122117;
  --data-lemon-color-emphasis: #977b0c;
  --data-lemon-color-muted: #291d00;
  --data-lime-color-emphasis: #5f892f;
  --data-lime-color-muted: #141f0f;
  --data-olive-color-emphasis: #7a8321;
  --data-olive-color-muted: #171e0b;
  --data-orange-color-emphasis: #984b10;
  --data-orange-color-muted: #311708;
  --data-pine-color-emphasis: #18915e;
  --data-pine-color-muted: #082119;
  --data-pink-color-emphasis: #d34591;
  --data-pink-color-muted: #2d1524;
  --data-plum-color-emphasis: #b643ef;
  --data-plum-color-muted: #2a0e3f;
  --data-purple-color-emphasis: #975bf1;
  --data-purple-color-muted: #211047;
  --data-red-color-emphasis: #eb3342;
  --data-red-color-muted: #3c0614;
  --data-teal-color-emphasis: #106c70;
  --data-teal-color-muted: #041f25;
  --data-yellow-color-emphasis: #895906;
  --data-yellow-color-muted: #2e1a00;
  --diffBlob-additionNum-bgColor: #3fb9504d;
  --diffBlob-additionWord-bgColor: #2ea04366;
  --diffBlob-deletionNum-bgColor: #f851494d;
  --diffBlob-deletionWord-bgColor: #f8514966;
  --diffBlob-hunkNum-bgColor-rest: #0c2d6b;
  --display-auburn-bgColor-emphasis: #87534f;
  --display-auburn-bgColor-muted: #271817;
  --display-auburn-borderColor-emphasis: #a86f6b;
  --display-auburn-borderColor-muted: #3a2422;
  --display-auburn-fgColor: #bf9592;
  --display-auburn-scale-0: #271817;
  --display-auburn-scale-1: #3a2422;
  --display-auburn-scale-2: #543331;
  --display-auburn-scale-3: #6d4340;
  --display-auburn-scale-4: #87534f;
  --display-auburn-scale-5: #a86f6b;
  --display-auburn-scale-6: #bf9592;
  --display-auburn-scale-7: #c6a19f;
  --display-auburn-scale-8: #d4b7b5;
  --display-auburn-scale-9: #dfcac8;
  --display-blue-bgColor-emphasis: #005bd1;
  --display-blue-bgColor-muted: #001a47;
  --display-blue-borderColor-emphasis: #0576ff;
  --display-blue-borderColor-muted: #002766;
  --display-blue-fgColor: #4da0ff;
  --display-blue-scale-0: #001a47;
  --display-blue-scale-1: #002766;
  --display-blue-scale-2: #00378a;
  --display-blue-scale-3: #0046a8;
  --display-blue-scale-4: #005bd1;
  --display-blue-scale-5: #0576ff;
  --display-blue-scale-6: #4da0ff;
  --display-blue-scale-7: #61adff;
  --display-blue-scale-8: #85c2ff;
  --display-blue-scale-9: #a3d3ff;
  --display-brown-bgColor-emphasis: #755e3e;
  --display-brown-bgColor-muted: #241c14;
  --display-brown-borderColor-emphasis: #94774c;
  --display-brown-borderColor-muted: #342a1d;
  --display-brown-fgColor: #b69a6d;
  --display-brown-scale-0: #241c14;
  --display-brown-scale-1: #342a1d;
  --display-brown-scale-2: #483a28;
  --display-brown-scale-3: #5d4a32;
  --display-brown-scale-4: #755e3e;
  --display-brown-scale-5: #94774c;
  --display-brown-scale-6: #b69a6d;
  --display-brown-scale-7: #bfa77d;
  --display-brown-scale-8: #cdbb98;
  --display-brown-scale-9: #dbceb3;
  --display-coral-bgColor-emphasis: #c31328;
  --display-coral-bgColor-muted: #3c0614;
  --display-coral-borderColor-emphasis: #eb3342;
  --display-coral-borderColor-muted: #58091a;
  --display-coral-fgColor: #f27d83;
  --display-coral-scale-0: #351008;
  --display-coral-scale-1: #51180b;
  --display-coral-scale-2: #72220d;
  --display-coral-scale-3: #902a0e;
  --display-coral-scale-4: #b3350f;
  --display-coral-scale-5: #e1430e;
  --display-coral-scale-6: #f7794b;
  --display-coral-scale-7: #fa8c61;
  --display-coral-scale-8: #fdaa86;
  --display-coral-scale-9: #ffc0a3;
  --display-cyan-bgColor-emphasis: #036a8c;
  --display-cyan-bgColor-muted: #001f29;
  --display-cyan-borderColor-emphasis: #0587b3;
  --display-cyan-borderColor-muted: #002e3d;
  --display-cyan-fgColor: #07ace4;
  --display-cyan-scale-0: #001f29;
  --display-cyan-scale-1: #002e3d;
  --display-cyan-scale-2: #014156;
  --display-cyan-scale-3: #02536f;
  --display-cyan-scale-4: #036a8c;
  --display-cyan-scale-5: #0587b3;
  --display-cyan-scale-6: #07ace4;
  --display-cyan-scale-7: #09b7f1;
  --display-cyan-scale-8: #45cbf7;
  --display-cyan-scale-9: #80dbf9;
  --display-gray-bgColor-emphasis: #576270;
  --display-gray-bgColor-muted: #1c1c1c;
  --display-gray-borderColor-emphasis: #6e7f96;
  --display-gray-borderColor-muted: #2a2b2d;
  --display-gray-fgColor: #92a1b5;
  --display-gray-scale-0: #1c1c1c;
  --display-gray-scale-1: #2a2b2d;
  --display-gray-scale-2: #393d41;
  --display-gray-scale-3: #474e57;
  --display-gray-scale-4: #576270;
  --display-gray-scale-5: #6e7f96;
  --display-gray-scale-6: #92a1b5;
  --display-gray-scale-7: #9babbf;
  --display-gray-scale-8: #b3c0d1;
  --display-gray-scale-9: #c4cfde;
  --display-green-bgColor-emphasis: #2f6f37;
  --display-green-bgColor-muted: #122117;
  --display-green-borderColor-emphasis: #388f3f;
  --display-green-borderColor-muted: #182f1f;
  --display-green-fgColor: #41b445;
  --display-green-scale-0: #122117;
  --display-green-scale-1: #182f1f;
  --display-green-scale-2: #214529;
  --display-green-scale-3: #285830;
  --display-green-scale-4: #2f6f37;
  --display-green-scale-5: #388f3f;
  --display-green-scale-6: #41b445;
  --display-green-scale-7: #46c144;
  --display-green-scale-8: #75d36f;
  --display-green-scale-9: #99e090;
  --display-indigo-bgColor-emphasis: #514ed4;
  --display-indigo-bgColor-muted: #1b183f;
  --display-indigo-borderColor-emphasis: #7070e1;
  --display-indigo-borderColor-muted: #25215f;
  --display-indigo-fgColor: #9899ec;
  --display-indigo-scale-0: #1b183f;
  --display-indigo-scale-1: #25215f;
  --display-indigo-scale-2: #312c90;
  --display-indigo-scale-3: #3935c0;
  --display-indigo-scale-4: #514ed4;
  --display-indigo-scale-5: #7070e1;
  --display-indigo-scale-6: #9899ec;
  --display-indigo-scale-7: #a2a5f1;
  --display-indigo-scale-8: #b7baf6;
  --display-indigo-scale-9: #c8cbf9;
  --display-lemon-bgColor-emphasis: #786008;
  --display-lemon-bgColor-muted: #291d00;
  --display-lemon-borderColor-emphasis: #977b0c;
  --display-lemon-borderColor-muted: #372901;
  --display-lemon-fgColor: #ba9b12;
  --display-lemon-scale-0: #291d00;
  --display-lemon-scale-1: #372901;
  --display-lemon-scale-2: #4f3c02;
  --display-lemon-scale-3: #614c05;
  --display-lemon-scale-4: #786008;
  --display-lemon-scale-5: #977b0c;
  --display-lemon-scale-6: #ba9b12;
  --display-lemon-scale-7: #c4a717;
  --display-lemon-scale-8: #d7bc1d;
  --display-lemon-scale-9: #e3d04f;
  --display-lime-bgColor-emphasis: #496c28;
  --display-lime-bgColor-muted: #141f0f;
  --display-lime-borderColor-emphasis: #5f892f;
  --display-lime-borderColor-muted: #1f3116;
  --display-lime-fgColor: #7dae37;
  --display-lime-scale-0: #141f0f;
  --display-lime-scale-1: #1f3116;
  --display-lime-scale-2: #2c441d;
  --display-lime-scale-3: #375421;
  --display-lime-scale-4: #496c28;
  --display-lime-scale-5: #5f892f;
  --display-lime-scale-6: #7dae37;
  --display-lime-scale-7: #89ba36;
  --display-lime-scale-8: #9fcc3e;
  --display-lime-scale-9: #bcda67;
  --display-olive-bgColor-emphasis: #5e681d;
  --display-olive-bgColor-muted: #171e0b;
  --display-olive-borderColor-emphasis: #7a8321;
  --display-olive-borderColor-muted: #252d10;
  --display-olive-fgColor: #a2a626;
  --display-olive-scale-0: #171e0b;
  --display-olive-scale-1: #252d10;
  --display-olive-scale-2: #374115;
  --display-olive-scale-3: #485219;
  --display-olive-scale-4: #5e681d;
  --display-olive-scale-5: #7a8321;
  --display-olive-scale-6: #a2a626;
  --display-olive-scale-7: #b2af24;
  --display-olive-scale-8: #cbc025;
  --display-olive-scale-9: #e2d04b;
  --display-orange-bgColor-emphasis: #984b10;
  --display-orange-bgColor-muted: #311708;
  --display-orange-borderColor-emphasis: #c46212;
  --display-orange-borderColor-muted: #43200a;
  --display-orange-fgColor: #ed8326;
  --display-orange-scale-0: #311708;
  --display-orange-scale-1: #43200a;
  --display-orange-scale-2: #632f0d;
  --display-orange-scale-3: #7b3c0e;
  --display-orange-scale-4: #984b10;
  --display-orange-scale-5: #c46212;
  --display-orange-scale-6: #ed8326;
  --display-orange-scale-7: #f1933b;
  --display-orange-scale-8: #f6b06a;
  --display-orange-scale-9: #fac68f;
  --display-pine-bgColor-emphasis: #14714c;
  --display-pine-bgColor-muted: #082119;
  --display-pine-borderColor-emphasis: #18915e;
  --display-pine-borderColor-muted: #0b3224;
  --display-pine-fgColor: #1bb673;
  --display-pine-scale-0: #082119;
  --display-pine-scale-1: #0b3224;
  --display-pine-scale-2: #0e4430;
  --display-pine-scale-3: #115a3e;
  --display-pine-scale-4: #14714c;
  --display-pine-scale-5: #18915e;
  --display-pine-scale-6: #1bb673;
  --display-pine-scale-7: #1ac176;
  --display-pine-scale-8: #1bda81;
  --display-pine-scale-9: #3eea97;
  --display-pink-bgColor-emphasis: #ac2f74;
  --display-pink-bgColor-muted: #2d1524;
  --display-pink-borderColor-emphasis: #d34591;
  --display-pink-borderColor-muted: #451c35;
  --display-pink-fgColor: #e57bb2;
  --display-pink-scale-0: #2d1524;
  --display-pink-scale-1: #451c35;
  --display-pink-scale-2: #65244a;
  --display-pink-scale-3: #842a5d;
  --display-pink-scale-4: #ac2f74;
  --display-pink-scale-5: #d34591;
  --display-pink-scale-6: #e57bb2;
  --display-pink-scale-7: #ec8dbd;
  --display-pink-scale-8: #f4a9cd;
  --display-pink-scale-9: #f9bed9;
  --display-plum-bgColor-emphasis: #9518d8;
  --display-plum-bgColor-muted: #2a0e3f;
  --display-plum-borderColor-emphasis: #b643ef;
  --display-plum-borderColor-muted: #40125e;
  --display-plum-fgColor: #d07ef7;
  --display-plum-scale-0: #2a0e3f;
  --display-plum-scale-1: #40125e;
  --display-plum-scale-2: #5c1688;
  --display-plum-scale-3: #7517ab;
  --display-plum-scale-4: #9518d8;
  --display-plum-scale-5: #b643ef;
  --display-plum-scale-6: #d07ef7;
  --display-plum-scale-7: #d889fa;
  --display-plum-scale-8: #e4a5fd;
  --display-plum-scale-9: #edbdff;
  --display-purple-bgColor-emphasis: #7730e8;
  --display-purple-bgColor-muted: #211047;
  --display-purple-borderColor-emphasis: #975bf1;
  --display-purple-borderColor-muted: #31146b;
  --display-purple-fgColor: #b687f7;
  --display-purple-scale-0: #211047;
  --display-purple-scale-1: #31146b;
  --display-purple-scale-2: #481a9e;
  --display-purple-scale-3: #5b1cca;
  --display-purple-scale-4: #7730e8;
  --display-purple-scale-5: #975bf1;
  --display-purple-scale-6: #b687f7;
  --display-purple-scale-7: #c398fb;
  --display-purple-scale-8: #d2affd;
  --display-purple-scale-9: #e1c7ff;
  --display-red-bgColor-emphasis: #c31328;
  --display-red-bgColor-muted: #3c0614;
  --display-red-borderColor-emphasis: #eb3342;
  --display-red-borderColor-muted: #58091a;
  --display-red-fgColor: #f27d83;
  --display-red-scale-0: #3c0614;
  --display-red-scale-1: #58091a;
  --display-red-scale-2: #790c20;
  --display-red-scale-3: #990f24;
  --display-red-scale-4: #c31328;
  --display-red-scale-5: #eb3342;
  --display-red-scale-6: #f27d83;
  --display-red-scale-7: #f48b8d;
  --display-red-scale-8: #f7adab;
  --display-red-scale-9: #f9c1be;
  --display-teal-bgColor-emphasis: #106c70;
  --display-teal-bgColor-muted: #041f25;
  --display-teal-borderColor-emphasis: #158a8a;
  --display-teal-borderColor-muted: #073036;
  --display-teal-fgColor: #1cb0ab;
  --display-teal-scale-0: #041f25;
  --display-teal-scale-1: #073036;
  --display-teal-scale-2: #0a464d;
  --display-teal-scale-3: #0c555a;
  --display-teal-scale-4: #106c70;
  --display-teal-scale-5: #158a8a;
  --display-teal-scale-6: #1cb0ab;
  --display-teal-scale-7: #1fbdb2;
  --display-teal-scale-8: #24d6c4;
  --display-teal-scale-9: #5fe3d1;
  --display-yellow-bgColor-emphasis: #895906;
  --display-yellow-bgColor-muted: #2e1a00;
  --display-yellow-borderColor-emphasis: #aa7109;
  --display-yellow-borderColor-muted: #3d2401;
  --display-yellow-fgColor: #d3910d;
  --display-yellow-scale-0: #2e1a00;
  --display-yellow-scale-1: #3d2401;
  --display-yellow-scale-2: #5a3702;
  --display-yellow-scale-3: #6d4403;
  --display-yellow-scale-4: #895906;
  --display-yellow-scale-5: #aa7109;
  --display-yellow-scale-6: #d3910d;
  --display-yellow-scale-7: #df9e11;
  --display-yellow-scale-8: #edb431;
  --display-yellow-scale-9: #f0ca6a;
  --fgColor-attention: #d29922;
  --fgColor-danger: #f85149;
  --fgColor-default: #f0f6fc;
  --fgColor-disabled: #656c7699;
  --fgColor-done: #ab7df8;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-muted: #9198a1;
  --fgColor-neutral: #9198a1;
  --fgColor-severe: #db6d28;
  --fgColor-sponsors: #db61a2;
  --fgColor-success: #3fb950;
  --header-bgColor: #151b23f2;
  --header-borderColor-divider: #656c76;
  --header-fgColor-logo: #f0f6fc;
  --headerSearch-bgColor: #0d1117;
  --headerSearch-borderColor: #2a313c;
  --highlight-neutral-bgColor: #d2992266;
  --label-auburn-bgColor-active: #543331;
  --label-auburn-bgColor-hover: #3a2422;
  --label-auburn-bgColor-rest: #271817;
  --label-auburn-fgColor-active: #d4b7b5;
  --label-auburn-fgColor-hover: #c6a19f;
  --label-auburn-fgColor-rest: #bf9592;
  --label-blue-bgColor-active: #00378a;
  --label-blue-bgColor-hover: #002766;
  --label-blue-bgColor-rest: #001a47;
  --label-blue-fgColor-active: #85c2ff;
  --label-blue-fgColor-hover: #61adff;
  --label-blue-fgColor-rest: #4da0ff;
  --label-brown-bgColor-active: #483a28;
  --label-brown-bgColor-hover: #342a1d;
  --label-brown-bgColor-rest: #241c14;
  --label-brown-fgColor-active: #cdbb98;
  --label-brown-fgColor-hover: #bfa77d;
  --label-brown-fgColor-rest: #b69a6d;
  --label-coral-bgColor-active: #72220d;
  --label-coral-bgColor-hover: #51180b;
  --label-coral-bgColor-rest: #351008;
  --label-coral-fgColor-active: #fdaa86;
  --label-coral-fgColor-hover: #fa8c61;
  --label-coral-fgColor-rest: #f7794b;
  --label-cyan-bgColor-active: #014156;
  --label-cyan-bgColor-hover: #002e3d;
  --label-cyan-bgColor-rest: #001f29;
  --label-cyan-fgColor-active: #45cbf7;
  --label-cyan-fgColor-hover: #09b7f1;
  --label-cyan-fgColor-rest: #07ace4;
  --label-gray-bgColor-active: #393d41;
  --label-gray-bgColor-hover: #2a2b2d;
  --label-gray-bgColor-rest: #1c1c1c;
  --label-gray-fgColor-active: #b3c0d1;
  --label-gray-fgColor-hover: #9babbf;
  --label-gray-fgColor-rest: #92a1b5;
  --label-green-bgColor-active: #214529;
  --label-green-bgColor-hover: #182f1f;
  --label-green-bgColor-rest: #122117;
  --label-green-fgColor-active: #75d36f;
  --label-green-fgColor-hover: #46c144;
  --label-green-fgColor-rest: #41b445;
  --label-indigo-bgColor-active: #312c90;
  --label-indigo-bgColor-hover: #25215f;
  --label-indigo-bgColor-rest: #1b183f;
  --label-indigo-fgColor-active: #b7baf6;
  --label-indigo-fgColor-hover: #a2a5f1;
  --label-indigo-fgColor-rest: #9899ec;
  --label-lemon-bgColor-active: #4f3c02;
  --label-lemon-bgColor-hover: #372901;
  --label-lemon-bgColor-rest: #291d00;
  --label-lemon-fgColor-active: #d7bc1d;
  --label-lemon-fgColor-hover: #c4a717;
  --label-lemon-fgColor-rest: #ba9b12;
  --label-lime-bgColor-active: #2c441d;
  --label-lime-bgColor-hover: #1f3116;
  --label-lime-bgColor-rest: #141f0f;
  --label-lime-fgColor-active: #9fcc3e;
  --label-lime-fgColor-hover: #89ba36;
  --label-lime-fgColor-rest: #7dae37;
  --label-olive-bgColor-active: #374115;
  --label-olive-bgColor-hover: #252d10;
  --label-olive-bgColor-rest: #171e0b;
  --label-olive-fgColor-active: #cbc025;
  --label-olive-fgColor-hover: #b2af24;
  --label-olive-fgColor-rest: #a2a626;
  --label-orange-bgColor-active: #632f0d;
  --label-orange-bgColor-hover: #43200a;
  --label-orange-bgColor-rest: #311708;
  --label-orange-fgColor-active: #f6b06a;
  --label-orange-fgColor-hover: #f1933b;
  --label-orange-fgColor-rest: #ed8326;
  --label-pine-bgColor-active: #0e4430;
  --label-pine-bgColor-hover: #0b3224;
  --label-pine-bgColor-rest: #082119;
  --label-pine-fgColor-active: #1bda81;
  --label-pine-fgColor-hover: #1ac176;
  --label-pine-fgColor-rest: #1bb673;
  --label-pink-bgColor-active: #65244a;
  --label-pink-bgColor-hover: #451c35;
  --label-pink-bgColor-rest: #2d1524;
  --label-pink-fgColor-active: #f4a9cd;
  --label-pink-fgColor-hover: #ec8dbd;
  --label-pink-fgColor-rest: #e57bb2;
  --label-plum-bgColor-active: #5c1688;
  --label-plum-bgColor-hover: #40125e;
  --label-plum-bgColor-rest: #2a0e3f;
  --label-plum-fgColor-active: #e4a5fd;
  --label-plum-fgColor-hover: #d889fa;
  --label-plum-fgColor-rest: #d07ef7;
  --label-purple-bgColor-active: #481a9e;
  --label-purple-bgColor-hover: #31146b;
  --label-purple-bgColor-rest: #211047;
  --label-purple-fgColor-active: #d2affd;
  --label-purple-fgColor-hover: #c398fb;
  --label-purple-fgColor-rest: #b687f7;
  --label-red-bgColor-active: #790c20;
  --label-red-bgColor-hover: #58091a;
  --label-red-bgColor-rest: #3c0614;
  --label-red-fgColor-active: #f7adab;
  --label-red-fgColor-hover: #f48b8d;
  --label-red-fgColor-rest: #f27d83;
  --label-teal-bgColor-active: #0a464d;
  --label-teal-bgColor-hover: #073036;
  --label-teal-bgColor-rest: #041f25;
  --label-teal-fgColor-active: #24d6c4;
  --label-teal-fgColor-hover: #1fbdb2;
  --label-teal-fgColor-rest: #1cb0ab;
  --label-yellow-bgColor-active: #5a3702;
  --label-yellow-bgColor-hover: #3d2401;
  --label-yellow-bgColor-rest: #2e1a00;
  --label-yellow-fgColor-active: #edb431;
  --label-yellow-fgColor-hover: #df9e11;
  --label-yellow-fgColor-rest: #d3910d;
  --menu-bgColor-active: #151b23;
  --overlay-backdrop-bgColor: #21283066;
  --reactionButton-selected-bgColor-rest: #388bfd33;
  --reactionButton-selected-fgColor-hover: #79c0ff;
  --selectMenu-bgColor-active: #0c2d6b;
  --sideNav-bgColor-selected: #212830;
  --skeletonLoader-bgColor: #656c7633;
  --timelineBadge-bgColor: #212830;
  --topicTag-borderColor: #00000000;
  --underlineNav-borderColor-active: #f78166;
  --avatar-bgColor: #ffffff1a;
  --bgColor-black: #010409;
  --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
  --bgColor-closed-muted: var(--bgColor-danger-muted);
  --bgColor-inset: #010409;
  --bgColor-inverse: #ffffff;
  --bgColor-open-emphasis: var(--bgColor-success-emphasis);
  --bgColor-open-muted: var(--bgColor-success-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #1f6feb;
  --border-accent-muted: 0.0625rem solid #388bfd66;
  --border-attention-emphasis: 0.0625rem solid #9e6a03;
  --border-attention-muted: 0.0625rem solid #bb800966;
  --border-danger-emphasis: 0.0625rem solid #da3633;
  --border-danger-muted: 0.0625rem solid #f8514966;
  --border-default: 0.0625rem solid #3d444d;
  --border-disabled: 0.0625rem solid #656c761a;
  --border-done-emphasis: 0.0625rem solid #8957e5;
  --border-done-muted: 0.0625rem solid #ab7df866;
  --border-emphasis: 0.0625rem solid #656c76;
  --border-severe-emphasis: 0.0625rem solid #bd561d;
  --border-severe-muted: 0.0625rem solid #db6d2866;
  --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
  --border-sponsors-muted: 0.0625rem solid #db61a266;
  --border-success-emphasis: 0.0625rem solid #238636;
  --border-success-muted: 0.0625rem solid #2ea04366;
  --border-transparent: 0.0625rem solid #00000000;
  --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
  --borderColor-closed-muted: var(--borderColor-danger-muted);
  --borderColor-muted: #3d444db3;
  --borderColor-neutral-emphasis: var(--borderColor-emphasis);
  --borderColor-open-emphasis: var(--borderColor-success-emphasis);
  --borderColor-open-muted: var(--borderColor-success-muted);
  --borderColor-translucent: #ffffff26;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #f8514980;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--control-bgColor-hover);
  --button-outline-fgColor-active: #ffffff;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #ffffff1a;
  --button-primary-fgColor-disabled: #ffffff66;
  --buttonCounter-danger-bgColor-disabled: #da36330d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-fgColor-disabled: #f8514980;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
  --card-bgColor: var(--bgColor-muted);
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --color-ansi-white-bright: #ffffff;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-checked-fgColor-disabled: #010409;
  --control-danger-bgColor-active: #f8514966;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-fgColor-rest: var(--fgColor-default);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --controlTrack-fgColor-rest: var(--fgColor-muted);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --fgColor-black: #010409;
  --fgColor-closed: var(--fgColor-danger);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #010409;
  --fgColor-open: var(--fgColor-success);
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --overlay-bgColor: var(--bgColor-muted);
  --page-header-bgColor: var(--bgColor-default);
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --selectMenu-borderColor: var(--borderColor-default);
  --selection-bgColor: #1f6febb3;
  --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-inset: inset 0px 1px 0px 0px #0104093d;
  --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
  --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
  --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
  --tooltip-bgColor: var(--bgColor-emphasis);
  --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #3d444db3;
  --border-neutral-emphasis: 0.0625rem solid #656c76;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8957e5;
  --border-upsell-muted: 0.0625rem solid #ab7df866;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: var(--fgColor-white);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-bgColor-rest: var(--bgColor-inset);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --focus-outline: 2px solid #1f6feb;
  --overlay-borderColor: var(--borderColor-muted);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --border-neutral-muted: 0.0625rem solid #3d444db3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-active: var(--button-default-borderColor-rest);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
  --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
  --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
  --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
  --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
  --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="dark"],
  [data-color-mode="auto"][data-dark-theme="dark"] ::backdrop {
    --button-danger-bgColor-active: #d03533;
    --button-danger-fgColor-rest: #fa5e55;
    --button-danger-iconColor-rest: #fa5e55;
    --button-primary-bgColor-active: #2e9a40;
    --button-primary-bgColor-disabled: #105823;
    --button-primary-bgColor-hover: #29903b;
    --button-primary-borderColor-disabled: #105823;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --control-checked-bgColor-active: #3685f3;
    --control-checked-bgColor-hover: #2a7aef;
    --fgColor-accent: #4493f8;
    --reactionButton-selected-bgColor-hover: #3a8cfd5c;
    --avatar-shadow: 0px 0px 0px 2px #0d1117;
    --avatarStack-fade-bgColor-default: #3d444d;
    --avatarStack-fade-bgColor-muted: #2a313c;
    --bgColor-accent-emphasis: #1f6feb;
    --bgColor-accent-muted: #388bfd1a;
    --bgColor-attention-emphasis: #9e6a03;
    --bgColor-attention-muted: #bb800926;
    --bgColor-danger-emphasis: #da3633;
    --bgColor-danger-muted: #f851491a;
    --bgColor-default: #0d1117;
    --bgColor-disabled: #212830;
    --bgColor-done-emphasis: #8957e5;
    --bgColor-done-muted: #ab7df826;
    --bgColor-emphasis: #3d444d;
    --bgColor-muted: #151b23;
    --bgColor-neutral-emphasis: #656c76;
    --bgColor-neutral-muted: #656c7633;
    --bgColor-severe-emphasis: #bd561d;
    --bgColor-severe-muted: #db6d281a;
    --bgColor-sponsors-emphasis: #bf4b8a;
    --bgColor-sponsors-muted: #db61a21a;
    --bgColor-success-emphasis: #238636;
    --bgColor-success-muted: #2ea04326;
    --bgColor-transparent: #00000000;
    --borderColor-accent-emphasis: #1f6feb;
    --borderColor-accent-muted: #388bfd66;
    --borderColor-attention-emphasis: #9e6a03;
    --borderColor-attention-muted: #bb800966;
    --borderColor-danger-emphasis: #da3633;
    --borderColor-danger-muted: #f8514966;
    --borderColor-default: #3d444d;
    --borderColor-disabled: #656c761a;
    --borderColor-done-emphasis: #8957e5;
    --borderColor-done-muted: #ab7df866;
    --borderColor-emphasis: #656c76;
    --borderColor-severe-emphasis: #bd561d;
    --borderColor-severe-muted: #db6d2866;
    --borderColor-sponsors-emphasis: #bf4b8a;
    --borderColor-sponsors-muted: #db61a266;
    --borderColor-success-emphasis: #238636;
    --borderColor-success-muted: #2ea04366;
    --borderColor-transparent: #00000000;
    --button-danger-bgColor-hover: #b62324;
    --button-danger-shadow-selected: 0px 0px 0px 0px #000000;
    --button-default-shadow-resting: 0px 0px 0px 0px #000000;
    --button-inactive-bgColor: #262c36;
    --button-inactive-fgColor: #9198a1;
    --button-invisible-bgColor-disabled: #00000000;
    --button-invisible-borderColor-disabled: #00000000;
    --button-outline-bgColor-active: #0d419d;
    --button-outline-bgColor-rest: #f0f6fc;
    --button-outline-fgColor-disabled: #4493f880;
    --button-outline-fgColor-hover: #58a6ff;
    --button-outline-fgColor-rest: #388bfd;
    --button-outline-shadow-selected: 0px 0px 0px 0px #000000;
    --button-primary-shadow-selected: 0px 0px 0px 0px #000000;
    --button-star-iconColor: #e3b341;
    --buttonCounter-danger-bgColor-rest: #49020233;
    --buttonCounter-default-bgColor-rest: #2f3742;
    --buttonCounter-outline-bgColor-hover: #051d4d33;
    --buttonCounter-outline-bgColor-rest: #051d4d33;
    --buttonCounter-outline-fgColor-disabled: #4493f880;
    --buttonCounter-outline-fgColor-hover: #58a6ff;
    --buttonCounter-outline-fgColor-rest: #388bfd;
    --buttonCounter-primary-bgColor-rest: #04260f33;
    --codeMirror-syntax-fgColor-comment: #656c76;
    --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;
    --color-ansi-black: #2f3742;
    --color-ansi-black-bright: #656c76;
    --color-ansi-blue: #58a6ff;
    --color-ansi-blue-bright: #79c0ff;
    --color-ansi-gray: #656c76;
    --color-ansi-green: #3fb950;
    --color-ansi-green-bright: #56d364;
    --color-ansi-magenta: #be8fff;
    --color-ansi-magenta-bright: #d2a8ff;
    --color-ansi-red: #ff7b72;
    --color-ansi-red-bright: #ffa198;
    --color-ansi-white: #f0f6fc;
    --color-ansi-yellow: #d29922;
    --color-ansi-yellow-bright: #e3b341;
    --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-comment: #9198a1;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-markup-bold: #f0f6fc;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-italic: #f0f6fc;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
    --color-prettylights-syntax-variable: #ffa657;
    --contribution-default-bgColor-0: #151b23;
    --contribution-default-bgColor-1: #033a16;
    --contribution-default-bgColor-2: #196c2e;
    --contribution-default-bgColor-3: #2ea043;
    --contribution-default-bgColor-4: #56d364;
    --contribution-default-borderColor-0: #ffffff0d;
    --contribution-default-borderColor-1: #ffffff0d;
    --contribution-default-borderColor-2: #ffffff0d;
    --contribution-default-borderColor-3: #ffffff0d;
    --contribution-default-borderColor-4: #ffffff0d;
    --contribution-halloween-bgColor-1: #fac68f;
    --contribution-halloween-bgColor-2: #c46212;
    --contribution-halloween-bgColor-3: #984b10;
    --contribution-halloween-bgColor-4: #e3d04f;
    --contribution-winter-bgColor-1: #0c2d6b;
    --contribution-winter-bgColor-2: #1158c7;
    --contribution-winter-bgColor-3: #58a6ff;
    --contribution-winter-bgColor-4: #cae8ff;
    --control-bgColor-active: #2a313c;
    --control-bgColor-hover: #262c36;
    --control-bgColor-rest: #212830;
    --control-borderColor-selected: #f0f6fc;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-danger-fgColor-hover: #ff7b72;
    --control-transparent-bgColor-active: #656c7640;
    --control-transparent-bgColor-hover: #656c7633;
    --control-transparent-bgColor-rest: #00000000;
    --control-transparent-bgColor-selected: #656c761a;
    --control-transparent-borderColor-active: #00000000;
    --control-transparent-borderColor-hover: #00000000;
    --control-transparent-borderColor-rest: #00000000;
    --controlTrack-bgColor-active: #2f3742;
    --controlTrack-bgColor-hover: #2a313c;
    --controlTrack-bgColor-rest: #262c36;
    --counter-borderColor: #00000000;
    --data-auburn-color-emphasis: #a86f6b;
    --data-auburn-color-muted: #271817;
    --data-blue-color-emphasis: #0576ff;
    --data-blue-color-muted: #001a47;
    --data-brown-color-emphasis: #94774c;
    --data-brown-color-muted: #241c14;
    --data-coral-color-emphasis: #e1430e;
    --data-coral-color-muted: #351008;
    --data-gray-color-emphasis: #576270;
    --data-gray-color-muted: #1c1c1c;
    --data-green-color-emphasis: #2f6f37;
    --data-green-color-muted: #122117;
    --data-lemon-color-emphasis: #977b0c;
    --data-lemon-color-muted: #291d00;
    --data-lime-color-emphasis: #5f892f;
    --data-lime-color-muted: #141f0f;
    --data-olive-color-emphasis: #7a8321;
    --data-olive-color-muted: #171e0b;
    --data-orange-color-emphasis: #984b10;
    --data-orange-color-muted: #311708;
    --data-pine-color-emphasis: #18915e;
    --data-pine-color-muted: #082119;
    --data-pink-color-emphasis: #d34591;
    --data-pink-color-muted: #2d1524;
    --data-plum-color-emphasis: #b643ef;
    --data-plum-color-muted: #2a0e3f;
    --data-purple-color-emphasis: #975bf1;
    --data-purple-color-muted: #211047;
    --data-red-color-emphasis: #eb3342;
    --data-red-color-muted: #3c0614;
    --data-teal-color-emphasis: #106c70;
    --data-teal-color-muted: #041f25;
    --data-yellow-color-emphasis: #895906;
    --data-yellow-color-muted: #2e1a00;
    --diffBlob-additionNum-bgColor: #3fb9504d;
    --diffBlob-additionWord-bgColor: #2ea04366;
    --diffBlob-deletionNum-bgColor: #f851494d;
    --diffBlob-deletionWord-bgColor: #f8514966;
    --diffBlob-hunkNum-bgColor-rest: #0c2d6b;
    --display-auburn-bgColor-emphasis: #87534f;
    --display-auburn-bgColor-muted: #271817;
    --display-auburn-borderColor-emphasis: #a86f6b;
    --display-auburn-borderColor-muted: #3a2422;
    --display-auburn-fgColor: #bf9592;
    --display-auburn-scale-0: #271817;
    --display-auburn-scale-1: #3a2422;
    --display-auburn-scale-2: #543331;
    --display-auburn-scale-3: #6d4340;
    --display-auburn-scale-4: #87534f;
    --display-auburn-scale-5: #a86f6b;
    --display-auburn-scale-6: #bf9592;
    --display-auburn-scale-7: #c6a19f;
    --display-auburn-scale-8: #d4b7b5;
    --display-auburn-scale-9: #dfcac8;
    --display-blue-bgColor-emphasis: #005bd1;
    --display-blue-bgColor-muted: #001a47;
    --display-blue-borderColor-emphasis: #0576ff;
    --display-blue-borderColor-muted: #002766;
    --display-blue-fgColor: #4da0ff;
    --display-blue-scale-0: #001a47;
    --display-blue-scale-1: #002766;
    --display-blue-scale-2: #00378a;
    --display-blue-scale-3: #0046a8;
    --display-blue-scale-4: #005bd1;
    --display-blue-scale-5: #0576ff;
    --display-blue-scale-6: #4da0ff;
    --display-blue-scale-7: #61adff;
    --display-blue-scale-8: #85c2ff;
    --display-blue-scale-9: #a3d3ff;
    --display-brown-bgColor-emphasis: #755e3e;
    --display-brown-bgColor-muted: #241c14;
    --display-brown-borderColor-emphasis: #94774c;
    --display-brown-borderColor-muted: #342a1d;
    --display-brown-fgColor: #b69a6d;
    --display-brown-scale-0: #241c14;
    --display-brown-scale-1: #342a1d;
    --display-brown-scale-2: #483a28;
    --display-brown-scale-3: #5d4a32;
    --display-brown-scale-4: #755e3e;
    --display-brown-scale-5: #94774c;
    --display-brown-scale-6: #b69a6d;
    --display-brown-scale-7: #bfa77d;
    --display-brown-scale-8: #cdbb98;
    --display-brown-scale-9: #dbceb3;
    --display-coral-bgColor-emphasis: #c31328;
    --display-coral-bgColor-muted: #3c0614;
    --display-coral-borderColor-emphasis: #eb3342;
    --display-coral-borderColor-muted: #58091a;
    --display-coral-fgColor: #f27d83;
    --display-coral-scale-0: #351008;
    --display-coral-scale-1: #51180b;
    --display-coral-scale-2: #72220d;
    --display-coral-scale-3: #902a0e;
    --display-coral-scale-4: #b3350f;
    --display-coral-scale-5: #e1430e;
    --display-coral-scale-6: #f7794b;
    --display-coral-scale-7: #fa8c61;
    --display-coral-scale-8: #fdaa86;
    --display-coral-scale-9: #ffc0a3;
    --display-cyan-bgColor-emphasis: #036a8c;
    --display-cyan-bgColor-muted: #001f29;
    --display-cyan-borderColor-emphasis: #0587b3;
    --display-cyan-borderColor-muted: #002e3d;
    --display-cyan-fgColor: #07ace4;
    --display-cyan-scale-0: #001f29;
    --display-cyan-scale-1: #002e3d;
    --display-cyan-scale-2: #014156;
    --display-cyan-scale-3: #02536f;
    --display-cyan-scale-4: #036a8c;
    --display-cyan-scale-5: #0587b3;
    --display-cyan-scale-6: #07ace4;
    --display-cyan-scale-7: #09b7f1;
    --display-cyan-scale-8: #45cbf7;
    --display-cyan-scale-9: #80dbf9;
    --display-gray-bgColor-emphasis: #576270;
    --display-gray-bgColor-muted: #1c1c1c;
    --display-gray-borderColor-emphasis: #6e7f96;
    --display-gray-borderColor-muted: #2a2b2d;
    --display-gray-fgColor: #92a1b5;
    --display-gray-scale-0: #1c1c1c;
    --display-gray-scale-1: #2a2b2d;
    --display-gray-scale-2: #393d41;
    --display-gray-scale-3: #474e57;
    --display-gray-scale-4: #576270;
    --display-gray-scale-5: #6e7f96;
    --display-gray-scale-6: #92a1b5;
    --display-gray-scale-7: #9babbf;
    --display-gray-scale-8: #b3c0d1;
    --display-gray-scale-9: #c4cfde;
    --display-green-bgColor-emphasis: #2f6f37;
    --display-green-bgColor-muted: #122117;
    --display-green-borderColor-emphasis: #388f3f;
    --display-green-borderColor-muted: #182f1f;
    --display-green-fgColor: #41b445;
    --display-green-scale-0: #122117;
    --display-green-scale-1: #182f1f;
    --display-green-scale-2: #214529;
    --display-green-scale-3: #285830;
    --display-green-scale-4: #2f6f37;
    --display-green-scale-5: #388f3f;
    --display-green-scale-6: #41b445;
    --display-green-scale-7: #46c144;
    --display-green-scale-8: #75d36f;
    --display-green-scale-9: #99e090;
    --display-indigo-bgColor-emphasis: #514ed4;
    --display-indigo-bgColor-muted: #1b183f;
    --display-indigo-borderColor-emphasis: #7070e1;
    --display-indigo-borderColor-muted: #25215f;
    --display-indigo-fgColor: #9899ec;
    --display-indigo-scale-0: #1b183f;
    --display-indigo-scale-1: #25215f;
    --display-indigo-scale-2: #312c90;
    --display-indigo-scale-3: #3935c0;
    --display-indigo-scale-4: #514ed4;
    --display-indigo-scale-5: #7070e1;
    --display-indigo-scale-6: #9899ec;
    --display-indigo-scale-7: #a2a5f1;
    --display-indigo-scale-8: #b7baf6;
    --display-indigo-scale-9: #c8cbf9;
    --display-lemon-bgColor-emphasis: #786008;
    --display-lemon-bgColor-muted: #291d00;
    --display-lemon-borderColor-emphasis: #977b0c;
    --display-lemon-borderColor-muted: #372901;
    --display-lemon-fgColor: #ba9b12;
    --display-lemon-scale-0: #291d00;
    --display-lemon-scale-1: #372901;
    --display-lemon-scale-2: #4f3c02;
    --display-lemon-scale-3: #614c05;
    --display-lemon-scale-4: #786008;
    --display-lemon-scale-5: #977b0c;
    --display-lemon-scale-6: #ba9b12;
    --display-lemon-scale-7: #c4a717;
    --display-lemon-scale-8: #d7bc1d;
    --display-lemon-scale-9: #e3d04f;
    --display-lime-bgColor-emphasis: #496c28;
    --display-lime-bgColor-muted: #141f0f;
    --display-lime-borderColor-emphasis: #5f892f;
    --display-lime-borderColor-muted: #1f3116;
    --display-lime-fgColor: #7dae37;
    --display-lime-scale-0: #141f0f;
    --display-lime-scale-1: #1f3116;
    --display-lime-scale-2: #2c441d;
    --display-lime-scale-3: #375421;
    --display-lime-scale-4: #496c28;
    --display-lime-scale-5: #5f892f;
    --display-lime-scale-6: #7dae37;
    --display-lime-scale-7: #89ba36;
    --display-lime-scale-8: #9fcc3e;
    --display-lime-scale-9: #bcda67;
    --display-olive-bgColor-emphasis: #5e681d;
    --display-olive-bgColor-muted: #171e0b;
    --display-olive-borderColor-emphasis: #7a8321;
    --display-olive-borderColor-muted: #252d10;
    --display-olive-fgColor: #a2a626;
    --display-olive-scale-0: #171e0b;
    --display-olive-scale-1: #252d10;
    --display-olive-scale-2: #374115;
    --display-olive-scale-3: #485219;
    --display-olive-scale-4: #5e681d;
    --display-olive-scale-5: #7a8321;
    --display-olive-scale-6: #a2a626;
    --display-olive-scale-7: #b2af24;
    --display-olive-scale-8: #cbc025;
    --display-olive-scale-9: #e2d04b;
    --display-orange-bgColor-emphasis: #984b10;
    --display-orange-bgColor-muted: #311708;
    --display-orange-borderColor-emphasis: #c46212;
    --display-orange-borderColor-muted: #43200a;
    --display-orange-fgColor: #ed8326;
    --display-orange-scale-0: #311708;
    --display-orange-scale-1: #43200a;
    --display-orange-scale-2: #632f0d;
    --display-orange-scale-3: #7b3c0e;
    --display-orange-scale-4: #984b10;
    --display-orange-scale-5: #c46212;
    --display-orange-scale-6: #ed8326;
    --display-orange-scale-7: #f1933b;
    --display-orange-scale-8: #f6b06a;
    --display-orange-scale-9: #fac68f;
    --display-pine-bgColor-emphasis: #14714c;
    --display-pine-bgColor-muted: #082119;
    --display-pine-borderColor-emphasis: #18915e;
    --display-pine-borderColor-muted: #0b3224;
    --display-pine-fgColor: #1bb673;
    --display-pine-scale-0: #082119;
    --display-pine-scale-1: #0b3224;
    --display-pine-scale-2: #0e4430;
    --display-pine-scale-3: #115a3e;
    --display-pine-scale-4: #14714c;
    --display-pine-scale-5: #18915e;
    --display-pine-scale-6: #1bb673;
    --display-pine-scale-7: #1ac176;
    --display-pine-scale-8: #1bda81;
    --display-pine-scale-9: #3eea97;
    --display-pink-bgColor-emphasis: #ac2f74;
    --display-pink-bgColor-muted: #2d1524;
    --display-pink-borderColor-emphasis: #d34591;
    --display-pink-borderColor-muted: #451c35;
    --display-pink-fgColor: #e57bb2;
    --display-pink-scale-0: #2d1524;
    --display-pink-scale-1: #451c35;
    --display-pink-scale-2: #65244a;
    --display-pink-scale-3: #842a5d;
    --display-pink-scale-4: #ac2f74;
    --display-pink-scale-5: #d34591;
    --display-pink-scale-6: #e57bb2;
    --display-pink-scale-7: #ec8dbd;
    --display-pink-scale-8: #f4a9cd;
    --display-pink-scale-9: #f9bed9;
    --display-plum-bgColor-emphasis: #9518d8;
    --display-plum-bgColor-muted: #2a0e3f;
    --display-plum-borderColor-emphasis: #b643ef;
    --display-plum-borderColor-muted: #40125e;
    --display-plum-fgColor: #d07ef7;
    --display-plum-scale-0: #2a0e3f;
    --display-plum-scale-1: #40125e;
    --display-plum-scale-2: #5c1688;
    --display-plum-scale-3: #7517ab;
    --display-plum-scale-4: #9518d8;
    --display-plum-scale-5: #b643ef;
    --display-plum-scale-6: #d07ef7;
    --display-plum-scale-7: #d889fa;
    --display-plum-scale-8: #e4a5fd;
    --display-plum-scale-9: #edbdff;
    --display-purple-bgColor-emphasis: #7730e8;
    --display-purple-bgColor-muted: #211047;
    --display-purple-borderColor-emphasis: #975bf1;
    --display-purple-borderColor-muted: #31146b;
    --display-purple-fgColor: #b687f7;
    --display-purple-scale-0: #211047;
    --display-purple-scale-1: #31146b;
    --display-purple-scale-2: #481a9e;
    --display-purple-scale-3: #5b1cca;
    --display-purple-scale-4: #7730e8;
    --display-purple-scale-5: #975bf1;
    --display-purple-scale-6: #b687f7;
    --display-purple-scale-7: #c398fb;
    --display-purple-scale-8: #d2affd;
    --display-purple-scale-9: #e1c7ff;
    --display-red-bgColor-emphasis: #c31328;
    --display-red-bgColor-muted: #3c0614;
    --display-red-borderColor-emphasis: #eb3342;
    --display-red-borderColor-muted: #58091a;
    --display-red-fgColor: #f27d83;
    --display-red-scale-0: #3c0614;
    --display-red-scale-1: #58091a;
    --display-red-scale-2: #790c20;
    --display-red-scale-3: #990f24;
    --display-red-scale-4: #c31328;
    --display-red-scale-5: #eb3342;
    --display-red-scale-6: #f27d83;
    --display-red-scale-7: #f48b8d;
    --display-red-scale-8: #f7adab;
    --display-red-scale-9: #f9c1be;
    --display-teal-bgColor-emphasis: #106c70;
    --display-teal-bgColor-muted: #041f25;
    --display-teal-borderColor-emphasis: #158a8a;
    --display-teal-borderColor-muted: #073036;
    --display-teal-fgColor: #1cb0ab;
    --display-teal-scale-0: #041f25;
    --display-teal-scale-1: #073036;
    --display-teal-scale-2: #0a464d;
    --display-teal-scale-3: #0c555a;
    --display-teal-scale-4: #106c70;
    --display-teal-scale-5: #158a8a;
    --display-teal-scale-6: #1cb0ab;
    --display-teal-scale-7: #1fbdb2;
    --display-teal-scale-8: #24d6c4;
    --display-teal-scale-9: #5fe3d1;
    --display-yellow-bgColor-emphasis: #895906;
    --display-yellow-bgColor-muted: #2e1a00;
    --display-yellow-borderColor-emphasis: #aa7109;
    --display-yellow-borderColor-muted: #3d2401;
    --display-yellow-fgColor: #d3910d;
    --display-yellow-scale-0: #2e1a00;
    --display-yellow-scale-1: #3d2401;
    --display-yellow-scale-2: #5a3702;
    --display-yellow-scale-3: #6d4403;
    --display-yellow-scale-4: #895906;
    --display-yellow-scale-5: #aa7109;
    --display-yellow-scale-6: #d3910d;
    --display-yellow-scale-7: #df9e11;
    --display-yellow-scale-8: #edb431;
    --display-yellow-scale-9: #f0ca6a;
    --fgColor-attention: #d29922;
    --fgColor-danger: #f85149;
    --fgColor-default: #f0f6fc;
    --fgColor-disabled: #656c7699;
    --fgColor-done: #ab7df8;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-muted: #9198a1;
    --fgColor-neutral: #9198a1;
    --fgColor-severe: #db6d28;
    --fgColor-sponsors: #db61a2;
    --fgColor-success: #3fb950;
    --header-bgColor: #151b23f2;
    --header-borderColor-divider: #656c76;
    --header-fgColor-logo: #f0f6fc;
    --headerSearch-bgColor: #0d1117;
    --headerSearch-borderColor: #2a313c;
    --highlight-neutral-bgColor: #d2992266;
    --label-auburn-bgColor-active: #543331;
    --label-auburn-bgColor-hover: #3a2422;
    --label-auburn-bgColor-rest: #271817;
    --label-auburn-fgColor-active: #d4b7b5;
    --label-auburn-fgColor-hover: #c6a19f;
    --label-auburn-fgColor-rest: #bf9592;
    --label-blue-bgColor-active: #00378a;
    --label-blue-bgColor-hover: #002766;
    --label-blue-bgColor-rest: #001a47;
    --label-blue-fgColor-active: #85c2ff;
    --label-blue-fgColor-hover: #61adff;
    --label-blue-fgColor-rest: #4da0ff;
    --label-brown-bgColor-active: #483a28;
    --label-brown-bgColor-hover: #342a1d;
    --label-brown-bgColor-rest: #241c14;
    --label-brown-fgColor-active: #cdbb98;
    --label-brown-fgColor-hover: #bfa77d;
    --label-brown-fgColor-rest: #b69a6d;
    --label-coral-bgColor-active: #72220d;
    --label-coral-bgColor-hover: #51180b;
    --label-coral-bgColor-rest: #351008;
    --label-coral-fgColor-active: #fdaa86;
    --label-coral-fgColor-hover: #fa8c61;
    --label-coral-fgColor-rest: #f7794b;
    --label-cyan-bgColor-active: #014156;
    --label-cyan-bgColor-hover: #002e3d;
    --label-cyan-bgColor-rest: #001f29;
    --label-cyan-fgColor-active: #45cbf7;
    --label-cyan-fgColor-hover: #09b7f1;
    --label-cyan-fgColor-rest: #07ace4;
    --label-gray-bgColor-active: #393d41;
    --label-gray-bgColor-hover: #2a2b2d;
    --label-gray-bgColor-rest: #1c1c1c;
    --label-gray-fgColor-active: #b3c0d1;
    --label-gray-fgColor-hover: #9babbf;
    --label-gray-fgColor-rest: #92a1b5;
    --label-green-bgColor-active: #214529;
    --label-green-bgColor-hover: #182f1f;
    --label-green-bgColor-rest: #122117;
    --label-green-fgColor-active: #75d36f;
    --label-green-fgColor-hover: #46c144;
    --label-green-fgColor-rest: #41b445;
    --label-indigo-bgColor-active: #312c90;
    --label-indigo-bgColor-hover: #25215f;
    --label-indigo-bgColor-rest: #1b183f;
    --label-indigo-fgColor-active: #b7baf6;
    --label-indigo-fgColor-hover: #a2a5f1;
    --label-indigo-fgColor-rest: #9899ec;
    --label-lemon-bgColor-active: #4f3c02;
    --label-lemon-bgColor-hover: #372901;
    --label-lemon-bgColor-rest: #291d00;
    --label-lemon-fgColor-active: #d7bc1d;
    --label-lemon-fgColor-hover: #c4a717;
    --label-lemon-fgColor-rest: #ba9b12;
    --label-lime-bgColor-active: #2c441d;
    --label-lime-bgColor-hover: #1f3116;
    --label-lime-bgColor-rest: #141f0f;
    --label-lime-fgColor-active: #9fcc3e;
    --label-lime-fgColor-hover: #89ba36;
    --label-lime-fgColor-rest: #7dae37;
    --label-olive-bgColor-active: #374115;
    --label-olive-bgColor-hover: #252d10;
    --label-olive-bgColor-rest: #171e0b;
    --label-olive-fgColor-active: #cbc025;
    --label-olive-fgColor-hover: #b2af24;
    --label-olive-fgColor-rest: #a2a626;
    --label-orange-bgColor-active: #632f0d;
    --label-orange-bgColor-hover: #43200a;
    --label-orange-bgColor-rest: #311708;
    --label-orange-fgColor-active: #f6b06a;
    --label-orange-fgColor-hover: #f1933b;
    --label-orange-fgColor-rest: #ed8326;
    --label-pine-bgColor-active: #0e4430;
    --label-pine-bgColor-hover: #0b3224;
    --label-pine-bgColor-rest: #082119;
    --label-pine-fgColor-active: #1bda81;
    --label-pine-fgColor-hover: #1ac176;
    --label-pine-fgColor-rest: #1bb673;
    --label-pink-bgColor-active: #65244a;
    --label-pink-bgColor-hover: #451c35;
    --label-pink-bgColor-rest: #2d1524;
    --label-pink-fgColor-active: #f4a9cd;
    --label-pink-fgColor-hover: #ec8dbd;
    --label-pink-fgColor-rest: #e57bb2;
    --label-plum-bgColor-active: #5c1688;
    --label-plum-bgColor-hover: #40125e;
    --label-plum-bgColor-rest: #2a0e3f;
    --label-plum-fgColor-active: #e4a5fd;
    --label-plum-fgColor-hover: #d889fa;
    --label-plum-fgColor-rest: #d07ef7;
    --label-purple-bgColor-active: #481a9e;
    --label-purple-bgColor-hover: #31146b;
    --label-purple-bgColor-rest: #211047;
    --label-purple-fgColor-active: #d2affd;
    --label-purple-fgColor-hover: #c398fb;
    --label-purple-fgColor-rest: #b687f7;
    --label-red-bgColor-active: #790c20;
    --label-red-bgColor-hover: #58091a;
    --label-red-bgColor-rest: #3c0614;
    --label-red-fgColor-active: #f7adab;
    --label-red-fgColor-hover: #f48b8d;
    --label-red-fgColor-rest: #f27d83;
    --label-teal-bgColor-active: #0a464d;
    --label-teal-bgColor-hover: #073036;
    --label-teal-bgColor-rest: #041f25;
    --label-teal-fgColor-active: #24d6c4;
    --label-teal-fgColor-hover: #1fbdb2;
    --label-teal-fgColor-rest: #1cb0ab;
    --label-yellow-bgColor-active: #5a3702;
    --label-yellow-bgColor-hover: #3d2401;
    --label-yellow-bgColor-rest: #2e1a00;
    --label-yellow-fgColor-active: #edb431;
    --label-yellow-fgColor-hover: #df9e11;
    --label-yellow-fgColor-rest: #d3910d;
    --menu-bgColor-active: #151b23;
    --overlay-backdrop-bgColor: #21283066;
    --reactionButton-selected-bgColor-rest: #388bfd33;
    --reactionButton-selected-fgColor-hover: #79c0ff;
    --selectMenu-bgColor-active: #0c2d6b;
    --sideNav-bgColor-selected: #212830;
    --skeletonLoader-bgColor: #656c7633;
    --timelineBadge-bgColor: #212830;
    --topicTag-borderColor: #00000000;
    --underlineNav-borderColor-active: #f78166;
    --avatar-bgColor: #ffffff1a;
    --bgColor-black: #010409;
    --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
    --bgColor-closed-muted: var(--bgColor-danger-muted);
    --bgColor-inset: #010409;
    --bgColor-inverse: #ffffff;
    --bgColor-open-emphasis: var(--bgColor-success-emphasis);
    --bgColor-open-muted: var(--bgColor-success-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #1f6feb;
    --border-accent-muted: 0.0625rem solid #388bfd66;
    --border-attention-emphasis: 0.0625rem solid #9e6a03;
    --border-attention-muted: 0.0625rem solid #bb800966;
    --border-danger-emphasis: 0.0625rem solid #da3633;
    --border-danger-muted: 0.0625rem solid #f8514966;
    --border-default: 0.0625rem solid #3d444d;
    --border-disabled: 0.0625rem solid #656c761a;
    --border-done-emphasis: 0.0625rem solid #8957e5;
    --border-done-muted: 0.0625rem solid #ab7df866;
    --border-emphasis: 0.0625rem solid #656c76;
    --border-severe-emphasis: 0.0625rem solid #bd561d;
    --border-severe-muted: 0.0625rem solid #db6d2866;
    --border-sponsors-emphasis: 0.0625rem solid #bf4b8a;
    --border-sponsors-muted: 0.0625rem solid #db61a266;
    --border-success-emphasis: 0.0625rem solid #238636;
    --border-success-muted: 0.0625rem solid #2ea04366;
    --border-transparent: 0.0625rem solid #00000000;
    --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
    --borderColor-closed-muted: var(--borderColor-danger-muted);
    --borderColor-muted: #3d444db3;
    --borderColor-neutral-emphasis: var(--borderColor-emphasis);
    --borderColor-open-emphasis: var(--borderColor-success-emphasis);
    --borderColor-open-muted: var(--borderColor-success-muted);
    --borderColor-translucent: #ffffff26;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #f8514980;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--control-bgColor-hover);
    --button-outline-fgColor-active: #ffffff;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #ffffff1a;
    --button-primary-fgColor-disabled: #ffffff66;
    --buttonCounter-danger-bgColor-disabled: #da36330d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-fgColor-disabled: #f8514980;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-danger-fgColor-rest: var(--fgColor-danger);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #1f6feb0d;
    --card-bgColor: var(--bgColor-muted);
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --color-ansi-white-bright: #ffffff;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-checked-fgColor-disabled: #010409;
    --control-danger-bgColor-active: #f8514966;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-fgColor-rest: var(--fgColor-default);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --controlTrack-fgColor-rest: var(--fgColor-muted);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --fgColor-black: #010409;
    --fgColor-closed: var(--fgColor-danger);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #010409;
    --fgColor-open: var(--fgColor-success);
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --overlay-bgColor: var(--bgColor-muted);
    --page-header-bgColor: var(--bgColor-default);
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --selectMenu-borderColor: var(--borderColor-default);
    --selection-bgColor: #1f6febb3;
    --shadow-floating-legacy: 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-inset: inset 0px 1px 0px 0px #0104093d;
    --shadow-resting-medium: 0px 1px 1px 0px #01040966, 0px 3px 6px 0px #010409cc;
    --shadow-resting-small: 0px 1px 1px 0px #01040999, 0px 1px 3px 0px #01040999;
    --shadow-resting-xsmall: 0px 1px 1px 0px #010409cc;
    --tooltip-bgColor: var(--bgColor-emphasis);
    --treeViewItem-leadingVisual-iconColor-rest: var(--fgColor-muted);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #3d444db3;
    --border-neutral-emphasis: 0.0625rem solid #656c76;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8957e5;
    --border-upsell-muted: 0.0625rem solid #ab7df866;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: var(--fgColor-white);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-bgColor-rest: var(--bgColor-inset);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --focus-outline: 2px solid #1f6feb;
    --overlay-borderColor: var(--borderColor-muted);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --border-neutral-muted: 0.0625rem solid #3d444db3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-active: var(--button-default-borderColor-rest);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --shadow-floating-large: 0px 0px 0px 1px #3d444d, 0px 24px 48px 0px #010409;
    --shadow-floating-medium: 0px 0px 0px 1px #3d444d, 0px 8px 16px -4px #01040966, 0px 4px 32px -4px #01040966, 0px 24px 48px -12px #01040966, 0px 48px 96px -24px #01040966;
    --shadow-floating-small: 0px 0px 0px 1px #3d444d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
    --shadow-floating-xlarge: 0px 0px 0px 1px #3d444d, 0px 32px 64px 0px #010409;
    --underlineNav-borderColor-hover: var(--borderColor-neutral-muted);
    --button-outline-borderColor-hover: var(--button-default-borderColor-hover);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --button-danger-bgColor-active: #7e2f00;
  --button-outline-bgColor-active: #0757ba;
  --button-primary-bgColor-active: #075fc8;
  --button-primary-bgColor-disabled: #92caff;
  --button-primary-bgColor-hover: #0864d1;
  --buttonCounter-danger-fgColor-rest: #c21c2c;
  --color-ansi-cyan: #1b7c83;
  --color-ansi-cyan-bright: #3192aa;
  --control-checked-bgColor-active: #0757ba;
  --control-checked-bgColor-hover: #0860ca;
  --reactionButton-selected-bgColor-hover: #caecff;
  --avatarStack-fade-bgColor-default: #c8d1da;
  --avatarStack-fade-bgColor-muted: #dae0e7;
  --bgColor-accent-emphasis: #0969da;
  --bgColor-accent-muted: #ddf4ff;
  --bgColor-attention-emphasis: #9a6700;
  --bgColor-attention-muted: #fff8c5;
  --bgColor-danger-emphasis: #bc4c00;
  --bgColor-danger-muted: #fff1e5;
  --bgColor-disabled: #eff2f5;
  --bgColor-done-emphasis: #8250df;
  --bgColor-done-muted: #fbefff;
  --bgColor-emphasis: #25292e;
  --bgColor-inverse: #25292e;
  --bgColor-muted: #f6f8fa;
  --bgColor-neutral-emphasis: #59636e;
  --bgColor-neutral-muted: #818b981f;
  --bgColor-open-emphasis: #bc4c00;
  --bgColor-open-muted: #fff1e5;
  --bgColor-severe-emphasis: #bc4c00;
  --bgColor-severe-muted: #fff1e5;
  --bgColor-sponsors-emphasis: #bf3989;
  --bgColor-sponsors-muted: #ffeff7;
  --bgColor-success-emphasis: #0969da;
  --bgColor-success-muted: #ddf4ff;
  --bgColor-transparent: #ffffff00;
  --borderColor-accent-emphasis: #0969da;
  --borderColor-accent-muted: #54aeff66;
  --borderColor-attention-emphasis: #9a6700;
  --borderColor-attention-muted: #d4a72c66;
  --borderColor-danger-emphasis: #bc4c00;
  --borderColor-danger-muted: #fff1e5;
  --borderColor-default: #d1d9e0;
  --borderColor-disabled: #818b981a;
  --borderColor-done-emphasis: #8250df;
  --borderColor-done-muted: #c297ff66;
  --borderColor-emphasis: #818b98;
  --borderColor-neutral-emphasis: #59636e;
  --borderColor-open-emphasis: #bc4c00;
  --borderColor-open-muted: #fb8f4466;
  --borderColor-severe-emphasis: #bc4c00;
  --borderColor-severe-muted: #fb8f4466;
  --borderColor-sponsors-emphasis: #bf3989;
  --borderColor-sponsors-muted: #ff80c866;
  --borderColor-success-emphasis: #0969da;
  --borderColor-success-muted: #ddf4ff;
  --borderColor-transparent: #ffffff00;
  --button-danger-bgColor-hover: #953800;
  --button-danger-shadow-selected: inset 0px 1px 0px 0px #47170033;
  --button-inactive-bgColor: #e6eaef;
  --button-inactive-fgColor: #59636e;
  --button-invisible-bgColor-disabled: #ffffff00;
  --button-invisible-borderColor-disabled: #ffffff00;
  --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
  --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
  --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d;
  --button-star-iconColor: #eac54f;
  --buttonCounter-outline-fgColor-rest: #0550ae;
  --buttonCounter-primary-bgColor-rest: #002d1133;
  --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;
  --color-ansi-black-bright: #393f46;
  --color-ansi-blue: #0969da;
  --color-ansi-blue-bright: #218bff;
  --color-ansi-gray: #59636e;
  --color-ansi-green: #0550ae;
  --color-ansi-green-bright: #0969da;
  --color-ansi-magenta: #8250df;
  --color-ansi-magenta-bright: #a475f9;
  --color-ansi-red: #bc4c00;
  --color-ansi-red-bright: #953800;
  --color-ansi-white: #59636e;
  --color-ansi-white-bright: #818b98;
  --color-ansi-yellow: #4d2d00;
  --color-ansi-yellow-bright: #633c01;
  --color-prettylights-syntax-brackethighlighter-angle: #59636e;
  --color-prettylights-syntax-brackethighlighter-unmatched: #762c00;
  --color-prettylights-syntax-carriage-return-bg: #bc4c00;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-comment: #59636e;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-prettylights-syntax-entity: #6639ba;
  --color-prettylights-syntax-entity-tag: #0550ae;
  --color-prettylights-syntax-invalid-illegal-bg: #762c00;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-keyword: #bc4c00;
  --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
  --color-prettylights-syntax-markup-changed-text: #953800;
  --color-prettylights-syntax-markup-deleted-bg: #fff1e5;
  --color-prettylights-syntax-markup-deleted-text: #762c00;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
  --color-prettylights-syntax-markup-inserted-bg: #ddf4ff;
  --color-prettylights-syntax-markup-inserted-text: #0550ae;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-string-regexp: #0550ae;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
  --color-prettylights-syntax-variable: #953800;
  --contribution-default-bgColor-0: #eff2f5;
  --contribution-default-bgColor-1: #aceebb;
  --contribution-default-bgColor-2: #4ac26b;
  --contribution-default-bgColor-3: #2da44e;
  --contribution-default-bgColor-4: #116329;
  --contribution-default-borderColor-0: #1f23280d;
  --contribution-default-borderColor-1: #1f23280d;
  --contribution-default-borderColor-2: #1f23280d;
  --contribution-default-borderColor-3: #1f23280d;
  --contribution-default-borderColor-4: #1f23280d;
  --contribution-halloween-bgColor-1: #f0db3d;
  --contribution-halloween-bgColor-2: #ffd642;
  --contribution-halloween-bgColor-3: #f68c41;
  --contribution-halloween-bgColor-4: #1f2328;
  --contribution-winter-bgColor-1: #b6e3ff;
  --contribution-winter-bgColor-2: #54aeff;
  --contribution-winter-bgColor-3: #0969da;
  --contribution-winter-bgColor-4: #0a3069;
  --control-bgColor-active: #e6eaef;
  --control-bgColor-hover: #eff2f5;
  --control-bgColor-rest: #f6f8fa;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-fgColor-rest: #25292e;
  --control-transparent-bgColor-active: #818b9826;
  --control-transparent-bgColor-hover: #818b981a;
  --control-transparent-bgColor-rest: #ffffff00;
  --control-transparent-bgColor-selected: #818b9826;
  --control-transparent-borderColor-active: #ffffff00;
  --control-transparent-borderColor-hover: #ffffff00;
  --control-transparent-borderColor-rest: #ffffff00;
  --controlTrack-bgColor-active: #dae0e7;
  --controlTrack-bgColor-hover: #e0e6eb;
  --controlTrack-bgColor-rest: #e6eaef;
  --controlTrack-fgColor-rest: #59636e;
  --counter-borderColor: #ffffff00;
  --data-auburn-color-emphasis: #9d615c;
  --data-auburn-color-muted: #f2e9e9;
  --data-blue-color-emphasis: #006edb;
  --data-blue-color-muted: #d1f0ff;
  --data-brown-color-emphasis: #856d4c;
  --data-brown-color-muted: #eeeae2;
  --data-coral-color-emphasis: #d43511;
  --data-coral-color-muted: #ffe5db;
  --data-gray-color-emphasis: #808fa3;
  --data-gray-color-muted: #e8ecf2;
  --data-green-color-emphasis: #30a147;
  --data-green-color-muted: #caf7ca;
  --data-lemon-color-emphasis: #866e04;
  --data-lemon-color-muted: #f7eea1;
  --data-lime-color-emphasis: #527a29;
  --data-lime-color-muted: #e3f2b5;
  --data-olive-color-emphasis: #64762d;
  --data-olive-color-muted: #f0f0ad;
  --data-orange-color-emphasis: #eb670f;
  --data-orange-color-muted: #ffe7d1;
  --data-pine-color-emphasis: #167e53;
  --data-pine-color-muted: #bff8db;
  --data-pink-color-emphasis: #ce2c85;
  --data-pink-color-muted: #ffe5f1;
  --data-plum-color-emphasis: #a830e8;
  --data-plum-color-muted: #f8e5ff;
  --data-purple-color-emphasis: #894ceb;
  --data-purple-color-muted: #f1e5ff;
  --data-red-color-emphasis: #df0c24;
  --data-red-color-muted: #ffe2e0;
  --data-teal-color-emphasis: #179b9b;
  --data-teal-color-muted: #c7f5ef;
  --data-yellow-color-emphasis: #b88700;
  --data-yellow-color-muted: #ffec9e;
  --diffBlob-additionNum-bgColor: #b6e3ff;
  --diffBlob-additionWord-bgColor: #b6e3ff;
  --diffBlob-deletionNum-bgColor: #ffd8b5;
  --diffBlob-deletionWord-bgColor: #ffd8b5;
  --diffBlob-hunkLine-bgColor: #f6f8fa;
  --diffBlob-hunkNum-bgColor-hover: #c8d1da;
  --diffBlob-hunkNum-bgColor-rest: #e6eaef;
  --display-auburn-bgColor-emphasis: #9d615c;
  --display-auburn-bgColor-muted: #f2e9e9;
  --display-auburn-borderColor-emphasis: #9d615c;
  --display-auburn-borderColor-muted: #e6d6d5;
  --display-auburn-fgColor: #8a5551;
  --display-auburn-scale-0: #f2e9e9;
  --display-auburn-scale-1: #e6d6d5;
  --display-auburn-scale-2: #d4b7b5;
  --display-auburn-scale-3: #c59e9b;
  --display-auburn-scale-4: #b4827e;
  --display-auburn-scale-5: #9d615c;
  --display-auburn-scale-6: #8a5551;
  --display-auburn-scale-7: #744744;
  --display-auburn-scale-8: #5d3937;
  --display-auburn-scale-9: #432928;
  --display-blue-bgColor-emphasis: #006edb;
  --display-blue-bgColor-muted: #d1f0ff;
  --display-blue-borderColor-emphasis: #006edb;
  --display-blue-borderColor-muted: #ade1ff;
  --display-blue-fgColor: #005fcc;
  --display-blue-scale-0: #d1f0ff;
  --display-blue-scale-1: #ade1ff;
  --display-blue-scale-2: #75c8ff;
  --display-blue-scale-3: #47afff;
  --display-blue-scale-4: #0f8fff;
  --display-blue-scale-5: #006edb;
  --display-blue-scale-6: #005fcc;
  --display-blue-scale-7: #004db3;
  --display-blue-scale-8: #003d99;
  --display-blue-scale-9: #002b75;
  --display-brown-bgColor-emphasis: #856d4c;
  --display-brown-bgColor-muted: #eeeae2;
  --display-brown-borderColor-emphasis: #856d4c;
  --display-brown-borderColor-muted: #dfd7c8;
  --display-brown-fgColor: #755f43;
  --display-brown-scale-0: #eeeae2;
  --display-brown-scale-1: #dfd7c8;
  --display-brown-scale-2: #cbbda4;
  --display-brown-scale-3: #b8a484;
  --display-brown-scale-4: #a68b64;
  --display-brown-scale-5: #856d4c;
  --display-brown-scale-6: #755f43;
  --display-brown-scale-7: #64513a;
  --display-brown-scale-8: #51412f;
  --display-brown-scale-9: #3a2e22;
  --display-coral-bgColor-emphasis: #d43511;
  --display-coral-bgColor-muted: #ffe5db;
  --display-coral-borderColor-emphasis: #d43511;
  --display-coral-borderColor-muted: #fecebe;
  --display-coral-fgColor: #ba2e12;
  --display-coral-scale-0: #ffe5db;
  --display-coral-scale-1: #fecebe;
  --display-coral-scale-2: #fcab92;
  --display-coral-scale-3: #f88768;
  --display-coral-scale-4: #f25f3a;
  --display-coral-scale-5: #d43511;
  --display-coral-scale-6: #ba2e12;
  --display-coral-scale-7: #9b2712;
  --display-coral-scale-8: #7e2011;
  --display-coral-scale-9: #5d180e;
  --display-cyan-bgColor-emphasis: #007b94;
  --display-cyan-bgColor-muted: #bdf4ff;
  --display-cyan-borderColor-emphasis: #007b94;
  --display-cyan-borderColor-muted: #7ae9ff;
  --display-cyan-fgColor: #006a80;
  --display-cyan-scale-0: #bdf4ff;
  --display-cyan-scale-1: #7ae9ff;
  --display-cyan-scale-2: #00d0fa;
  --display-cyan-scale-3: #00b7db;
  --display-cyan-scale-4: #0099b8;
  --display-cyan-scale-5: #007b94;
  --display-cyan-scale-6: #006a80;
  --display-cyan-scale-7: #00596b;
  --display-cyan-scale-8: #004857;
  --display-cyan-scale-9: #003742;
  --display-gray-bgColor-emphasis: #647182;
  --display-gray-bgColor-muted: #e8ecf2;
  --display-gray-borderColor-emphasis: #647182;
  --display-gray-borderColor-muted: #d2dae4;
  --display-gray-fgColor: #5c6570;
  --display-gray-scale-0: #e8ecf2;
  --display-gray-scale-1: #d2dae4;
  --display-gray-scale-2: #b4c0cf;
  --display-gray-scale-3: #9ba9bb;
  --display-gray-scale-4: #808fa3;
  --display-gray-scale-5: #647182;
  --display-gray-scale-6: #5c6570;
  --display-gray-scale-7: #4e535a;
  --display-gray-scale-8: #424448;
  --display-gray-scale-9: #303031;
  --display-green-bgColor-emphasis: #2c8141;
  --display-green-bgColor-muted: #caf7ca;
  --display-green-borderColor-emphasis: #2c8141;
  --display-green-borderColor-muted: #9ceda0;
  --display-green-fgColor: #2b6e3f;
  --display-green-scale-0: #caf7ca;
  --display-green-scale-1: #9ceda0;
  --display-green-scale-2: #54d961;
  --display-green-scale-3: #31bf46;
  --display-green-scale-4: #30a147;
  --display-green-scale-5: #2c8141;
  --display-green-scale-6: #2b6e3f;
  --display-green-scale-7: #285c3b;
  --display-green-scale-8: #254b34;
  --display-green-scale-9: #1d3528;
  --display-indigo-bgColor-emphasis: #5a61e7;
  --display-indigo-bgColor-muted: #e5e9ff;
  --display-indigo-borderColor-emphasis: #5a61e7;
  --display-indigo-borderColor-muted: #d2d7fe;
  --display-indigo-fgColor: #494edf;
  --display-indigo-scale-0: #e5e9ff;
  --display-indigo-scale-1: #d2d7fe;
  --display-indigo-scale-2: #b1b9fb;
  --display-indigo-scale-3: #979ff7;
  --display-indigo-scale-4: #7a82f0;
  --display-indigo-scale-5: #5a61e7;
  --display-indigo-scale-6: #494edf;
  --display-indigo-scale-7: #393cd5;
  --display-indigo-scale-8: #2d2db4;
  --display-indigo-scale-9: #25247b;
  --display-lemon-bgColor-emphasis: #866e04;
  --display-lemon-bgColor-muted: #f7eea1;
  --display-lemon-borderColor-emphasis: #866e04;
  --display-lemon-borderColor-muted: #f0db3d;
  --display-lemon-fgColor: #786002;
  --display-lemon-scale-0: #f7eea1;
  --display-lemon-scale-1: #f0db3d;
  --display-lemon-scale-2: #d8bd0e;
  --display-lemon-scale-3: #c2a60a;
  --display-lemon-scale-4: #a68c07;
  --display-lemon-scale-5: #866e04;
  --display-lemon-scale-6: #786002;
  --display-lemon-scale-7: #654f01;
  --display-lemon-scale-8: #523f00;
  --display-lemon-scale-9: #3d2e00;
  --display-lime-bgColor-emphasis: #527a29;
  --display-lime-bgColor-muted: #e3f2b5;
  --display-lime-borderColor-emphasis: #527a29;
  --display-lime-borderColor-muted: #c7e580;
  --display-lime-fgColor: #476c28;
  --display-lime-scale-0: #e3f2b5;
  --display-lime-scale-1: #c7e580;
  --display-lime-scale-2: #9bd039;
  --display-lime-scale-3: #80b530;
  --display-lime-scale-4: #6c9d2f;
  --display-lime-scale-5: #527a29;
  --display-lime-scale-6: #476c28;
  --display-lime-scale-7: #3a5b25;
  --display-lime-scale-8: #2f4a21;
  --display-lime-scale-9: #213319;
  --display-olive-bgColor-emphasis: #64762d;
  --display-olive-bgColor-muted: #f0f0ad;
  --display-olive-borderColor-emphasis: #64762d;
  --display-olive-borderColor-muted: #dbe170;
  --display-olive-fgColor: #56682c;
  --display-olive-scale-0: #f0f0ad;
  --display-olive-scale-1: #dbe170;
  --display-olive-scale-2: #b9c832;
  --display-olive-scale-3: #9bae32;
  --display-olive-scale-4: #819532;
  --display-olive-scale-5: #64762d;
  --display-olive-scale-6: #56682c;
  --display-olive-scale-7: #495a2b;
  --display-olive-scale-8: #3b4927;
  --display-olive-scale-9: #2a331f;
  --display-orange-bgColor-emphasis: #b8500f;
  --display-orange-bgColor-muted: #ffe7d1;
  --display-orange-borderColor-emphasis: #b8500f;
  --display-orange-borderColor-muted: #fecfaa;
  --display-orange-fgColor: #a24610;
  --display-orange-scale-0: #ffe7d1;
  --display-orange-scale-1: #fecfaa;
  --display-orange-scale-2: #fbaf74;
  --display-orange-scale-3: #f68c41;
  --display-orange-scale-4: #eb670f;
  --display-orange-scale-5: #b8500f;
  --display-orange-scale-6: #a24610;
  --display-orange-scale-7: #8d3c11;
  --display-orange-scale-8: #70300f;
  --display-orange-scale-9: #54230d;
  --display-pine-bgColor-emphasis: #167e53;
  --display-pine-bgColor-muted: #bff8db;
  --display-pine-borderColor-emphasis: #167e53;
  --display-pine-borderColor-muted: #80efb9;
  --display-pine-fgColor: #156f4b;
  --display-pine-scale-0: #bff8db;
  --display-pine-scale-1: #80efb9;
  --display-pine-scale-2: #1dd781;
  --display-pine-scale-3: #1dbf76;
  --display-pine-scale-4: #1aa267;
  --display-pine-scale-5: #167e53;
  --display-pine-scale-6: #156f4b;
  --display-pine-scale-7: #135d41;
  --display-pine-scale-8: #114b36;
  --display-pine-scale-9: #0d3627;
  --display-pink-bgColor-emphasis: #ce2c85;
  --display-pink-bgColor-muted: #ffe5f1;
  --display-pink-borderColor-emphasis: #ce2c85;
  --display-pink-borderColor-muted: #fdc9e2;
  --display-pink-fgColor: #b12f79;
  --display-pink-scale-0: #ffe5f1;
  --display-pink-scale-1: #fdc9e2;
  --display-pink-scale-2: #f8a5cf;
  --display-pink-scale-3: #f184bc;
  --display-pink-scale-4: #e55da5;
  --display-pink-scale-5: #ce2c85;
  --display-pink-scale-6: #b12f79;
  --display-pink-scale-7: #8e2e66;
  --display-pink-scale-8: #6e2b53;
  --display-pink-scale-9: #4d233d;
  --display-plum-bgColor-emphasis: #a830e8;
  --display-plum-bgColor-muted: #f8e5ff;
  --display-plum-borderColor-emphasis: #a830e8;
  --display-plum-borderColor-muted: #f0cdfe;
  --display-plum-fgColor: #961edc;
  --display-plum-scale-0: #f8e5ff;
  --display-plum-scale-1: #f0cdfe;
  --display-plum-scale-2: #e2a7fb;
  --display-plum-scale-3: #d487f7;
  --display-plum-scale-4: #c264f2;
  --display-plum-scale-5: #a830e8;
  --display-plum-scale-6: #961edc;
  --display-plum-scale-7: #7d1eb8;
  --display-plum-scale-8: #651d96;
  --display-plum-scale-9: #471769;
  --display-purple-bgColor-emphasis: #894ceb;
  --display-purple-bgColor-muted: #f1e5ff;
  --display-purple-borderColor-emphasis: #894ceb;
  --display-purple-borderColor-muted: #e6d2fe;
  --display-purple-fgColor: #783ae4;
  --display-purple-scale-0: #f1e5ff;
  --display-purple-scale-1: #e6d2fe;
  --display-purple-scale-2: #d1b1fc;
  --display-purple-scale-3: #bc91f8;
  --display-purple-scale-4: #a672f3;
  --display-purple-scale-5: #894ceb;
  --display-purple-scale-6: #783ae4;
  --display-purple-scale-7: #6223d7;
  --display-purple-scale-8: #4f21ab;
  --display-purple-scale-9: #391b79;
  --display-red-bgColor-emphasis: #df0c24;
  --display-red-bgColor-muted: #ffe2e0;
  --display-red-borderColor-emphasis: #df0c24;
  --display-red-borderColor-muted: #fecdcd;
  --display-red-fgColor: #c50d28;
  --display-red-scale-0: #ffe2e0;
  --display-red-scale-1: #fecdcd;
  --display-red-scale-2: #fda5a7;
  --display-red-scale-3: #fb8389;
  --display-red-scale-4: #f85461;
  --display-red-scale-5: #df0c24;
  --display-red-scale-6: #c50d28;
  --display-red-scale-7: #a60c29;
  --display-red-scale-8: #880c27;
  --display-red-scale-9: #610a20;
  --display-teal-bgColor-emphasis: #127e81;
  --display-teal-bgColor-muted: #c7f5ef;
  --display-teal-borderColor-emphasis: #127e81;
  --display-teal-borderColor-muted: #89ebe1;
  --display-teal-fgColor: #106e75;
  --display-teal-scale-0: #c7f5ef;
  --display-teal-scale-1: #89ebe1;
  --display-teal-scale-2: #22d3c7;
  --display-teal-scale-3: #1db9b4;
  --display-teal-scale-4: #179b9b;
  --display-teal-scale-5: #127e81;
  --display-teal-scale-6: #106e75;
  --display-teal-scale-7: #0d5b63;
  --display-teal-scale-8: #0a4852;
  --display-teal-scale-9: #073740;
  --display-yellow-bgColor-emphasis: #946a00;
  --display-yellow-bgColor-muted: #ffec9e;
  --display-yellow-borderColor-emphasis: #946a00;
  --display-yellow-borderColor-muted: #ffd642;
  --display-yellow-fgColor: #805900;
  --display-yellow-scale-0: #ffec9e;
  --display-yellow-scale-1: #ffd642;
  --display-yellow-scale-2: #ebb400;
  --display-yellow-scale-3: #d19d00;
  --display-yellow-scale-4: #b88700;
  --display-yellow-scale-5: #946a00;
  --display-yellow-scale-6: #805900;
  --display-yellow-scale-7: #704d00;
  --display-yellow-scale-8: #5c3d00;
  --display-yellow-scale-9: #422b00;
  --fgColor-accent: #0969da;
  --fgColor-attention: #9a6700;
  --fgColor-danger: #bc4c00;
  --fgColor-disabled: #818b98;
  --fgColor-done: #8250df;
  --fgColor-muted: #59636e;
  --fgColor-neutral: #59636e;
  --fgColor-open: #bc4c00;
  --fgColor-severe: #bc4c00;
  --fgColor-sponsors: #bf3989;
  --fgColor-success: #0969da;
  --header-bgColor: #25292e;
  --header-borderColor-divider: #818b98;
  --headerSearch-bgColor: #25292e;
  --headerSearch-borderColor: #818b98;
  --highlight-neutral-bgColor: #fff8c5;
  --label-auburn-bgColor-active: #d4b7b5;
  --label-auburn-bgColor-hover: #e6d6d5;
  --label-auburn-bgColor-rest: #f2e9e9;
  --label-auburn-fgColor-active: #5d3937;
  --label-auburn-fgColor-hover: #744744;
  --label-auburn-fgColor-rest: #8a5551;
  --label-blue-bgColor-active: #75c8ff;
  --label-blue-bgColor-hover: #ade1ff;
  --label-blue-bgColor-rest: #d1f0ff;
  --label-blue-fgColor-active: #003d99;
  --label-blue-fgColor-hover: #004db3;
  --label-blue-fgColor-rest: #005fcc;
  --label-brown-bgColor-active: #cbbda4;
  --label-brown-bgColor-hover: #dfd7c8;
  --label-brown-bgColor-rest: #eeeae2;
  --label-brown-fgColor-active: #51412f;
  --label-brown-fgColor-hover: #64513a;
  --label-brown-fgColor-rest: #755f43;
  --label-coral-bgColor-active: #fcab92;
  --label-coral-bgColor-hover: #fecebe;
  --label-coral-bgColor-rest: #ffe5db;
  --label-coral-fgColor-active: #7e2011;
  --label-coral-fgColor-hover: #9b2712;
  --label-coral-fgColor-rest: #ba2e12;
  --label-cyan-bgColor-active: #00d0fa;
  --label-cyan-bgColor-hover: #7ae9ff;
  --label-cyan-bgColor-rest: #bdf4ff;
  --label-cyan-fgColor-active: #004857;
  --label-cyan-fgColor-hover: #00596b;
  --label-cyan-fgColor-rest: #006a80;
  --label-gray-bgColor-active: #b4c0cf;
  --label-gray-bgColor-hover: #d2dae4;
  --label-gray-bgColor-rest: #e8ecf2;
  --label-gray-fgColor-active: #424448;
  --label-gray-fgColor-hover: #4e535a;
  --label-gray-fgColor-rest: #5c6570;
  --label-green-bgColor-active: #54d961;
  --label-green-bgColor-hover: #9ceda0;
  --label-green-bgColor-rest: #caf7ca;
  --label-green-fgColor-active: #254b34;
  --label-green-fgColor-hover: #285c3b;
  --label-green-fgColor-rest: #2b6e3f;
  --label-indigo-bgColor-active: #b1b9fb;
  --label-indigo-bgColor-hover: #d2d7fe;
  --label-indigo-bgColor-rest: #e5e9ff;
  --label-indigo-fgColor-active: #2d2db4;
  --label-indigo-fgColor-hover: #393cd5;
  --label-indigo-fgColor-rest: #494edf;
  --label-lemon-bgColor-active: #d8bd0e;
  --label-lemon-bgColor-hover: #f0db3d;
  --label-lemon-bgColor-rest: #f7eea1;
  --label-lemon-fgColor-active: #523f00;
  --label-lemon-fgColor-hover: #654f01;
  --label-lemon-fgColor-rest: #786002;
  --label-lime-bgColor-active: #9bd039;
  --label-lime-bgColor-hover: #c7e580;
  --label-lime-bgColor-rest: #e3f2b5;
  --label-lime-fgColor-active: #2f4a21;
  --label-lime-fgColor-hover: #3a5b25;
  --label-lime-fgColor-rest: #476c28;
  --label-olive-bgColor-active: #b9c832;
  --label-olive-bgColor-hover: #dbe170;
  --label-olive-bgColor-rest: #f0f0ad;
  --label-olive-fgColor-active: #3b4927;
  --label-olive-fgColor-hover: #495a2b;
  --label-olive-fgColor-rest: #56682c;
  --label-orange-bgColor-active: #fbaf74;
  --label-orange-bgColor-hover: #fecfaa;
  --label-orange-bgColor-rest: #ffe7d1;
  --label-orange-fgColor-active: #70300f;
  --label-orange-fgColor-hover: #8d3c11;
  --label-orange-fgColor-rest: #a24610;
  --label-pine-bgColor-active: #1dd781;
  --label-pine-bgColor-hover: #80efb9;
  --label-pine-bgColor-rest: #bff8db;
  --label-pine-fgColor-active: #114b36;
  --label-pine-fgColor-hover: #135d41;
  --label-pine-fgColor-rest: #156f4b;
  --label-pink-bgColor-active: #f8a5cf;
  --label-pink-bgColor-hover: #fdc9e2;
  --label-pink-bgColor-rest: #ffe5f1;
  --label-pink-fgColor-active: #6e2b53;
  --label-pink-fgColor-hover: #8e2e66;
  --label-pink-fgColor-rest: #b12f79;
  --label-plum-bgColor-active: #e2a7fb;
  --label-plum-bgColor-hover: #f0cdfe;
  --label-plum-bgColor-rest: #f8e5ff;
  --label-plum-fgColor-active: #651d96;
  --label-plum-fgColor-hover: #7d1eb8;
  --label-plum-fgColor-rest: #961edc;
  --label-purple-bgColor-active: #d1b1fc;
  --label-purple-bgColor-hover: #e6d2fe;
  --label-purple-bgColor-rest: #f1e5ff;
  --label-purple-fgColor-active: #4f21ab;
  --label-purple-fgColor-hover: #6223d7;
  --label-purple-fgColor-rest: #783ae4;
  --label-red-bgColor-active: #fda5a7;
  --label-red-bgColor-hover: #fecdcd;
  --label-red-bgColor-rest: #ffe2e0;
  --label-red-fgColor-active: #880c27;
  --label-red-fgColor-hover: #a60c29;
  --label-red-fgColor-rest: #c50d28;
  --label-teal-bgColor-active: #22d3c7;
  --label-teal-bgColor-hover: #89ebe1;
  --label-teal-bgColor-rest: #c7f5ef;
  --label-teal-fgColor-active: #0a4852;
  --label-teal-fgColor-hover: #0d5b63;
  --label-teal-fgColor-rest: #106e75;
  --label-yellow-bgColor-active: #ebb400;
  --label-yellow-bgColor-hover: #ffd642;
  --label-yellow-bgColor-rest: #ffec9e;
  --label-yellow-fgColor-active: #5c3d00;
  --label-yellow-fgColor-hover: #704d00;
  --label-yellow-fgColor-rest: #805900;
  --menu-bgColor-active: #ffffff00;
  --overlay-backdrop-bgColor: #c8d1da66;
  --reactionButton-selected-bgColor-rest: #ddf4ff;
  --reactionButton-selected-fgColor-hover: #0550ae;
  --selectMenu-bgColor-active: #b6e3ff;
  --selectMenu-borderColor: #ffffff00;
  --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
  --skeletonLoader-bgColor: #818b981a;
  --topicTag-borderColor: #ffffff00;
  --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
  --underlineNav-borderColor-active: #fd8c73;
  --avatar-bgColor: #ffffff;
  --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
  --bgColor-black: #1f2328;
  --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
  --bgColor-closed-muted: var(--bgColor-neutral-muted);
  --bgColor-default: #ffffff;
  --bgColor-inset: var(--bgColor-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #0969da;
  --border-accent-muted: 0.0625rem solid #54aeff66;
  --border-attention-emphasis: 0.0625rem solid #9a6700;
  --border-attention-muted: 0.0625rem solid #d4a72c66;
  --border-danger-emphasis: 0.0625rem solid #bc4c00;
  --border-danger-muted: 0.0625rem solid #fff1e5;
  --border-default: 0.0625rem solid #d1d9e0;
  --border-disabled: 0.0625rem solid #818b981a;
  --border-done-emphasis: 0.0625rem solid #8250df;
  --border-done-muted: 0.0625rem solid #c297ff66;
  --border-emphasis: 0.0625rem solid #818b98;
  --border-neutral-emphasis: 0.0625rem solid #59636e;
  --border-severe-emphasis: 0.0625rem solid #bc4c00;
  --border-severe-muted: 0.0625rem solid #fb8f4466;
  --border-sponsors-emphasis: 0.0625rem solid #bf3989;
  --border-sponsors-muted: 0.0625rem solid #ff80c866;
  --border-success-emphasis: 0.0625rem solid #0969da;
  --border-success-muted: 0.0625rem solid #ddf4ff;
  --border-transparent: 0.0625rem solid #ffffff00;
  --borderColor-closed-emphasis: var(--borderColor-emphasis);
  --borderColor-closed-muted: #d1d9e066;
  --borderColor-muted: #d1d9e0b3;
  --borderColor-translucent: #1f232826;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #bc4c0080;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-fgColor-rest: var(--fgColor-danger);
  --button-danger-iconColor-hover: #ffffff;
  --button-danger-iconColor-rest: var(--fgColor-danger);
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
  --button-outline-bgColor-rest: var(--control-bgColor-rest);
  --button-outline-fgColor-active: #ffffff;
  --button-outline-fgColor-disabled: #0969da80;
  --button-outline-fgColor-hover: #ffffff;
  --button-outline-fgColor-rest: var(--fgColor-accent);
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #1f232826;
  --button-primary-fgColor-disabled: #ffffffcc;
  --buttonCounter-danger-bgColor-disabled: #bc4c000d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-bgColor-rest: #bc4c001a;
  --buttonCounter-danger-fgColor-disabled: #bc4c0080;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #0969da0d;
  --buttonCounter-outline-bgColor-hover: #ffffff33;
  --buttonCounter-outline-bgColor-rest: #0969da1a;
  --buttonCounter-outline-fgColor-disabled: #0969da80;
  --buttonCounter-outline-fgColor-hover: #ffffff;
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --codeMirror-syntax-fgColor-comment: #1f2328;
  --color-ansi-black: #1f2328;
  --color-prettylights-syntax-markup-bold: #1f2328;
  --color-prettylights-syntax-markup-italic: #1f2328;
  --color-prettylights-syntax-storage-modifier-import: #1f2328;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-danger-bgColor-active: #fff1e566;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-danger-fgColor-hover: var(--fgColor-danger);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlKnob-bgColor-rest: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --fgColor-black: #1f2328;
  --fgColor-closed: var(--fgColor-muted);
  --fgColor-default: #1f2328;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #ffffff;
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --header-fgColor-logo: #ffffff;
  --overlay-bgColor: #ffffff;
  --page-header-bgColor: var(--bgColor-muted);
  --selection-bgColor: #0969da33;
  --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
  --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
  --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
  --sideNav-bgColor-selected: #ffffff;
  --timelineBadge-bgColor: var(--bgColor-muted);
  --tooltip-bgColor: var(--bgColor-emphasis);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #d1d9e0b3;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8250df;
  --border-upsell-muted: 0.0625rem solid #c297ff66;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-active: var(--control-borderColor-rest);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: #ffffffcc;
  --card-bgColor: var(--bgColor-default);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --control-borderColor-selected: var(--control-bgColor-selected);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --focus-outline: 2px solid #0969da;
  --overlay-borderColor: #d1d9e080;
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --underlineNav-borderColor-hover: var(--borderColor-muted);
  --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
  --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
  --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
  --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="light_colorblind"],
  [data-color-mode="auto"][data-dark-theme="light_colorblind"] ::backdrop {
    --button-danger-bgColor-active: #7e2f00;
    --button-outline-bgColor-active: #0757ba;
    --button-primary-bgColor-active: #075fc8;
    --button-primary-bgColor-disabled: #92caff;
    --button-primary-bgColor-hover: #0864d1;
    --buttonCounter-danger-fgColor-rest: #c21c2c;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --control-checked-bgColor-active: #0757ba;
    --control-checked-bgColor-hover: #0860ca;
    --reactionButton-selected-bgColor-hover: #caecff;
    --avatarStack-fade-bgColor-default: #c8d1da;
    --avatarStack-fade-bgColor-muted: #dae0e7;
    --bgColor-accent-emphasis: #0969da;
    --bgColor-accent-muted: #ddf4ff;
    --bgColor-attention-emphasis: #9a6700;
    --bgColor-attention-muted: #fff8c5;
    --bgColor-danger-emphasis: #bc4c00;
    --bgColor-danger-muted: #fff1e5;
    --bgColor-disabled: #eff2f5;
    --bgColor-done-emphasis: #8250df;
    --bgColor-done-muted: #fbefff;
    --bgColor-emphasis: #25292e;
    --bgColor-inverse: #25292e;
    --bgColor-muted: #f6f8fa;
    --bgColor-neutral-emphasis: #59636e;
    --bgColor-neutral-muted: #818b981f;
    --bgColor-open-emphasis: #bc4c00;
    --bgColor-open-muted: #fff1e5;
    --bgColor-severe-emphasis: #bc4c00;
    --bgColor-severe-muted: #fff1e5;
    --bgColor-sponsors-emphasis: #bf3989;
    --bgColor-sponsors-muted: #ffeff7;
    --bgColor-success-emphasis: #0969da;
    --bgColor-success-muted: #ddf4ff;
    --bgColor-transparent: #ffffff00;
    --borderColor-accent-emphasis: #0969da;
    --borderColor-accent-muted: #54aeff66;
    --borderColor-attention-emphasis: #9a6700;
    --borderColor-attention-muted: #d4a72c66;
    --borderColor-danger-emphasis: #bc4c00;
    --borderColor-danger-muted: #fff1e5;
    --borderColor-default: #d1d9e0;
    --borderColor-disabled: #818b981a;
    --borderColor-done-emphasis: #8250df;
    --borderColor-done-muted: #c297ff66;
    --borderColor-emphasis: #818b98;
    --borderColor-neutral-emphasis: #59636e;
    --borderColor-open-emphasis: #bc4c00;
    --borderColor-open-muted: #fb8f4466;
    --borderColor-severe-emphasis: #bc4c00;
    --borderColor-severe-muted: #fb8f4466;
    --borderColor-sponsors-emphasis: #bf3989;
    --borderColor-sponsors-muted: #ff80c866;
    --borderColor-success-emphasis: #0969da;
    --borderColor-success-muted: #ddf4ff;
    --borderColor-transparent: #ffffff00;
    --button-danger-bgColor-hover: #953800;
    --button-danger-shadow-selected: inset 0px 1px 0px 0px #47170033;
    --button-inactive-bgColor: #e6eaef;
    --button-inactive-fgColor: #59636e;
    --button-invisible-bgColor-disabled: #ffffff00;
    --button-invisible-borderColor-disabled: #ffffff00;
    --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
    --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
    --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d;
    --button-star-iconColor: #eac54f;
    --buttonCounter-outline-fgColor-rest: #0550ae;
    --buttonCounter-primary-bgColor-rest: #002d1133;
    --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;
    --color-ansi-black-bright: #393f46;
    --color-ansi-blue: #0969da;
    --color-ansi-blue-bright: #218bff;
    --color-ansi-gray: #59636e;
    --color-ansi-green: #0550ae;
    --color-ansi-green-bright: #0969da;
    --color-ansi-magenta: #8250df;
    --color-ansi-magenta-bright: #a475f9;
    --color-ansi-red: #bc4c00;
    --color-ansi-red-bright: #953800;
    --color-ansi-white: #59636e;
    --color-ansi-white-bright: #818b98;
    --color-ansi-yellow: #4d2d00;
    --color-ansi-yellow-bright: #633c01;
    --color-prettylights-syntax-brackethighlighter-angle: #59636e;
    --color-prettylights-syntax-brackethighlighter-unmatched: #762c00;
    --color-prettylights-syntax-carriage-return-bg: #bc4c00;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-comment: #59636e;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-prettylights-syntax-entity: #6639ba;
    --color-prettylights-syntax-entity-tag: #0550ae;
    --color-prettylights-syntax-invalid-illegal-bg: #762c00;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-keyword: #bc4c00;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-deleted-bg: #fff1e5;
    --color-prettylights-syntax-markup-deleted-text: #762c00;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
    --color-prettylights-syntax-markup-inserted-bg: #ddf4ff;
    --color-prettylights-syntax-markup-inserted-text: #0550ae;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-string-regexp: #0550ae;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
    --color-prettylights-syntax-variable: #953800;
    --contribution-default-bgColor-0: #eff2f5;
    --contribution-default-bgColor-1: #aceebb;
    --contribution-default-bgColor-2: #4ac26b;
    --contribution-default-bgColor-3: #2da44e;
    --contribution-default-bgColor-4: #116329;
    --contribution-default-borderColor-0: #1f23280d;
    --contribution-default-borderColor-1: #1f23280d;
    --contribution-default-borderColor-2: #1f23280d;
    --contribution-default-borderColor-3: #1f23280d;
    --contribution-default-borderColor-4: #1f23280d;
    --contribution-halloween-bgColor-1: #f0db3d;
    --contribution-halloween-bgColor-2: #ffd642;
    --contribution-halloween-bgColor-3: #f68c41;
    --contribution-halloween-bgColor-4: #1f2328;
    --contribution-winter-bgColor-1: #b6e3ff;
    --contribution-winter-bgColor-2: #54aeff;
    --contribution-winter-bgColor-3: #0969da;
    --contribution-winter-bgColor-4: #0a3069;
    --control-bgColor-active: #e6eaef;
    --control-bgColor-hover: #eff2f5;
    --control-bgColor-rest: #f6f8fa;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-fgColor-rest: #25292e;
    --control-transparent-bgColor-active: #818b9826;
    --control-transparent-bgColor-hover: #818b981a;
    --control-transparent-bgColor-rest: #ffffff00;
    --control-transparent-bgColor-selected: #818b9826;
    --control-transparent-borderColor-active: #ffffff00;
    --control-transparent-borderColor-hover: #ffffff00;
    --control-transparent-borderColor-rest: #ffffff00;
    --controlTrack-bgColor-active: #dae0e7;
    --controlTrack-bgColor-hover: #e0e6eb;
    --controlTrack-bgColor-rest: #e6eaef;
    --controlTrack-fgColor-rest: #59636e;
    --counter-borderColor: #ffffff00;
    --data-auburn-color-emphasis: #9d615c;
    --data-auburn-color-muted: #f2e9e9;
    --data-blue-color-emphasis: #006edb;
    --data-blue-color-muted: #d1f0ff;
    --data-brown-color-emphasis: #856d4c;
    --data-brown-color-muted: #eeeae2;
    --data-coral-color-emphasis: #d43511;
    --data-coral-color-muted: #ffe5db;
    --data-gray-color-emphasis: #808fa3;
    --data-gray-color-muted: #e8ecf2;
    --data-green-color-emphasis: #30a147;
    --data-green-color-muted: #caf7ca;
    --data-lemon-color-emphasis: #866e04;
    --data-lemon-color-muted: #f7eea1;
    --data-lime-color-emphasis: #527a29;
    --data-lime-color-muted: #e3f2b5;
    --data-olive-color-emphasis: #64762d;
    --data-olive-color-muted: #f0f0ad;
    --data-orange-color-emphasis: #eb670f;
    --data-orange-color-muted: #ffe7d1;
    --data-pine-color-emphasis: #167e53;
    --data-pine-color-muted: #bff8db;
    --data-pink-color-emphasis: #ce2c85;
    --data-pink-color-muted: #ffe5f1;
    --data-plum-color-emphasis: #a830e8;
    --data-plum-color-muted: #f8e5ff;
    --data-purple-color-emphasis: #894ceb;
    --data-purple-color-muted: #f1e5ff;
    --data-red-color-emphasis: #df0c24;
    --data-red-color-muted: #ffe2e0;
    --data-teal-color-emphasis: #179b9b;
    --data-teal-color-muted: #c7f5ef;
    --data-yellow-color-emphasis: #b88700;
    --data-yellow-color-muted: #ffec9e;
    --diffBlob-additionNum-bgColor: #b6e3ff;
    --diffBlob-additionWord-bgColor: #b6e3ff;
    --diffBlob-deletionNum-bgColor: #ffd8b5;
    --diffBlob-deletionWord-bgColor: #ffd8b5;
    --diffBlob-hunkLine-bgColor: #f6f8fa;
    --diffBlob-hunkNum-bgColor-hover: #c8d1da;
    --diffBlob-hunkNum-bgColor-rest: #e6eaef;
    --display-auburn-bgColor-emphasis: #9d615c;
    --display-auburn-bgColor-muted: #f2e9e9;
    --display-auburn-borderColor-emphasis: #9d615c;
    --display-auburn-borderColor-muted: #e6d6d5;
    --display-auburn-fgColor: #8a5551;
    --display-auburn-scale-0: #f2e9e9;
    --display-auburn-scale-1: #e6d6d5;
    --display-auburn-scale-2: #d4b7b5;
    --display-auburn-scale-3: #c59e9b;
    --display-auburn-scale-4: #b4827e;
    --display-auburn-scale-5: #9d615c;
    --display-auburn-scale-6: #8a5551;
    --display-auburn-scale-7: #744744;
    --display-auburn-scale-8: #5d3937;
    --display-auburn-scale-9: #432928;
    --display-blue-bgColor-emphasis: #006edb;
    --display-blue-bgColor-muted: #d1f0ff;
    --display-blue-borderColor-emphasis: #006edb;
    --display-blue-borderColor-muted: #ade1ff;
    --display-blue-fgColor: #005fcc;
    --display-blue-scale-0: #d1f0ff;
    --display-blue-scale-1: #ade1ff;
    --display-blue-scale-2: #75c8ff;
    --display-blue-scale-3: #47afff;
    --display-blue-scale-4: #0f8fff;
    --display-blue-scale-5: #006edb;
    --display-blue-scale-6: #005fcc;
    --display-blue-scale-7: #004db3;
    --display-blue-scale-8: #003d99;
    --display-blue-scale-9: #002b75;
    --display-brown-bgColor-emphasis: #856d4c;
    --display-brown-bgColor-muted: #eeeae2;
    --display-brown-borderColor-emphasis: #856d4c;
    --display-brown-borderColor-muted: #dfd7c8;
    --display-brown-fgColor: #755f43;
    --display-brown-scale-0: #eeeae2;
    --display-brown-scale-1: #dfd7c8;
    --display-brown-scale-2: #cbbda4;
    --display-brown-scale-3: #b8a484;
    --display-brown-scale-4: #a68b64;
    --display-brown-scale-5: #856d4c;
    --display-brown-scale-6: #755f43;
    --display-brown-scale-7: #64513a;
    --display-brown-scale-8: #51412f;
    --display-brown-scale-9: #3a2e22;
    --display-coral-bgColor-emphasis: #d43511;
    --display-coral-bgColor-muted: #ffe5db;
    --display-coral-borderColor-emphasis: #d43511;
    --display-coral-borderColor-muted: #fecebe;
    --display-coral-fgColor: #ba2e12;
    --display-coral-scale-0: #ffe5db;
    --display-coral-scale-1: #fecebe;
    --display-coral-scale-2: #fcab92;
    --display-coral-scale-3: #f88768;
    --display-coral-scale-4: #f25f3a;
    --display-coral-scale-5: #d43511;
    --display-coral-scale-6: #ba2e12;
    --display-coral-scale-7: #9b2712;
    --display-coral-scale-8: #7e2011;
    --display-coral-scale-9: #5d180e;
    --display-cyan-bgColor-emphasis: #007b94;
    --display-cyan-bgColor-muted: #bdf4ff;
    --display-cyan-borderColor-emphasis: #007b94;
    --display-cyan-borderColor-muted: #7ae9ff;
    --display-cyan-fgColor: #006a80;
    --display-cyan-scale-0: #bdf4ff;
    --display-cyan-scale-1: #7ae9ff;
    --display-cyan-scale-2: #00d0fa;
    --display-cyan-scale-3: #00b7db;
    --display-cyan-scale-4: #0099b8;
    --display-cyan-scale-5: #007b94;
    --display-cyan-scale-6: #006a80;
    --display-cyan-scale-7: #00596b;
    --display-cyan-scale-8: #004857;
    --display-cyan-scale-9: #003742;
    --display-gray-bgColor-emphasis: #647182;
    --display-gray-bgColor-muted: #e8ecf2;
    --display-gray-borderColor-emphasis: #647182;
    --display-gray-borderColor-muted: #d2dae4;
    --display-gray-fgColor: #5c6570;
    --display-gray-scale-0: #e8ecf2;
    --display-gray-scale-1: #d2dae4;
    --display-gray-scale-2: #b4c0cf;
    --display-gray-scale-3: #9ba9bb;
    --display-gray-scale-4: #808fa3;
    --display-gray-scale-5: #647182;
    --display-gray-scale-6: #5c6570;
    --display-gray-scale-7: #4e535a;
    --display-gray-scale-8: #424448;
    --display-gray-scale-9: #303031;
    --display-green-bgColor-emphasis: #2c8141;
    --display-green-bgColor-muted: #caf7ca;
    --display-green-borderColor-emphasis: #2c8141;
    --display-green-borderColor-muted: #9ceda0;
    --display-green-fgColor: #2b6e3f;
    --display-green-scale-0: #caf7ca;
    --display-green-scale-1: #9ceda0;
    --display-green-scale-2: #54d961;
    --display-green-scale-3: #31bf46;
    --display-green-scale-4: #30a147;
    --display-green-scale-5: #2c8141;
    --display-green-scale-6: #2b6e3f;
    --display-green-scale-7: #285c3b;
    --display-green-scale-8: #254b34;
    --display-green-scale-9: #1d3528;
    --display-indigo-bgColor-emphasis: #5a61e7;
    --display-indigo-bgColor-muted: #e5e9ff;
    --display-indigo-borderColor-emphasis: #5a61e7;
    --display-indigo-borderColor-muted: #d2d7fe;
    --display-indigo-fgColor: #494edf;
    --display-indigo-scale-0: #e5e9ff;
    --display-indigo-scale-1: #d2d7fe;
    --display-indigo-scale-2: #b1b9fb;
    --display-indigo-scale-3: #979ff7;
    --display-indigo-scale-4: #7a82f0;
    --display-indigo-scale-5: #5a61e7;
    --display-indigo-scale-6: #494edf;
    --display-indigo-scale-7: #393cd5;
    --display-indigo-scale-8: #2d2db4;
    --display-indigo-scale-9: #25247b;
    --display-lemon-bgColor-emphasis: #866e04;
    --display-lemon-bgColor-muted: #f7eea1;
    --display-lemon-borderColor-emphasis: #866e04;
    --display-lemon-borderColor-muted: #f0db3d;
    --display-lemon-fgColor: #786002;
    --display-lemon-scale-0: #f7eea1;
    --display-lemon-scale-1: #f0db3d;
    --display-lemon-scale-2: #d8bd0e;
    --display-lemon-scale-3: #c2a60a;
    --display-lemon-scale-4: #a68c07;
    --display-lemon-scale-5: #866e04;
    --display-lemon-scale-6: #786002;
    --display-lemon-scale-7: #654f01;
    --display-lemon-scale-8: #523f00;
    --display-lemon-scale-9: #3d2e00;
    --display-lime-bgColor-emphasis: #527a29;
    --display-lime-bgColor-muted: #e3f2b5;
    --display-lime-borderColor-emphasis: #527a29;
    --display-lime-borderColor-muted: #c7e580;
    --display-lime-fgColor: #476c28;
    --display-lime-scale-0: #e3f2b5;
    --display-lime-scale-1: #c7e580;
    --display-lime-scale-2: #9bd039;
    --display-lime-scale-3: #80b530;
    --display-lime-scale-4: #6c9d2f;
    --display-lime-scale-5: #527a29;
    --display-lime-scale-6: #476c28;
    --display-lime-scale-7: #3a5b25;
    --display-lime-scale-8: #2f4a21;
    --display-lime-scale-9: #213319;
    --display-olive-bgColor-emphasis: #64762d;
    --display-olive-bgColor-muted: #f0f0ad;
    --display-olive-borderColor-emphasis: #64762d;
    --display-olive-borderColor-muted: #dbe170;
    --display-olive-fgColor: #56682c;
    --display-olive-scale-0: #f0f0ad;
    --display-olive-scale-1: #dbe170;
    --display-olive-scale-2: #b9c832;
    --display-olive-scale-3: #9bae32;
    --display-olive-scale-4: #819532;
    --display-olive-scale-5: #64762d;
    --display-olive-scale-6: #56682c;
    --display-olive-scale-7: #495a2b;
    --display-olive-scale-8: #3b4927;
    --display-olive-scale-9: #2a331f;
    --display-orange-bgColor-emphasis: #b8500f;
    --display-orange-bgColor-muted: #ffe7d1;
    --display-orange-borderColor-emphasis: #b8500f;
    --display-orange-borderColor-muted: #fecfaa;
    --display-orange-fgColor: #a24610;
    --display-orange-scale-0: #ffe7d1;
    --display-orange-scale-1: #fecfaa;
    --display-orange-scale-2: #fbaf74;
    --display-orange-scale-3: #f68c41;
    --display-orange-scale-4: #eb670f;
    --display-orange-scale-5: #b8500f;
    --display-orange-scale-6: #a24610;
    --display-orange-scale-7: #8d3c11;
    --display-orange-scale-8: #70300f;
    --display-orange-scale-9: #54230d;
    --display-pine-bgColor-emphasis: #167e53;
    --display-pine-bgColor-muted: #bff8db;
    --display-pine-borderColor-emphasis: #167e53;
    --display-pine-borderColor-muted: #80efb9;
    --display-pine-fgColor: #156f4b;
    --display-pine-scale-0: #bff8db;
    --display-pine-scale-1: #80efb9;
    --display-pine-scale-2: #1dd781;
    --display-pine-scale-3: #1dbf76;
    --display-pine-scale-4: #1aa267;
    --display-pine-scale-5: #167e53;
    --display-pine-scale-6: #156f4b;
    --display-pine-scale-7: #135d41;
    --display-pine-scale-8: #114b36;
    --display-pine-scale-9: #0d3627;
    --display-pink-bgColor-emphasis: #ce2c85;
    --display-pink-bgColor-muted: #ffe5f1;
    --display-pink-borderColor-emphasis: #ce2c85;
    --display-pink-borderColor-muted: #fdc9e2;
    --display-pink-fgColor: #b12f79;
    --display-pink-scale-0: #ffe5f1;
    --display-pink-scale-1: #fdc9e2;
    --display-pink-scale-2: #f8a5cf;
    --display-pink-scale-3: #f184bc;
    --display-pink-scale-4: #e55da5;
    --display-pink-scale-5: #ce2c85;
    --display-pink-scale-6: #b12f79;
    --display-pink-scale-7: #8e2e66;
    --display-pink-scale-8: #6e2b53;
    --display-pink-scale-9: #4d233d;
    --display-plum-bgColor-emphasis: #a830e8;
    --display-plum-bgColor-muted: #f8e5ff;
    --display-plum-borderColor-emphasis: #a830e8;
    --display-plum-borderColor-muted: #f0cdfe;
    --display-plum-fgColor: #961edc;
    --display-plum-scale-0: #f8e5ff;
    --display-plum-scale-1: #f0cdfe;
    --display-plum-scale-2: #e2a7fb;
    --display-plum-scale-3: #d487f7;
    --display-plum-scale-4: #c264f2;
    --display-plum-scale-5: #a830e8;
    --display-plum-scale-6: #961edc;
    --display-plum-scale-7: #7d1eb8;
    --display-plum-scale-8: #651d96;
    --display-plum-scale-9: #471769;
    --display-purple-bgColor-emphasis: #894ceb;
    --display-purple-bgColor-muted: #f1e5ff;
    --display-purple-borderColor-emphasis: #894ceb;
    --display-purple-borderColor-muted: #e6d2fe;
    --display-purple-fgColor: #783ae4;
    --display-purple-scale-0: #f1e5ff;
    --display-purple-scale-1: #e6d2fe;
    --display-purple-scale-2: #d1b1fc;
    --display-purple-scale-3: #bc91f8;
    --display-purple-scale-4: #a672f3;
    --display-purple-scale-5: #894ceb;
    --display-purple-scale-6: #783ae4;
    --display-purple-scale-7: #6223d7;
    --display-purple-scale-8: #4f21ab;
    --display-purple-scale-9: #391b79;
    --display-red-bgColor-emphasis: #df0c24;
    --display-red-bgColor-muted: #ffe2e0;
    --display-red-borderColor-emphasis: #df0c24;
    --display-red-borderColor-muted: #fecdcd;
    --display-red-fgColor: #c50d28;
    --display-red-scale-0: #ffe2e0;
    --display-red-scale-1: #fecdcd;
    --display-red-scale-2: #fda5a7;
    --display-red-scale-3: #fb8389;
    --display-red-scale-4: #f85461;
    --display-red-scale-5: #df0c24;
    --display-red-scale-6: #c50d28;
    --display-red-scale-7: #a60c29;
    --display-red-scale-8: #880c27;
    --display-red-scale-9: #610a20;
    --display-teal-bgColor-emphasis: #127e81;
    --display-teal-bgColor-muted: #c7f5ef;
    --display-teal-borderColor-emphasis: #127e81;
    --display-teal-borderColor-muted: #89ebe1;
    --display-teal-fgColor: #106e75;
    --display-teal-scale-0: #c7f5ef;
    --display-teal-scale-1: #89ebe1;
    --display-teal-scale-2: #22d3c7;
    --display-teal-scale-3: #1db9b4;
    --display-teal-scale-4: #179b9b;
    --display-teal-scale-5: #127e81;
    --display-teal-scale-6: #106e75;
    --display-teal-scale-7: #0d5b63;
    --display-teal-scale-8: #0a4852;
    --display-teal-scale-9: #073740;
    --display-yellow-bgColor-emphasis: #946a00;
    --display-yellow-bgColor-muted: #ffec9e;
    --display-yellow-borderColor-emphasis: #946a00;
    --display-yellow-borderColor-muted: #ffd642;
    --display-yellow-fgColor: #805900;
    --display-yellow-scale-0: #ffec9e;
    --display-yellow-scale-1: #ffd642;
    --display-yellow-scale-2: #ebb400;
    --display-yellow-scale-3: #d19d00;
    --display-yellow-scale-4: #b88700;
    --display-yellow-scale-5: #946a00;
    --display-yellow-scale-6: #805900;
    --display-yellow-scale-7: #704d00;
    --display-yellow-scale-8: #5c3d00;
    --display-yellow-scale-9: #422b00;
    --fgColor-accent: #0969da;
    --fgColor-attention: #9a6700;
    --fgColor-danger: #bc4c00;
    --fgColor-disabled: #818b98;
    --fgColor-done: #8250df;
    --fgColor-muted: #59636e;
    --fgColor-neutral: #59636e;
    --fgColor-open: #bc4c00;
    --fgColor-severe: #bc4c00;
    --fgColor-sponsors: #bf3989;
    --fgColor-success: #0969da;
    --header-bgColor: #25292e;
    --header-borderColor-divider: #818b98;
    --headerSearch-bgColor: #25292e;
    --headerSearch-borderColor: #818b98;
    --highlight-neutral-bgColor: #fff8c5;
    --label-auburn-bgColor-active: #d4b7b5;
    --label-auburn-bgColor-hover: #e6d6d5;
    --label-auburn-bgColor-rest: #f2e9e9;
    --label-auburn-fgColor-active: #5d3937;
    --label-auburn-fgColor-hover: #744744;
    --label-auburn-fgColor-rest: #8a5551;
    --label-blue-bgColor-active: #75c8ff;
    --label-blue-bgColor-hover: #ade1ff;
    --label-blue-bgColor-rest: #d1f0ff;
    --label-blue-fgColor-active: #003d99;
    --label-blue-fgColor-hover: #004db3;
    --label-blue-fgColor-rest: #005fcc;
    --label-brown-bgColor-active: #cbbda4;
    --label-brown-bgColor-hover: #dfd7c8;
    --label-brown-bgColor-rest: #eeeae2;
    --label-brown-fgColor-active: #51412f;
    --label-brown-fgColor-hover: #64513a;
    --label-brown-fgColor-rest: #755f43;
    --label-coral-bgColor-active: #fcab92;
    --label-coral-bgColor-hover: #fecebe;
    --label-coral-bgColor-rest: #ffe5db;
    --label-coral-fgColor-active: #7e2011;
    --label-coral-fgColor-hover: #9b2712;
    --label-coral-fgColor-rest: #ba2e12;
    --label-cyan-bgColor-active: #00d0fa;
    --label-cyan-bgColor-hover: #7ae9ff;
    --label-cyan-bgColor-rest: #bdf4ff;
    --label-cyan-fgColor-active: #004857;
    --label-cyan-fgColor-hover: #00596b;
    --label-cyan-fgColor-rest: #006a80;
    --label-gray-bgColor-active: #b4c0cf;
    --label-gray-bgColor-hover: #d2dae4;
    --label-gray-bgColor-rest: #e8ecf2;
    --label-gray-fgColor-active: #424448;
    --label-gray-fgColor-hover: #4e535a;
    --label-gray-fgColor-rest: #5c6570;
    --label-green-bgColor-active: #54d961;
    --label-green-bgColor-hover: #9ceda0;
    --label-green-bgColor-rest: #caf7ca;
    --label-green-fgColor-active: #254b34;
    --label-green-fgColor-hover: #285c3b;
    --label-green-fgColor-rest: #2b6e3f;
    --label-indigo-bgColor-active: #b1b9fb;
    --label-indigo-bgColor-hover: #d2d7fe;
    --label-indigo-bgColor-rest: #e5e9ff;
    --label-indigo-fgColor-active: #2d2db4;
    --label-indigo-fgColor-hover: #393cd5;
    --label-indigo-fgColor-rest: #494edf;
    --label-lemon-bgColor-active: #d8bd0e;
    --label-lemon-bgColor-hover: #f0db3d;
    --label-lemon-bgColor-rest: #f7eea1;
    --label-lemon-fgColor-active: #523f00;
    --label-lemon-fgColor-hover: #654f01;
    --label-lemon-fgColor-rest: #786002;
    --label-lime-bgColor-active: #9bd039;
    --label-lime-bgColor-hover: #c7e580;
    --label-lime-bgColor-rest: #e3f2b5;
    --label-lime-fgColor-active: #2f4a21;
    --label-lime-fgColor-hover: #3a5b25;
    --label-lime-fgColor-rest: #476c28;
    --label-olive-bgColor-active: #b9c832;
    --label-olive-bgColor-hover: #dbe170;
    --label-olive-bgColor-rest: #f0f0ad;
    --label-olive-fgColor-active: #3b4927;
    --label-olive-fgColor-hover: #495a2b;
    --label-olive-fgColor-rest: #56682c;
    --label-orange-bgColor-active: #fbaf74;
    --label-orange-bgColor-hover: #fecfaa;
    --label-orange-bgColor-rest: #ffe7d1;
    --label-orange-fgColor-active: #70300f;
    --label-orange-fgColor-hover: #8d3c11;
    --label-orange-fgColor-rest: #a24610;
    --label-pine-bgColor-active: #1dd781;
    --label-pine-bgColor-hover: #80efb9;
    --label-pine-bgColor-rest: #bff8db;
    --label-pine-fgColor-active: #114b36;
    --label-pine-fgColor-hover: #135d41;
    --label-pine-fgColor-rest: #156f4b;
    --label-pink-bgColor-active: #f8a5cf;
    --label-pink-bgColor-hover: #fdc9e2;
    --label-pink-bgColor-rest: #ffe5f1;
    --label-pink-fgColor-active: #6e2b53;
    --label-pink-fgColor-hover: #8e2e66;
    --label-pink-fgColor-rest: #b12f79;
    --label-plum-bgColor-active: #e2a7fb;
    --label-plum-bgColor-hover: #f0cdfe;
    --label-plum-bgColor-rest: #f8e5ff;
    --label-plum-fgColor-active: #651d96;
    --label-plum-fgColor-hover: #7d1eb8;
    --label-plum-fgColor-rest: #961edc;
    --label-purple-bgColor-active: #d1b1fc;
    --label-purple-bgColor-hover: #e6d2fe;
    --label-purple-bgColor-rest: #f1e5ff;
    --label-purple-fgColor-active: #4f21ab;
    --label-purple-fgColor-hover: #6223d7;
    --label-purple-fgColor-rest: #783ae4;
    --label-red-bgColor-active: #fda5a7;
    --label-red-bgColor-hover: #fecdcd;
    --label-red-bgColor-rest: #ffe2e0;
    --label-red-fgColor-active: #880c27;
    --label-red-fgColor-hover: #a60c29;
    --label-red-fgColor-rest: #c50d28;
    --label-teal-bgColor-active: #22d3c7;
    --label-teal-bgColor-hover: #89ebe1;
    --label-teal-bgColor-rest: #c7f5ef;
    --label-teal-fgColor-active: #0a4852;
    --label-teal-fgColor-hover: #0d5b63;
    --label-teal-fgColor-rest: #106e75;
    --label-yellow-bgColor-active: #ebb400;
    --label-yellow-bgColor-hover: #ffd642;
    --label-yellow-bgColor-rest: #ffec9e;
    --label-yellow-fgColor-active: #5c3d00;
    --label-yellow-fgColor-hover: #704d00;
    --label-yellow-fgColor-rest: #805900;
    --menu-bgColor-active: #ffffff00;
    --overlay-backdrop-bgColor: #c8d1da66;
    --reactionButton-selected-bgColor-rest: #ddf4ff;
    --reactionButton-selected-fgColor-hover: #0550ae;
    --selectMenu-bgColor-active: #b6e3ff;
    --selectMenu-borderColor: #ffffff00;
    --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
    --skeletonLoader-bgColor: #818b981a;
    --topicTag-borderColor: #ffffff00;
    --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
    --underlineNav-borderColor-active: #fd8c73;
    --avatar-bgColor: #ffffff;
    --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
    --bgColor-black: #1f2328;
    --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
    --bgColor-closed-muted: var(--bgColor-neutral-muted);
    --bgColor-default: #ffffff;
    --bgColor-inset: var(--bgColor-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #0969da;
    --border-accent-muted: 0.0625rem solid #54aeff66;
    --border-attention-emphasis: 0.0625rem solid #9a6700;
    --border-attention-muted: 0.0625rem solid #d4a72c66;
    --border-danger-emphasis: 0.0625rem solid #bc4c00;
    --border-danger-muted: 0.0625rem solid #fff1e5;
    --border-default: 0.0625rem solid #d1d9e0;
    --border-disabled: 0.0625rem solid #818b981a;
    --border-done-emphasis: 0.0625rem solid #8250df;
    --border-done-muted: 0.0625rem solid #c297ff66;
    --border-emphasis: 0.0625rem solid #818b98;
    --border-neutral-emphasis: 0.0625rem solid #59636e;
    --border-severe-emphasis: 0.0625rem solid #bc4c00;
    --border-severe-muted: 0.0625rem solid #fb8f4466;
    --border-sponsors-emphasis: 0.0625rem solid #bf3989;
    --border-sponsors-muted: 0.0625rem solid #ff80c866;
    --border-success-emphasis: 0.0625rem solid #0969da;
    --border-success-muted: 0.0625rem solid #ddf4ff;
    --border-transparent: 0.0625rem solid #ffffff00;
    --borderColor-closed-emphasis: var(--borderColor-emphasis);
    --borderColor-closed-muted: #d1d9e066;
    --borderColor-muted: #d1d9e0b3;
    --borderColor-translucent: #1f232826;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #bc4c0080;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-fgColor-rest: var(--fgColor-danger);
    --button-danger-iconColor-hover: #ffffff;
    --button-danger-iconColor-rest: var(--fgColor-danger);
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
    --button-outline-bgColor-rest: var(--control-bgColor-rest);
    --button-outline-fgColor-active: #ffffff;
    --button-outline-fgColor-disabled: #0969da80;
    --button-outline-fgColor-hover: #ffffff;
    --button-outline-fgColor-rest: var(--fgColor-accent);
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #1f232826;
    --button-primary-fgColor-disabled: #ffffffcc;
    --buttonCounter-danger-bgColor-disabled: #bc4c000d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-bgColor-rest: #bc4c001a;
    --buttonCounter-danger-fgColor-disabled: #bc4c0080;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #0969da0d;
    --buttonCounter-outline-bgColor-hover: #ffffff33;
    --buttonCounter-outline-bgColor-rest: #0969da1a;
    --buttonCounter-outline-fgColor-disabled: #0969da80;
    --buttonCounter-outline-fgColor-hover: #ffffff;
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --codeMirror-syntax-fgColor-comment: #1f2328;
    --color-ansi-black: #1f2328;
    --color-prettylights-syntax-markup-bold: #1f2328;
    --color-prettylights-syntax-markup-italic: #1f2328;
    --color-prettylights-syntax-storage-modifier-import: #1f2328;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-danger-bgColor-active: #fff1e566;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-danger-fgColor-hover: var(--fgColor-danger);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlKnob-bgColor-rest: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --fgColor-black: #1f2328;
    --fgColor-closed: var(--fgColor-muted);
    --fgColor-default: #1f2328;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #ffffff;
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --header-fgColor-logo: #ffffff;
    --overlay-bgColor: #ffffff;
    --page-header-bgColor: var(--bgColor-muted);
    --selection-bgColor: #0969da33;
    --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
    --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
    --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
    --sideNav-bgColor-selected: #ffffff;
    --timelineBadge-bgColor: var(--bgColor-muted);
    --tooltip-bgColor: var(--bgColor-emphasis);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #d1d9e0b3;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8250df;
    --border-upsell-muted: 0.0625rem solid #c297ff66;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-active: var(--control-borderColor-rest);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: #ffffffcc;
    --card-bgColor: var(--bgColor-default);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --control-borderColor-selected: var(--control-bgColor-selected);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --focus-outline: 2px solid #0969da;
    --overlay-borderColor: #d1d9e080;
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --underlineNav-borderColor-hover: var(--borderColor-muted);
    --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
    --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
    --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
    --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --button-danger-bgColor-active: #74041a;
  --button-outline-bgColor-active: #033f9d;
  --button-primary-bgColor-active: #03501b;
  --button-primary-bgColor-disabled: #85cb97;
  --button-primary-bgColor-hover: #04571e;
  --button-primary-borderColor-disabled: #85cb97;
  --buttonCounter-danger-fgColor-rest: #980e1e;
  --color-ansi-cyan: #1b7c83;
  --color-ansi-cyan-bright: #3192aa;
  --control-checked-bgColor-active: #033f9d;
  --control-checked-bgColor-hover: #0344a8;
  --control-checked-borderColor-active: #033f9d;
  --control-checked-borderColor-hover: #0344a8;
  --control-danger-bgColor-active: #8c0b1d;
  --reactionButton-selected-bgColor-hover: #c7e9ff;
  --avatarStack-fade-bgColor-default: #c8d1da;
  --avatarStack-fade-bgColor-muted: #dae0e7;
  --bgColor-accent-emphasis: #0349b4;
  --bgColor-accent-muted: #dff7ff;
  --bgColor-attention-emphasis: #744500;
  --bgColor-attention-muted: #fcf7be;
  --bgColor-danger-emphasis: #a0111f;
  --bgColor-danger-muted: #fff0ee;
  --bgColor-disabled: #e0e6eb;
  --bgColor-done-emphasis: #622cbc;
  --bgColor-done-muted: #faf0fe;
  --bgColor-emphasis: #25292e;
  --bgColor-inset: #eff2f5;
  --bgColor-inverse: #25292e;
  --bgColor-muted: #e6eaef;
  --bgColor-neutral-emphasis: #454c54;
  --bgColor-neutral-muted: #e0e6eb;
  --bgColor-severe-emphasis: #873800;
  --bgColor-severe-muted: #fff2d5;
  --bgColor-sponsors-emphasis: #971368;
  --bgColor-sponsors-muted: #feeff7;
  --bgColor-success-emphasis: #055d20;
  --bgColor-success-muted: #d2fedb;
  --bgColor-transparent: #ffffff00;
  --borderColor-accent-emphasis: #0349b4;
  --borderColor-accent-muted: #368cf9;
  --borderColor-attention-emphasis: #744500;
  --borderColor-attention-muted: #b58407;
  --borderColor-danger-emphasis: #a0111f;
  --borderColor-danger-muted: #ee5a5d;
  --borderColor-default: #454c54;
  --borderColor-disabled: #59636e1f;
  --borderColor-done-emphasis: #622cbc;
  --borderColor-done-muted: #a371f7;
  --borderColor-neutral-emphasis: #59636e;
  --borderColor-severe-emphasis: #873800;
  --borderColor-severe-muted: #dc6d1a;
  --borderColor-sponsors-emphasis: #971368;
  --borderColor-sponsors-muted: #ed4baf;
  --borderColor-success-emphasis: #055d20;
  --borderColor-success-muted: #26a148;
  --borderColor-translucent: #59636e;
  --borderColor-transparent: #ffffff00;
  --button-danger-bgColor-hover: #86061d;
  --button-danger-borderColor-hover: #6e011a;
  --button-danger-shadow-selected: inset 0px 1px 0px 0px #43001133;
  --button-inactive-fgColor: #454c54;
  --button-invisible-bgColor-disabled: #ffffff00;
  --button-invisible-borderColor-disabled: #ffffff00;
  --button-invisible-fgColor-hover: #393f46;
  --button-invisible-iconColor-hover: #393f46;
  --button-outline-shadow-selected: inset 0px 1px 0px 0px #021a4a33;
  --button-primary-bgColor-rest: #055d20;
  --button-primary-borderColor-active: #013d14;
  --button-primary-borderColor-hover: #013d14;
  --button-primary-borderColor-rest: #013d14;
  --button-primary-shadow-selected: inset 0px 1px 0px 0px #00230b4d;
  --button-star-iconColor: #d5a824;
  --buttonCounter-default-bgColor-rest: #c8d1da;
  --buttonCounter-outline-fgColor-rest: #023b95;
  --buttonCounter-primary-bgColor-rest: #00230b33;
  --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;
  --color-ansi-black-bright: #393f46;
  --color-ansi-blue: #0349b4;
  --color-ansi-blue-bright: #1168e3;
  --color-ansi-gray: #59636e;
  --color-ansi-green: #024c1a;
  --color-ansi-green-bright: #055d20;
  --color-ansi-magenta: #622cbc;
  --color-ansi-magenta-bright: #844ae7;
  --color-ansi-red: #a0111f;
  --color-ansi-red-bright: #86061d;
  --color-ansi-white: #59636e;
  --color-ansi-white-bright: #818b98;
  --color-ansi-yellow: #3f2200;
  --color-ansi-yellow-bright: #4e2c00;
  --color-prettylights-syntax-brackethighlighter-angle: #59636e;
  --color-prettylights-syntax-brackethighlighter-unmatched: #6e011a;
  --color-prettylights-syntax-carriage-return-bg: #a0111f;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-comment: #59636e;
  --color-prettylights-syntax-constant: #023b95;
  --color-prettylights-syntax-constant-other-reference-link: #032563;
  --color-prettylights-syntax-entity: #512598;
  --color-prettylights-syntax-entity-tag: #023b95;
  --color-prettylights-syntax-invalid-illegal-bg: #6e011a;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-keyword: #a0111f;
  --color-prettylights-syntax-markup-changed-bg: #ffc67b;
  --color-prettylights-syntax-markup-changed-text: #702c00;
  --color-prettylights-syntax-markup-deleted-bg: #fff0ee;
  --color-prettylights-syntax-markup-deleted-text: #6e011a;
  --color-prettylights-syntax-markup-heading: #023b95;
  --color-prettylights-syntax-markup-ignored-bg: #023b95;
  --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
  --color-prettylights-syntax-markup-inserted-bg: #d2fedb;
  --color-prettylights-syntax-markup-inserted-text: #024c1a;
  --color-prettylights-syntax-markup-list: #2e1800;
  --color-prettylights-syntax-meta-diff-range: #622cbc;
  --color-prettylights-syntax-string: #032563;
  --color-prettylights-syntax-string-regexp: #024c1a;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
  --color-prettylights-syntax-variable: #702c00;
  --contribution-default-bgColor-0: #eff2f5;
  --contribution-default-bgColor-1: #82e596;
  --contribution-default-bgColor-2: #26a148;
  --contribution-default-bgColor-3: #117f32;
  --contribution-default-bgColor-4: #024c1a;
  --contribution-default-borderColor-0: #0104090d;
  --contribution-default-borderColor-1: #0104090d;
  --contribution-default-borderColor-2: #0104090d;
  --contribution-default-borderColor-3: #0104090d;
  --contribution-default-borderColor-4: #0104090d;
  --contribution-halloween-bgColor-1: #f0db3d;
  --contribution-halloween-bgColor-2: #ffd642;
  --contribution-halloween-bgColor-3: #f68c41;
  --contribution-halloween-bgColor-4: #010409;
  --contribution-winter-bgColor-1: #9cd7ff;
  --contribution-winter-bgColor-2: #368cf9;
  --contribution-winter-bgColor-3: #0349b4;
  --contribution-winter-bgColor-4: #032563;
  --control-bgColor-active: #d1d9e0;
  --control-bgColor-hover: #dae0e7;
  --control-bgColor-rest: #e0e6eb;
  --control-fgColor-placeholder: #454c54;
  --control-fgColor-rest: #25292e;
  --control-transparent-bgColor-active: #d1d9e0;
  --control-transparent-bgColor-hover: #dae0e7;
  --control-transparent-bgColor-rest: #ffffff00;
  --control-transparent-bgColor-selected: #dae0e7;
  --control-transparent-borderColor-rest: #ffffff00;
  --controlTrack-bgColor-active: #c8d1da;
  --controlTrack-bgColor-hover: #d1d9e0;
  --controlTrack-bgColor-rest: #dae0e7;
  --controlTrack-fgColor-rest: #59636e;
  --data-auburn-color-emphasis: #9d615c;
  --data-auburn-color-muted: #f2e9e9;
  --data-blue-color-emphasis: #006edb;
  --data-blue-color-muted: #d1f0ff;
  --data-brown-color-emphasis: #856d4c;
  --data-brown-color-muted: #eeeae2;
  --data-coral-color-emphasis: #d43511;
  --data-coral-color-muted: #ffe5db;
  --data-gray-color-emphasis: #808fa3;
  --data-gray-color-muted: #e8ecf2;
  --data-green-color-emphasis: #30a147;
  --data-green-color-muted: #caf7ca;
  --data-lemon-color-emphasis: #866e04;
  --data-lemon-color-muted: #f7eea1;
  --data-lime-color-emphasis: #527a29;
  --data-lime-color-muted: #e3f2b5;
  --data-olive-color-emphasis: #64762d;
  --data-olive-color-muted: #f0f0ad;
  --data-orange-color-emphasis: #eb670f;
  --data-orange-color-muted: #ffe7d1;
  --data-pine-color-emphasis: #167e53;
  --data-pine-color-muted: #bff8db;
  --data-pink-color-emphasis: #ce2c85;
  --data-pink-color-muted: #ffe5f1;
  --data-plum-color-emphasis: #a830e8;
  --data-plum-color-muted: #f8e5ff;
  --data-purple-color-emphasis: #894ceb;
  --data-purple-color-muted: #f1e5ff;
  --data-red-color-emphasis: #df0c24;
  --data-red-color-muted: #ffe2e0;
  --data-teal-color-emphasis: #179b9b;
  --data-teal-color-muted: #c7f5ef;
  --data-yellow-color-emphasis: #b88700;
  --data-yellow-color-muted: #ffec9e;
  --diffBlob-additionNum-bgColor: #82e596;
  --diffBlob-additionWord-bgColor: #055d20;
  --diffBlob-deletionNum-bgColor: #ffc1bc;
  --diffBlob-deletionWord-bgColor: #a0111f;
  --diffBlob-hunkNum-bgColor-rest: #9cd7ff;
  --display-auburn-bgColor-emphasis: #744744;
  --display-auburn-bgColor-muted: #f2e9e9;
  --display-auburn-borderColor-emphasis: #8a5551;
  --display-auburn-borderColor-muted: #e6d6d5;
  --display-auburn-fgColor: #5d3937;
  --display-auburn-scale-0: #f2e9e9;
  --display-auburn-scale-1: #e6d6d5;
  --display-auburn-scale-2: #d4b7b5;
  --display-auburn-scale-3: #c59e9b;
  --display-auburn-scale-4: #b4827e;
  --display-auburn-scale-5: #9d615c;
  --display-auburn-scale-6: #8a5551;
  --display-auburn-scale-7: #744744;
  --display-auburn-scale-8: #5d3937;
  --display-auburn-scale-9: #432928;
  --display-blue-bgColor-emphasis: #004db3;
  --display-blue-bgColor-muted: #d1f0ff;
  --display-blue-borderColor-emphasis: #005fcc;
  --display-blue-borderColor-muted: #ade1ff;
  --display-blue-fgColor: #003d99;
  --display-blue-scale-0: #d1f0ff;
  --display-blue-scale-1: #ade1ff;
  --display-blue-scale-2: #75c8ff;
  --display-blue-scale-3: #47afff;
  --display-blue-scale-4: #0f8fff;
  --display-blue-scale-5: #006edb;
  --display-blue-scale-6: #005fcc;
  --display-blue-scale-7: #004db3;
  --display-blue-scale-8: #003d99;
  --display-blue-scale-9: #002b75;
  --display-brown-bgColor-emphasis: #64513a;
  --display-brown-bgColor-muted: #eeeae2;
  --display-brown-borderColor-emphasis: #755f43;
  --display-brown-borderColor-muted: #dfd7c8;
  --display-brown-fgColor: #51412f;
  --display-brown-scale-0: #eeeae2;
  --display-brown-scale-1: #dfd7c8;
  --display-brown-scale-2: #cbbda4;
  --display-brown-scale-3: #b8a484;
  --display-brown-scale-4: #a68b64;
  --display-brown-scale-5: #856d4c;
  --display-brown-scale-6: #755f43;
  --display-brown-scale-7: #64513a;
  --display-brown-scale-8: #51412f;
  --display-brown-scale-9: #3a2e22;
  --display-coral-bgColor-emphasis: #9b2712;
  --display-coral-bgColor-muted: #ffe5db;
  --display-coral-borderColor-emphasis: #ba2e12;
  --display-coral-borderColor-muted: #fecebe;
  --display-coral-fgColor: #7e2011;
  --display-coral-scale-0: #ffe5db;
  --display-coral-scale-1: #fecebe;
  --display-coral-scale-2: #fcab92;
  --display-coral-scale-3: #f88768;
  --display-coral-scale-4: #f25f3a;
  --display-coral-scale-5: #d43511;
  --display-coral-scale-6: #ba2e12;
  --display-coral-scale-7: #9b2712;
  --display-coral-scale-8: #7e2011;
  --display-coral-scale-9: #5d180e;
  --display-cyan-bgColor-emphasis: #00596b;
  --display-cyan-bgColor-muted: #bdf4ff;
  --display-cyan-borderColor-emphasis: #006a80;
  --display-cyan-borderColor-muted: #7ae9ff;
  --display-cyan-fgColor: #004857;
  --display-cyan-scale-0: #bdf4ff;
  --display-cyan-scale-1: #7ae9ff;
  --display-cyan-scale-2: #00d0fa;
  --display-cyan-scale-3: #00b7db;
  --display-cyan-scale-4: #0099b8;
  --display-cyan-scale-5: #007b94;
  --display-cyan-scale-6: #006a80;
  --display-cyan-scale-7: #00596b;
  --display-cyan-scale-8: #004857;
  --display-cyan-scale-9: #003742;
  --display-gray-bgColor-emphasis: #4e535a;
  --display-gray-bgColor-muted: #e8ecf2;
  --display-gray-borderColor-emphasis: #5c6570;
  --display-gray-borderColor-muted: #d2dae4;
  --display-gray-fgColor: #424448;
  --display-gray-scale-0: #e8ecf2;
  --display-gray-scale-1: #d2dae4;
  --display-gray-scale-2: #b4c0cf;
  --display-gray-scale-3: #9ba9bb;
  --display-gray-scale-4: #808fa3;
  --display-gray-scale-5: #647182;
  --display-gray-scale-6: #5c6570;
  --display-gray-scale-7: #4e535a;
  --display-gray-scale-8: #424448;
  --display-gray-scale-9: #303031;
  --display-green-bgColor-emphasis: #285c3b;
  --display-green-bgColor-muted: #caf7ca;
  --display-green-borderColor-emphasis: #2b6e3f;
  --display-green-borderColor-muted: #9ceda0;
  --display-green-fgColor: #254b34;
  --display-green-scale-0: #caf7ca;
  --display-green-scale-1: #9ceda0;
  --display-green-scale-2: #54d961;
  --display-green-scale-3: #31bf46;
  --display-green-scale-4: #30a147;
  --display-green-scale-5: #2c8141;
  --display-green-scale-6: #2b6e3f;
  --display-green-scale-7: #285c3b;
  --display-green-scale-8: #254b34;
  --display-green-scale-9: #1d3528;
  --display-indigo-bgColor-emphasis: #393cd5;
  --display-indigo-bgColor-muted: #e5e9ff;
  --display-indigo-borderColor-emphasis: #494edf;
  --display-indigo-borderColor-muted: #d2d7fe;
  --display-indigo-fgColor: #2d2db4;
  --display-indigo-scale-0: #e5e9ff;
  --display-indigo-scale-1: #d2d7fe;
  --display-indigo-scale-2: #b1b9fb;
  --display-indigo-scale-3: #979ff7;
  --display-indigo-scale-4: #7a82f0;
  --display-indigo-scale-5: #5a61e7;
  --display-indigo-scale-6: #494edf;
  --display-indigo-scale-7: #393cd5;
  --display-indigo-scale-8: #2d2db4;
  --display-indigo-scale-9: #25247b;
  --display-lemon-bgColor-emphasis: #654f01;
  --display-lemon-bgColor-muted: #f7eea1;
  --display-lemon-borderColor-emphasis: #786002;
  --display-lemon-borderColor-muted: #f0db3d;
  --display-lemon-fgColor: #523f00;
  --display-lemon-scale-0: #f7eea1;
  --display-lemon-scale-1: #f0db3d;
  --display-lemon-scale-2: #d8bd0e;
  --display-lemon-scale-3: #c2a60a;
  --display-lemon-scale-4: #a68c07;
  --display-lemon-scale-5: #866e04;
  --display-lemon-scale-6: #786002;
  --display-lemon-scale-7: #654f01;
  --display-lemon-scale-8: #523f00;
  --display-lemon-scale-9: #3d2e00;
  --display-lime-bgColor-emphasis: #3a5b25;
  --display-lime-bgColor-muted: #e3f2b5;
  --display-lime-borderColor-emphasis: #476c28;
  --display-lime-borderColor-muted: #c7e580;
  --display-lime-fgColor: #2f4a21;
  --display-lime-scale-0: #e3f2b5;
  --display-lime-scale-1: #c7e580;
  --display-lime-scale-2: #9bd039;
  --display-lime-scale-3: #80b530;
  --display-lime-scale-4: #6c9d2f;
  --display-lime-scale-5: #527a29;
  --display-lime-scale-6: #476c28;
  --display-lime-scale-7: #3a5b25;
  --display-lime-scale-8: #2f4a21;
  --display-lime-scale-9: #213319;
  --display-olive-bgColor-emphasis: #495a2b;
  --display-olive-bgColor-muted: #f0f0ad;
  --display-olive-borderColor-emphasis: #56682c;
  --display-olive-borderColor-muted: #dbe170;
  --display-olive-fgColor: #3b4927;
  --display-olive-scale-0: #f0f0ad;
  --display-olive-scale-1: #dbe170;
  --display-olive-scale-2: #b9c832;
  --display-olive-scale-3: #9bae32;
  --display-olive-scale-4: #819532;
  --display-olive-scale-5: #64762d;
  --display-olive-scale-6: #56682c;
  --display-olive-scale-7: #495a2b;
  --display-olive-scale-8: #3b4927;
  --display-olive-scale-9: #2a331f;
  --display-orange-bgColor-emphasis: #8d3c11;
  --display-orange-bgColor-muted: #ffe7d1;
  --display-orange-borderColor-emphasis: #a24610;
  --display-orange-borderColor-muted: #fecfaa;
  --display-orange-fgColor: #70300f;
  --display-orange-scale-0: #ffe7d1;
  --display-orange-scale-1: #fecfaa;
  --display-orange-scale-2: #fbaf74;
  --display-orange-scale-3: #f68c41;
  --display-orange-scale-4: #eb670f;
  --display-orange-scale-5: #b8500f;
  --display-orange-scale-6: #a24610;
  --display-orange-scale-7: #8d3c11;
  --display-orange-scale-8: #70300f;
  --display-orange-scale-9: #54230d;
  --display-pine-bgColor-emphasis: #135d41;
  --display-pine-bgColor-muted: #bff8db;
  --display-pine-borderColor-emphasis: #156f4b;
  --display-pine-borderColor-muted: #80efb9;
  --display-pine-fgColor: #114b36;
  --display-pine-scale-0: #bff8db;
  --display-pine-scale-1: #80efb9;
  --display-pine-scale-2: #1dd781;
  --display-pine-scale-3: #1dbf76;
  --display-pine-scale-4: #1aa267;
  --display-pine-scale-5: #167e53;
  --display-pine-scale-6: #156f4b;
  --display-pine-scale-7: #135d41;
  --display-pine-scale-8: #114b36;
  --display-pine-scale-9: #0d3627;
  --display-pink-bgColor-emphasis: #8e2e66;
  --display-pink-bgColor-muted: #ffe5f1;
  --display-pink-borderColor-emphasis: #b12f79;
  --display-pink-borderColor-muted: #fdc9e2;
  --display-pink-fgColor: #6e2b53;
  --display-pink-scale-0: #ffe5f1;
  --display-pink-scale-1: #fdc9e2;
  --display-pink-scale-2: #f8a5cf;
  --display-pink-scale-3: #f184bc;
  --display-pink-scale-4: #e55da5;
  --display-pink-scale-5: #ce2c85;
  --display-pink-scale-6: #b12f79;
  --display-pink-scale-7: #8e2e66;
  --display-pink-scale-8: #6e2b53;
  --display-pink-scale-9: #4d233d;
  --display-plum-bgColor-emphasis: #7d1eb8;
  --display-plum-bgColor-muted: #f8e5ff;
  --display-plum-borderColor-emphasis: #961edc;
  --display-plum-borderColor-muted: #f0cdfe;
  --display-plum-fgColor: #651d96;
  --display-plum-scale-0: #f8e5ff;
  --display-plum-scale-1: #f0cdfe;
  --display-plum-scale-2: #e2a7fb;
  --display-plum-scale-3: #d487f7;
  --display-plum-scale-4: #c264f2;
  --display-plum-scale-5: #a830e8;
  --display-plum-scale-6: #961edc;
  --display-plum-scale-7: #7d1eb8;
  --display-plum-scale-8: #651d96;
  --display-plum-scale-9: #471769;
  --display-purple-bgColor-emphasis: #6223d7;
  --display-purple-bgColor-muted: #f1e5ff;
  --display-purple-borderColor-emphasis: #783ae4;
  --display-purple-borderColor-muted: #e6d2fe;
  --display-purple-fgColor: #4f21ab;
  --display-purple-scale-0: #f1e5ff;
  --display-purple-scale-1: #e6d2fe;
  --display-purple-scale-2: #d1b1fc;
  --display-purple-scale-3: #bc91f8;
  --display-purple-scale-4: #a672f3;
  --display-purple-scale-5: #894ceb;
  --display-purple-scale-6: #783ae4;
  --display-purple-scale-7: #6223d7;
  --display-purple-scale-8: #4f21ab;
  --display-purple-scale-9: #391b79;
  --display-red-bgColor-emphasis: #a60c29;
  --display-red-bgColor-muted: #ffe2e0;
  --display-red-borderColor-emphasis: #c50d28;
  --display-red-borderColor-muted: #fecdcd;
  --display-red-fgColor: #880c27;
  --display-red-scale-0: #ffe2e0;
  --display-red-scale-1: #fecdcd;
  --display-red-scale-2: #fda5a7;
  --display-red-scale-3: #fb8389;
  --display-red-scale-4: #f85461;
  --display-red-scale-5: #df0c24;
  --display-red-scale-6: #c50d28;
  --display-red-scale-7: #a60c29;
  --display-red-scale-8: #880c27;
  --display-red-scale-9: #610a20;
  --display-teal-bgColor-emphasis: #0d5b63;
  --display-teal-bgColor-muted: #c7f5ef;
  --display-teal-borderColor-emphasis: #106e75;
  --display-teal-borderColor-muted: #89ebe1;
  --display-teal-fgColor: #0a4852;
  --display-teal-scale-0: #c7f5ef;
  --display-teal-scale-1: #89ebe1;
  --display-teal-scale-2: #22d3c7;
  --display-teal-scale-3: #1db9b4;
  --display-teal-scale-4: #179b9b;
  --display-teal-scale-5: #127e81;
  --display-teal-scale-6: #106e75;
  --display-teal-scale-7: #0d5b63;
  --display-teal-scale-8: #0a4852;
  --display-teal-scale-9: #073740;
  --display-yellow-bgColor-emphasis: #704d00;
  --display-yellow-bgColor-muted: #ffec9e;
  --display-yellow-borderColor-emphasis: #805900;
  --display-yellow-borderColor-muted: #ffd642;
  --display-yellow-fgColor: #5c3d00;
  --display-yellow-scale-0: #ffec9e;
  --display-yellow-scale-1: #ffd642;
  --display-yellow-scale-2: #ebb400;
  --display-yellow-scale-3: #d19d00;
  --display-yellow-scale-4: #b88700;
  --display-yellow-scale-5: #946a00;
  --display-yellow-scale-6: #805900;
  --display-yellow-scale-7: #704d00;
  --display-yellow-scale-8: #5c3d00;
  --display-yellow-scale-9: #422b00;
  --fgColor-accent: #023b95;
  --fgColor-attention: #603700;
  --fgColor-danger: #86061d;
  --fgColor-disabled: #59636e;
  --fgColor-done: #512598;
  --fgColor-muted: #454c54;
  --fgColor-neutral: #393f46;
  --fgColor-severe: #702c00;
  --fgColor-sponsors: #7d0c57;
  --fgColor-success: #024c1a;
  --header-bgColor: #25292e;
  --header-borderColor-divider: #c8d1da;
  --headerSearch-bgColor: #25292e;
  --headerSearch-borderColor: #818b98;
  --highlight-neutral-bgColor: #fcf7be;
  --label-auburn-bgColor-active: #d4b7b5;
  --label-auburn-bgColor-hover: #e6d6d5;
  --label-auburn-bgColor-rest: #f2e9e9;
  --label-auburn-fgColor-active: #5d3937;
  --label-auburn-fgColor-hover: #744744;
  --label-auburn-fgColor-rest: #8a5551;
  --label-blue-bgColor-active: #75c8ff;
  --label-blue-bgColor-hover: #ade1ff;
  --label-blue-bgColor-rest: #d1f0ff;
  --label-blue-fgColor-active: #003d99;
  --label-blue-fgColor-hover: #004db3;
  --label-blue-fgColor-rest: #005fcc;
  --label-brown-bgColor-active: #cbbda4;
  --label-brown-bgColor-hover: #dfd7c8;
  --label-brown-bgColor-rest: #eeeae2;
  --label-brown-fgColor-active: #51412f;
  --label-brown-fgColor-hover: #64513a;
  --label-brown-fgColor-rest: #755f43;
  --label-coral-bgColor-active: #fcab92;
  --label-coral-bgColor-hover: #fecebe;
  --label-coral-bgColor-rest: #ffe5db;
  --label-coral-fgColor-active: #7e2011;
  --label-coral-fgColor-hover: #9b2712;
  --label-coral-fgColor-rest: #ba2e12;
  --label-cyan-bgColor-active: #00d0fa;
  --label-cyan-bgColor-hover: #7ae9ff;
  --label-cyan-bgColor-rest: #bdf4ff;
  --label-cyan-fgColor-active: #004857;
  --label-cyan-fgColor-hover: #00596b;
  --label-cyan-fgColor-rest: #006a80;
  --label-gray-bgColor-active: #b4c0cf;
  --label-gray-bgColor-hover: #d2dae4;
  --label-gray-bgColor-rest: #e8ecf2;
  --label-gray-fgColor-active: #424448;
  --label-gray-fgColor-hover: #4e535a;
  --label-gray-fgColor-rest: #5c6570;
  --label-green-bgColor-active: #54d961;
  --label-green-bgColor-hover: #9ceda0;
  --label-green-bgColor-rest: #caf7ca;
  --label-green-fgColor-active: #254b34;
  --label-green-fgColor-hover: #285c3b;
  --label-green-fgColor-rest: #2b6e3f;
  --label-indigo-bgColor-active: #b1b9fb;
  --label-indigo-bgColor-hover: #d2d7fe;
  --label-indigo-bgColor-rest: #e5e9ff;
  --label-indigo-fgColor-active: #2d2db4;
  --label-indigo-fgColor-hover: #393cd5;
  --label-indigo-fgColor-rest: #494edf;
  --label-lemon-bgColor-active: #d8bd0e;
  --label-lemon-bgColor-hover: #f0db3d;
  --label-lemon-bgColor-rest: #f7eea1;
  --label-lemon-fgColor-active: #523f00;
  --label-lemon-fgColor-hover: #654f01;
  --label-lemon-fgColor-rest: #786002;
  --label-lime-bgColor-active: #9bd039;
  --label-lime-bgColor-hover: #c7e580;
  --label-lime-bgColor-rest: #e3f2b5;
  --label-lime-fgColor-active: #2f4a21;
  --label-lime-fgColor-hover: #3a5b25;
  --label-lime-fgColor-rest: #476c28;
  --label-olive-bgColor-active: #b9c832;
  --label-olive-bgColor-hover: #dbe170;
  --label-olive-bgColor-rest: #f0f0ad;
  --label-olive-fgColor-active: #3b4927;
  --label-olive-fgColor-hover: #495a2b;
  --label-olive-fgColor-rest: #56682c;
  --label-orange-bgColor-active: #fbaf74;
  --label-orange-bgColor-hover: #fecfaa;
  --label-orange-bgColor-rest: #ffe7d1;
  --label-orange-fgColor-active: #70300f;
  --label-orange-fgColor-hover: #8d3c11;
  --label-orange-fgColor-rest: #a24610;
  --label-pine-bgColor-active: #1dd781;
  --label-pine-bgColor-hover: #80efb9;
  --label-pine-bgColor-rest: #bff8db;
  --label-pine-fgColor-active: #114b36;
  --label-pine-fgColor-hover: #135d41;
  --label-pine-fgColor-rest: #156f4b;
  --label-pink-bgColor-active: #f8a5cf;
  --label-pink-bgColor-hover: #fdc9e2;
  --label-pink-bgColor-rest: #ffe5f1;
  --label-pink-fgColor-active: #6e2b53;
  --label-pink-fgColor-hover: #8e2e66;
  --label-pink-fgColor-rest: #b12f79;
  --label-plum-bgColor-active: #e2a7fb;
  --label-plum-bgColor-hover: #f0cdfe;
  --label-plum-bgColor-rest: #f8e5ff;
  --label-plum-fgColor-active: #651d96;
  --label-plum-fgColor-hover: #7d1eb8;
  --label-plum-fgColor-rest: #961edc;
  --label-purple-bgColor-active: #d1b1fc;
  --label-purple-bgColor-hover: #e6d2fe;
  --label-purple-bgColor-rest: #f1e5ff;
  --label-purple-fgColor-active: #4f21ab;
  --label-purple-fgColor-hover: #6223d7;
  --label-purple-fgColor-rest: #783ae4;
  --label-red-bgColor-active: #fda5a7;
  --label-red-bgColor-hover: #fecdcd;
  --label-red-bgColor-rest: #ffe2e0;
  --label-red-fgColor-active: #880c27;
  --label-red-fgColor-hover: #a60c29;
  --label-red-fgColor-rest: #c50d28;
  --label-teal-bgColor-active: #22d3c7;
  --label-teal-bgColor-hover: #89ebe1;
  --label-teal-bgColor-rest: #c7f5ef;
  --label-teal-fgColor-active: #0a4852;
  --label-teal-fgColor-hover: #0d5b63;
  --label-teal-fgColor-rest: #106e75;
  --label-yellow-bgColor-active: #ebb400;
  --label-yellow-bgColor-hover: #ffd642;
  --label-yellow-bgColor-rest: #ffec9e;
  --label-yellow-fgColor-active: #5c3d00;
  --label-yellow-fgColor-hover: #704d00;
  --label-yellow-fgColor-rest: #805900;
  --menu-bgColor-active: #ffffff00;
  --overlay-backdrop-bgColor: #393f4666;
  --reactionButton-selected-bgColor-rest: #dff7ff;
  --reactionButton-selected-fgColor-hover: #023b95;
  --selectMenu-bgColor-active: #9cd7ff;
  --selectMenu-borderColor: #ffffff00;
  --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
  --skeletonLoader-bgColor: #dae0e7;
  --treeViewItem-leadingVisual-iconColor-rest: #368cf9;
  --underlineNav-borderColor-active: #cd3425;
  --avatar-bgColor: #ffffff;
  --avatar-borderColor: #010409e6;
  --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
  --bgColor-black: #010409;
  --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
  --bgColor-closed-muted: var(--bgColor-danger-muted);
  --bgColor-default: #ffffff;
  --bgColor-open-emphasis: var(--bgColor-success-emphasis);
  --bgColor-open-muted: var(--bgColor-success-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #0349b4;
  --border-accent-muted: 0.0625rem solid #368cf9;
  --border-attention-emphasis: 0.0625rem solid #744500;
  --border-attention-muted: 0.0625rem solid #b58407;
  --border-danger-emphasis: 0.0625rem solid #a0111f;
  --border-danger-muted: 0.0625rem solid #ee5a5d;
  --border-default: 0.0625rem solid #454c54;
  --border-disabled: 0.0625rem solid #59636e1f;
  --border-done-emphasis: 0.0625rem solid #622cbc;
  --border-done-muted: 0.0625rem solid #a371f7;
  --border-neutral-emphasis: 0.0625rem solid #59636e;
  --border-severe-emphasis: 0.0625rem solid #873800;
  --border-severe-muted: 0.0625rem solid #dc6d1a;
  --border-sponsors-emphasis: 0.0625rem solid #971368;
  --border-sponsors-muted: 0.0625rem solid #ed4baf;
  --border-success-emphasis: 0.0625rem solid #055d20;
  --border-success-muted: 0.0625rem solid #26a148;
  --border-transparent: 0.0625rem solid #ffffff00;
  --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
  --borderColor-closed-muted: var(--borderColor-danger-muted);
  --borderColor-emphasis: var(--borderColor-default);
  --borderColor-muted: var(--borderColor-default);
  --borderColor-open-emphasis: var(--borderColor-success-emphasis);
  --borderColor-open-muted: var(--borderColor-success-muted);
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-disabled: #86061d80;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-fgColor-rest: var(--fgColor-danger);
  --button-danger-iconColor-hover: #ffffff;
  --button-danger-iconColor-rest: var(--fgColor-danger);
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-default-shadow-resting: 0px 1px 0px 0px #0104090a;
  --button-inactive-bgColor: var(--control-bgColor-rest);
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
  --button-outline-bgColor-rest: var(--control-bgColor-rest);
  --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
  --button-outline-fgColor-active: #ffffff;
  --button-outline-fgColor-disabled: #023b9580;
  --button-outline-fgColor-hover: #ffffff;
  --button-outline-fgColor-rest: var(--fgColor-accent);
  --button-primary-fgColor-disabled: #ffffffcc;
  --buttonCounter-danger-bgColor-disabled: #a0111f0d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-bgColor-rest: #a0111f1a;
  --buttonCounter-danger-fgColor-disabled: #86061d80;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #0349b40d;
  --buttonCounter-outline-bgColor-hover: #ffffff33;
  --buttonCounter-outline-bgColor-rest: #0349b41a;
  --buttonCounter-outline-fgColor-disabled: #023b9580;
  --buttonCounter-outline-fgColor-hover: #ffffff;
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --codeMirror-syntax-fgColor-comment: #010409;
  --color-ansi-black: #010409;
  --color-prettylights-syntax-markup-bold: #010409;
  --color-prettylights-syntax-markup-italic: #010409;
  --color-prettylights-syntax-storage-modifier-import: #010409;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-danger-bgColor-hover: var(--bgColor-danger-emphasis);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --control-transparent-borderColor-active: var(--borderColor-default);
  --control-transparent-borderColor-hover: var(--borderColor-default);
  --controlKnob-bgColor-checked: #ffffff;
  --controlKnob-bgColor-rest: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --counter-borderColor: var(--borderColor-default);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
  --fgColor-black: #010409;
  --fgColor-closed: var(--fgColor-danger);
  --fgColor-default: #010409;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #ffffff;
  --fgColor-open: var(--fgColor-success);
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --header-fgColor-logo: #ffffff;
  --overlay-bgColor: #ffffff;
  --overlay-borderColor: var(--borderColor-default);
  --page-header-bgColor: var(--bgColor-muted);
  --selection-bgColor: #0349b433;
  --shadow-inset: inset 0px 1px 0px 0px #0104090a;
  --shadow-resting-small: 0px 1px 1px 0px #0104090f, 0px 1px 3px 0px #0104090f;
  --shadow-resting-xsmall: 0px 1px 1px 0px #0104090f;
  --sideNav-bgColor-selected: #ffffff;
  --timelineBadge-bgColor: var(--bgColor-muted);
  --tooltip-bgColor: var(--bgColor-emphasis);
  --topicTag-borderColor: var(--borderColor-accent-emphasis);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-emphasis: 0.0625rem solid #454c54;
  --border-muted: 0.0625rem solid #454c54;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #622cbc;
  --border-upsell-muted: 0.0625rem solid #a371f7;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-active: var(--control-borderColor-rest);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: #ffffffcc;
  --card-bgColor: var(--bgColor-default);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-selected: var(--control-bgColor-selected);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --control-danger-fgColor-hover: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-onEmphasis);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-onEmphasis);
  --diffBlob-expander-iconColor: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --focus-outline: 2px solid #0349b4;
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --shadow-floating-large: 0px 0px 0px 1px #454c54, 0px 40px 80px 0px #25292e3d;
  --shadow-floating-medium: 0px 0px 0px 1px #454c54, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
  --shadow-floating-small: 0px 0px 0px 1px #454c5480, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-floating-xlarge: 0px 0px 0px 1px #454c54, 0px 56px 112px 0px #25292e52;
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --underlineNav-borderColor-hover: var(--borderColor-muted);
  --border-neutral-muted: 0.0625rem solid #454c54;
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
}

@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 {
    --button-danger-bgColor-active: #74041a;
    --button-outline-bgColor-active: #033f9d;
    --button-primary-bgColor-active: #03501b;
    --button-primary-bgColor-disabled: #85cb97;
    --button-primary-bgColor-hover: #04571e;
    --button-primary-borderColor-disabled: #85cb97;
    --buttonCounter-danger-fgColor-rest: #980e1e;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --control-checked-bgColor-active: #033f9d;
    --control-checked-bgColor-hover: #0344a8;
    --control-checked-borderColor-active: #033f9d;
    --control-checked-borderColor-hover: #0344a8;
    --control-danger-bgColor-active: #8c0b1d;
    --reactionButton-selected-bgColor-hover: #c7e9ff;
    --avatarStack-fade-bgColor-default: #c8d1da;
    --avatarStack-fade-bgColor-muted: #dae0e7;
    --bgColor-accent-emphasis: #0349b4;
    --bgColor-accent-muted: #dff7ff;
    --bgColor-attention-emphasis: #744500;
    --bgColor-attention-muted: #fcf7be;
    --bgColor-danger-emphasis: #a0111f;
    --bgColor-danger-muted: #fff0ee;
    --bgColor-disabled: #e0e6eb;
    --bgColor-done-emphasis: #622cbc;
    --bgColor-done-muted: #faf0fe;
    --bgColor-emphasis: #25292e;
    --bgColor-inset: #eff2f5;
    --bgColor-inverse: #25292e;
    --bgColor-muted: #e6eaef;
    --bgColor-neutral-emphasis: #454c54;
    --bgColor-neutral-muted: #e0e6eb;
    --bgColor-severe-emphasis: #873800;
    --bgColor-severe-muted: #fff2d5;
    --bgColor-sponsors-emphasis: #971368;
    --bgColor-sponsors-muted: #feeff7;
    --bgColor-success-emphasis: #055d20;
    --bgColor-success-muted: #d2fedb;
    --bgColor-transparent: #ffffff00;
    --borderColor-accent-emphasis: #0349b4;
    --borderColor-accent-muted: #368cf9;
    --borderColor-attention-emphasis: #744500;
    --borderColor-attention-muted: #b58407;
    --borderColor-danger-emphasis: #a0111f;
    --borderColor-danger-muted: #ee5a5d;
    --borderColor-default: #454c54;
    --borderColor-disabled: #59636e1f;
    --borderColor-done-emphasis: #622cbc;
    --borderColor-done-muted: #a371f7;
    --borderColor-neutral-emphasis: #59636e;
    --borderColor-severe-emphasis: #873800;
    --borderColor-severe-muted: #dc6d1a;
    --borderColor-sponsors-emphasis: #971368;
    --borderColor-sponsors-muted: #ed4baf;
    --borderColor-success-emphasis: #055d20;
    --borderColor-success-muted: #26a148;
    --borderColor-translucent: #59636e;
    --borderColor-transparent: #ffffff00;
    --button-danger-bgColor-hover: #86061d;
    --button-danger-borderColor-hover: #6e011a;
    --button-danger-shadow-selected: inset 0px 1px 0px 0px #43001133;
    --button-inactive-fgColor: #454c54;
    --button-invisible-bgColor-disabled: #ffffff00;
    --button-invisible-borderColor-disabled: #ffffff00;
    --button-invisible-fgColor-hover: #393f46;
    --button-invisible-iconColor-hover: #393f46;
    --button-outline-shadow-selected: inset 0px 1px 0px 0px #021a4a33;
    --button-primary-bgColor-rest: #055d20;
    --button-primary-borderColor-active: #013d14;
    --button-primary-borderColor-hover: #013d14;
    --button-primary-borderColor-rest: #013d14;
    --button-primary-shadow-selected: inset 0px 1px 0px 0px #00230b4d;
    --button-star-iconColor: #d5a824;
    --buttonCounter-default-bgColor-rest: #c8d1da;
    --buttonCounter-outline-fgColor-rest: #023b95;
    --buttonCounter-primary-bgColor-rest: #00230b33;
    --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;
    --color-ansi-black-bright: #393f46;
    --color-ansi-blue: #0349b4;
    --color-ansi-blue-bright: #1168e3;
    --color-ansi-gray: #59636e;
    --color-ansi-green: #024c1a;
    --color-ansi-green-bright: #055d20;
    --color-ansi-magenta: #622cbc;
    --color-ansi-magenta-bright: #844ae7;
    --color-ansi-red: #a0111f;
    --color-ansi-red-bright: #86061d;
    --color-ansi-white: #59636e;
    --color-ansi-white-bright: #818b98;
    --color-ansi-yellow: #3f2200;
    --color-ansi-yellow-bright: #4e2c00;
    --color-prettylights-syntax-brackethighlighter-angle: #59636e;
    --color-prettylights-syntax-brackethighlighter-unmatched: #6e011a;
    --color-prettylights-syntax-carriage-return-bg: #a0111f;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-comment: #59636e;
    --color-prettylights-syntax-constant: #023b95;
    --color-prettylights-syntax-constant-other-reference-link: #032563;
    --color-prettylights-syntax-entity: #512598;
    --color-prettylights-syntax-entity-tag: #023b95;
    --color-prettylights-syntax-invalid-illegal-bg: #6e011a;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-keyword: #a0111f;
    --color-prettylights-syntax-markup-changed-bg: #ffc67b;
    --color-prettylights-syntax-markup-changed-text: #702c00;
    --color-prettylights-syntax-markup-deleted-bg: #fff0ee;
    --color-prettylights-syntax-markup-deleted-text: #6e011a;
    --color-prettylights-syntax-markup-heading: #023b95;
    --color-prettylights-syntax-markup-ignored-bg: #023b95;
    --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
    --color-prettylights-syntax-markup-inserted-bg: #d2fedb;
    --color-prettylights-syntax-markup-inserted-text: #024c1a;
    --color-prettylights-syntax-markup-list: #2e1800;
    --color-prettylights-syntax-meta-diff-range: #622cbc;
    --color-prettylights-syntax-string: #032563;
    --color-prettylights-syntax-string-regexp: #024c1a;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
    --color-prettylights-syntax-variable: #702c00;
    --contribution-default-bgColor-0: #eff2f5;
    --contribution-default-bgColor-1: #82e596;
    --contribution-default-bgColor-2: #26a148;
    --contribution-default-bgColor-3: #117f32;
    --contribution-default-bgColor-4: #024c1a;
    --contribution-default-borderColor-0: #0104090d;
    --contribution-default-borderColor-1: #0104090d;
    --contribution-default-borderColor-2: #0104090d;
    --contribution-default-borderColor-3: #0104090d;
    --contribution-default-borderColor-4: #0104090d;
    --contribution-halloween-bgColor-1: #f0db3d;
    --contribution-halloween-bgColor-2: #ffd642;
    --contribution-halloween-bgColor-3: #f68c41;
    --contribution-halloween-bgColor-4: #010409;
    --contribution-winter-bgColor-1: #9cd7ff;
    --contribution-winter-bgColor-2: #368cf9;
    --contribution-winter-bgColor-3: #0349b4;
    --contribution-winter-bgColor-4: #032563;
    --control-bgColor-active: #d1d9e0;
    --control-bgColor-hover: #dae0e7;
    --control-bgColor-rest: #e0e6eb;
    --control-fgColor-placeholder: #454c54;
    --control-fgColor-rest: #25292e;
    --control-transparent-bgColor-active: #d1d9e0;
    --control-transparent-bgColor-hover: #dae0e7;
    --control-transparent-bgColor-rest: #ffffff00;
    --control-transparent-bgColor-selected: #dae0e7;
    --control-transparent-borderColor-rest: #ffffff00;
    --controlTrack-bgColor-active: #c8d1da;
    --controlTrack-bgColor-hover: #d1d9e0;
    --controlTrack-bgColor-rest: #dae0e7;
    --controlTrack-fgColor-rest: #59636e;
    --data-auburn-color-emphasis: #9d615c;
    --data-auburn-color-muted: #f2e9e9;
    --data-blue-color-emphasis: #006edb;
    --data-blue-color-muted: #d1f0ff;
    --data-brown-color-emphasis: #856d4c;
    --data-brown-color-muted: #eeeae2;
    --data-coral-color-emphasis: #d43511;
    --data-coral-color-muted: #ffe5db;
    --data-gray-color-emphasis: #808fa3;
    --data-gray-color-muted: #e8ecf2;
    --data-green-color-emphasis: #30a147;
    --data-green-color-muted: #caf7ca;
    --data-lemon-color-emphasis: #866e04;
    --data-lemon-color-muted: #f7eea1;
    --data-lime-color-emphasis: #527a29;
    --data-lime-color-muted: #e3f2b5;
    --data-olive-color-emphasis: #64762d;
    --data-olive-color-muted: #f0f0ad;
    --data-orange-color-emphasis: #eb670f;
    --data-orange-color-muted: #ffe7d1;
    --data-pine-color-emphasis: #167e53;
    --data-pine-color-muted: #bff8db;
    --data-pink-color-emphasis: #ce2c85;
    --data-pink-color-muted: #ffe5f1;
    --data-plum-color-emphasis: #a830e8;
    --data-plum-color-muted: #f8e5ff;
    --data-purple-color-emphasis: #894ceb;
    --data-purple-color-muted: #f1e5ff;
    --data-red-color-emphasis: #df0c24;
    --data-red-color-muted: #ffe2e0;
    --data-teal-color-emphasis: #179b9b;
    --data-teal-color-muted: #c7f5ef;
    --data-yellow-color-emphasis: #b88700;
    --data-yellow-color-muted: #ffec9e;
    --diffBlob-additionNum-bgColor: #82e596;
    --diffBlob-additionWord-bgColor: #055d20;
    --diffBlob-deletionNum-bgColor: #ffc1bc;
    --diffBlob-deletionWord-bgColor: #a0111f;
    --diffBlob-hunkNum-bgColor-rest: #9cd7ff;
    --display-auburn-bgColor-emphasis: #744744;
    --display-auburn-bgColor-muted: #f2e9e9;
    --display-auburn-borderColor-emphasis: #8a5551;
    --display-auburn-borderColor-muted: #e6d6d5;
    --display-auburn-fgColor: #5d3937;
    --display-auburn-scale-0: #f2e9e9;
    --display-auburn-scale-1: #e6d6d5;
    --display-auburn-scale-2: #d4b7b5;
    --display-auburn-scale-3: #c59e9b;
    --display-auburn-scale-4: #b4827e;
    --display-auburn-scale-5: #9d615c;
    --display-auburn-scale-6: #8a5551;
    --display-auburn-scale-7: #744744;
    --display-auburn-scale-8: #5d3937;
    --display-auburn-scale-9: #432928;
    --display-blue-bgColor-emphasis: #004db3;
    --display-blue-bgColor-muted: #d1f0ff;
    --display-blue-borderColor-emphasis: #005fcc;
    --display-blue-borderColor-muted: #ade1ff;
    --display-blue-fgColor: #003d99;
    --display-blue-scale-0: #d1f0ff;
    --display-blue-scale-1: #ade1ff;
    --display-blue-scale-2: #75c8ff;
    --display-blue-scale-3: #47afff;
    --display-blue-scale-4: #0f8fff;
    --display-blue-scale-5: #006edb;
    --display-blue-scale-6: #005fcc;
    --display-blue-scale-7: #004db3;
    --display-blue-scale-8: #003d99;
    --display-blue-scale-9: #002b75;
    --display-brown-bgColor-emphasis: #64513a;
    --display-brown-bgColor-muted: #eeeae2;
    --display-brown-borderColor-emphasis: #755f43;
    --display-brown-borderColor-muted: #dfd7c8;
    --display-brown-fgColor: #51412f;
    --display-brown-scale-0: #eeeae2;
    --display-brown-scale-1: #dfd7c8;
    --display-brown-scale-2: #cbbda4;
    --display-brown-scale-3: #b8a484;
    --display-brown-scale-4: #a68b64;
    --display-brown-scale-5: #856d4c;
    --display-brown-scale-6: #755f43;
    --display-brown-scale-7: #64513a;
    --display-brown-scale-8: #51412f;
    --display-brown-scale-9: #3a2e22;
    --display-coral-bgColor-emphasis: #9b2712;
    --display-coral-bgColor-muted: #ffe5db;
    --display-coral-borderColor-emphasis: #ba2e12;
    --display-coral-borderColor-muted: #fecebe;
    --display-coral-fgColor: #7e2011;
    --display-coral-scale-0: #ffe5db;
    --display-coral-scale-1: #fecebe;
    --display-coral-scale-2: #fcab92;
    --display-coral-scale-3: #f88768;
    --display-coral-scale-4: #f25f3a;
    --display-coral-scale-5: #d43511;
    --display-coral-scale-6: #ba2e12;
    --display-coral-scale-7: #9b2712;
    --display-coral-scale-8: #7e2011;
    --display-coral-scale-9: #5d180e;
    --display-cyan-bgColor-emphasis: #00596b;
    --display-cyan-bgColor-muted: #bdf4ff;
    --display-cyan-borderColor-emphasis: #006a80;
    --display-cyan-borderColor-muted: #7ae9ff;
    --display-cyan-fgColor: #004857;
    --display-cyan-scale-0: #bdf4ff;
    --display-cyan-scale-1: #7ae9ff;
    --display-cyan-scale-2: #00d0fa;
    --display-cyan-scale-3: #00b7db;
    --display-cyan-scale-4: #0099b8;
    --display-cyan-scale-5: #007b94;
    --display-cyan-scale-6: #006a80;
    --display-cyan-scale-7: #00596b;
    --display-cyan-scale-8: #004857;
    --display-cyan-scale-9: #003742;
    --display-gray-bgColor-emphasis: #4e535a;
    --display-gray-bgColor-muted: #e8ecf2;
    --display-gray-borderColor-emphasis: #5c6570;
    --display-gray-borderColor-muted: #d2dae4;
    --display-gray-fgColor: #424448;
    --display-gray-scale-0: #e8ecf2;
    --display-gray-scale-1: #d2dae4;
    --display-gray-scale-2: #b4c0cf;
    --display-gray-scale-3: #9ba9bb;
    --display-gray-scale-4: #808fa3;
    --display-gray-scale-5: #647182;
    --display-gray-scale-6: #5c6570;
    --display-gray-scale-7: #4e535a;
    --display-gray-scale-8: #424448;
    --display-gray-scale-9: #303031;
    --display-green-bgColor-emphasis: #285c3b;
    --display-green-bgColor-muted: #caf7ca;
    --display-green-borderColor-emphasis: #2b6e3f;
    --display-green-borderColor-muted: #9ceda0;
    --display-green-fgColor: #254b34;
    --display-green-scale-0: #caf7ca;
    --display-green-scale-1: #9ceda0;
    --display-green-scale-2: #54d961;
    --display-green-scale-3: #31bf46;
    --display-green-scale-4: #30a147;
    --display-green-scale-5: #2c8141;
    --display-green-scale-6: #2b6e3f;
    --display-green-scale-7: #285c3b;
    --display-green-scale-8: #254b34;
    --display-green-scale-9: #1d3528;
    --display-indigo-bgColor-emphasis: #393cd5;
    --display-indigo-bgColor-muted: #e5e9ff;
    --display-indigo-borderColor-emphasis: #494edf;
    --display-indigo-borderColor-muted: #d2d7fe;
    --display-indigo-fgColor: #2d2db4;
    --display-indigo-scale-0: #e5e9ff;
    --display-indigo-scale-1: #d2d7fe;
    --display-indigo-scale-2: #b1b9fb;
    --display-indigo-scale-3: #979ff7;
    --display-indigo-scale-4: #7a82f0;
    --display-indigo-scale-5: #5a61e7;
    --display-indigo-scale-6: #494edf;
    --display-indigo-scale-7: #393cd5;
    --display-indigo-scale-8: #2d2db4;
    --display-indigo-scale-9: #25247b;
    --display-lemon-bgColor-emphasis: #654f01;
    --display-lemon-bgColor-muted: #f7eea1;
    --display-lemon-borderColor-emphasis: #786002;
    --display-lemon-borderColor-muted: #f0db3d;
    --display-lemon-fgColor: #523f00;
    --display-lemon-scale-0: #f7eea1;
    --display-lemon-scale-1: #f0db3d;
    --display-lemon-scale-2: #d8bd0e;
    --display-lemon-scale-3: #c2a60a;
    --display-lemon-scale-4: #a68c07;
    --display-lemon-scale-5: #866e04;
    --display-lemon-scale-6: #786002;
    --display-lemon-scale-7: #654f01;
    --display-lemon-scale-8: #523f00;
    --display-lemon-scale-9: #3d2e00;
    --display-lime-bgColor-emphasis: #3a5b25;
    --display-lime-bgColor-muted: #e3f2b5;
    --display-lime-borderColor-emphasis: #476c28;
    --display-lime-borderColor-muted: #c7e580;
    --display-lime-fgColor: #2f4a21;
    --display-lime-scale-0: #e3f2b5;
    --display-lime-scale-1: #c7e580;
    --display-lime-scale-2: #9bd039;
    --display-lime-scale-3: #80b530;
    --display-lime-scale-4: #6c9d2f;
    --display-lime-scale-5: #527a29;
    --display-lime-scale-6: #476c28;
    --display-lime-scale-7: #3a5b25;
    --display-lime-scale-8: #2f4a21;
    --display-lime-scale-9: #213319;
    --display-olive-bgColor-emphasis: #495a2b;
    --display-olive-bgColor-muted: #f0f0ad;
    --display-olive-borderColor-emphasis: #56682c;
    --display-olive-borderColor-muted: #dbe170;
    --display-olive-fgColor: #3b4927;
    --display-olive-scale-0: #f0f0ad;
    --display-olive-scale-1: #dbe170;
    --display-olive-scale-2: #b9c832;
    --display-olive-scale-3: #9bae32;
    --display-olive-scale-4: #819532;
    --display-olive-scale-5: #64762d;
    --display-olive-scale-6: #56682c;
    --display-olive-scale-7: #495a2b;
    --display-olive-scale-8: #3b4927;
    --display-olive-scale-9: #2a331f;
    --display-orange-bgColor-emphasis: #8d3c11;
    --display-orange-bgColor-muted: #ffe7d1;
    --display-orange-borderColor-emphasis: #a24610;
    --display-orange-borderColor-muted: #fecfaa;
    --display-orange-fgColor: #70300f;
    --display-orange-scale-0: #ffe7d1;
    --display-orange-scale-1: #fecfaa;
    --display-orange-scale-2: #fbaf74;
    --display-orange-scale-3: #f68c41;
    --display-orange-scale-4: #eb670f;
    --display-orange-scale-5: #b8500f;
    --display-orange-scale-6: #a24610;
    --display-orange-scale-7: #8d3c11;
    --display-orange-scale-8: #70300f;
    --display-orange-scale-9: #54230d;
    --display-pine-bgColor-emphasis: #135d41;
    --display-pine-bgColor-muted: #bff8db;
    --display-pine-borderColor-emphasis: #156f4b;
    --display-pine-borderColor-muted: #80efb9;
    --display-pine-fgColor: #114b36;
    --display-pine-scale-0: #bff8db;
    --display-pine-scale-1: #80efb9;
    --display-pine-scale-2: #1dd781;
    --display-pine-scale-3: #1dbf76;
    --display-pine-scale-4: #1aa267;
    --display-pine-scale-5: #167e53;
    --display-pine-scale-6: #156f4b;
    --display-pine-scale-7: #135d41;
    --display-pine-scale-8: #114b36;
    --display-pine-scale-9: #0d3627;
    --display-pink-bgColor-emphasis: #8e2e66;
    --display-pink-bgColor-muted: #ffe5f1;
    --display-pink-borderColor-emphasis: #b12f79;
    --display-pink-borderColor-muted: #fdc9e2;
    --display-pink-fgColor: #6e2b53;
    --display-pink-scale-0: #ffe5f1;
    --display-pink-scale-1: #fdc9e2;
    --display-pink-scale-2: #f8a5cf;
    --display-pink-scale-3: #f184bc;
    --display-pink-scale-4: #e55da5;
    --display-pink-scale-5: #ce2c85;
    --display-pink-scale-6: #b12f79;
    --display-pink-scale-7: #8e2e66;
    --display-pink-scale-8: #6e2b53;
    --display-pink-scale-9: #4d233d;
    --display-plum-bgColor-emphasis: #7d1eb8;
    --display-plum-bgColor-muted: #f8e5ff;
    --display-plum-borderColor-emphasis: #961edc;
    --display-plum-borderColor-muted: #f0cdfe;
    --display-plum-fgColor: #651d96;
    --display-plum-scale-0: #f8e5ff;
    --display-plum-scale-1: #f0cdfe;
    --display-plum-scale-2: #e2a7fb;
    --display-plum-scale-3: #d487f7;
    --display-plum-scale-4: #c264f2;
    --display-plum-scale-5: #a830e8;
    --display-plum-scale-6: #961edc;
    --display-plum-scale-7: #7d1eb8;
    --display-plum-scale-8: #651d96;
    --display-plum-scale-9: #471769;
    --display-purple-bgColor-emphasis: #6223d7;
    --display-purple-bgColor-muted: #f1e5ff;
    --display-purple-borderColor-emphasis: #783ae4;
    --display-purple-borderColor-muted: #e6d2fe;
    --display-purple-fgColor: #4f21ab;
    --display-purple-scale-0: #f1e5ff;
    --display-purple-scale-1: #e6d2fe;
    --display-purple-scale-2: #d1b1fc;
    --display-purple-scale-3: #bc91f8;
    --display-purple-scale-4: #a672f3;
    --display-purple-scale-5: #894ceb;
    --display-purple-scale-6: #783ae4;
    --display-purple-scale-7: #6223d7;
    --display-purple-scale-8: #4f21ab;
    --display-purple-scale-9: #391b79;
    --display-red-bgColor-emphasis: #a60c29;
    --display-red-bgColor-muted: #ffe2e0;
    --display-red-borderColor-emphasis: #c50d28;
    --display-red-borderColor-muted: #fecdcd;
    --display-red-fgColor: #880c27;
    --display-red-scale-0: #ffe2e0;
    --display-red-scale-1: #fecdcd;
    --display-red-scale-2: #fda5a7;
    --display-red-scale-3: #fb8389;
    --display-red-scale-4: #f85461;
    --display-red-scale-5: #df0c24;
    --display-red-scale-6: #c50d28;
    --display-red-scale-7: #a60c29;
    --display-red-scale-8: #880c27;
    --display-red-scale-9: #610a20;
    --display-teal-bgColor-emphasis: #0d5b63;
    --display-teal-bgColor-muted: #c7f5ef;
    --display-teal-borderColor-emphasis: #106e75;
    --display-teal-borderColor-muted: #89ebe1;
    --display-teal-fgColor: #0a4852;
    --display-teal-scale-0: #c7f5ef;
    --display-teal-scale-1: #89ebe1;
    --display-teal-scale-2: #22d3c7;
    --display-teal-scale-3: #1db9b4;
    --display-teal-scale-4: #179b9b;
    --display-teal-scale-5: #127e81;
    --display-teal-scale-6: #106e75;
    --display-teal-scale-7: #0d5b63;
    --display-teal-scale-8: #0a4852;
    --display-teal-scale-9: #073740;
    --display-yellow-bgColor-emphasis: #704d00;
    --display-yellow-bgColor-muted: #ffec9e;
    --display-yellow-borderColor-emphasis: #805900;
    --display-yellow-borderColor-muted: #ffd642;
    --display-yellow-fgColor: #5c3d00;
    --display-yellow-scale-0: #ffec9e;
    --display-yellow-scale-1: #ffd642;
    --display-yellow-scale-2: #ebb400;
    --display-yellow-scale-3: #d19d00;
    --display-yellow-scale-4: #b88700;
    --display-yellow-scale-5: #946a00;
    --display-yellow-scale-6: #805900;
    --display-yellow-scale-7: #704d00;
    --display-yellow-scale-8: #5c3d00;
    --display-yellow-scale-9: #422b00;
    --fgColor-accent: #023b95;
    --fgColor-attention: #603700;
    --fgColor-danger: #86061d;
    --fgColor-disabled: #59636e;
    --fgColor-done: #512598;
    --fgColor-muted: #454c54;
    --fgColor-neutral: #393f46;
    --fgColor-severe: #702c00;
    --fgColor-sponsors: #7d0c57;
    --fgColor-success: #024c1a;
    --header-bgColor: #25292e;
    --header-borderColor-divider: #c8d1da;
    --headerSearch-bgColor: #25292e;
    --headerSearch-borderColor: #818b98;
    --highlight-neutral-bgColor: #fcf7be;
    --label-auburn-bgColor-active: #d4b7b5;
    --label-auburn-bgColor-hover: #e6d6d5;
    --label-auburn-bgColor-rest: #f2e9e9;
    --label-auburn-fgColor-active: #5d3937;
    --label-auburn-fgColor-hover: #744744;
    --label-auburn-fgColor-rest: #8a5551;
    --label-blue-bgColor-active: #75c8ff;
    --label-blue-bgColor-hover: #ade1ff;
    --label-blue-bgColor-rest: #d1f0ff;
    --label-blue-fgColor-active: #003d99;
    --label-blue-fgColor-hover: #004db3;
    --label-blue-fgColor-rest: #005fcc;
    --label-brown-bgColor-active: #cbbda4;
    --label-brown-bgColor-hover: #dfd7c8;
    --label-brown-bgColor-rest: #eeeae2;
    --label-brown-fgColor-active: #51412f;
    --label-brown-fgColor-hover: #64513a;
    --label-brown-fgColor-rest: #755f43;
    --label-coral-bgColor-active: #fcab92;
    --label-coral-bgColor-hover: #fecebe;
    --label-coral-bgColor-rest: #ffe5db;
    --label-coral-fgColor-active: #7e2011;
    --label-coral-fgColor-hover: #9b2712;
    --label-coral-fgColor-rest: #ba2e12;
    --label-cyan-bgColor-active: #00d0fa;
    --label-cyan-bgColor-hover: #7ae9ff;
    --label-cyan-bgColor-rest: #bdf4ff;
    --label-cyan-fgColor-active: #004857;
    --label-cyan-fgColor-hover: #00596b;
    --label-cyan-fgColor-rest: #006a80;
    --label-gray-bgColor-active: #b4c0cf;
    --label-gray-bgColor-hover: #d2dae4;
    --label-gray-bgColor-rest: #e8ecf2;
    --label-gray-fgColor-active: #424448;
    --label-gray-fgColor-hover: #4e535a;
    --label-gray-fgColor-rest: #5c6570;
    --label-green-bgColor-active: #54d961;
    --label-green-bgColor-hover: #9ceda0;
    --label-green-bgColor-rest: #caf7ca;
    --label-green-fgColor-active: #254b34;
    --label-green-fgColor-hover: #285c3b;
    --label-green-fgColor-rest: #2b6e3f;
    --label-indigo-bgColor-active: #b1b9fb;
    --label-indigo-bgColor-hover: #d2d7fe;
    --label-indigo-bgColor-rest: #e5e9ff;
    --label-indigo-fgColor-active: #2d2db4;
    --label-indigo-fgColor-hover: #393cd5;
    --label-indigo-fgColor-rest: #494edf;
    --label-lemon-bgColor-active: #d8bd0e;
    --label-lemon-bgColor-hover: #f0db3d;
    --label-lemon-bgColor-rest: #f7eea1;
    --label-lemon-fgColor-active: #523f00;
    --label-lemon-fgColor-hover: #654f01;
    --label-lemon-fgColor-rest: #786002;
    --label-lime-bgColor-active: #9bd039;
    --label-lime-bgColor-hover: #c7e580;
    --label-lime-bgColor-rest: #e3f2b5;
    --label-lime-fgColor-active: #2f4a21;
    --label-lime-fgColor-hover: #3a5b25;
    --label-lime-fgColor-rest: #476c28;
    --label-olive-bgColor-active: #b9c832;
    --label-olive-bgColor-hover: #dbe170;
    --label-olive-bgColor-rest: #f0f0ad;
    --label-olive-fgColor-active: #3b4927;
    --label-olive-fgColor-hover: #495a2b;
    --label-olive-fgColor-rest: #56682c;
    --label-orange-bgColor-active: #fbaf74;
    --label-orange-bgColor-hover: #fecfaa;
    --label-orange-bgColor-rest: #ffe7d1;
    --label-orange-fgColor-active: #70300f;
    --label-orange-fgColor-hover: #8d3c11;
    --label-orange-fgColor-rest: #a24610;
    --label-pine-bgColor-active: #1dd781;
    --label-pine-bgColor-hover: #80efb9;
    --label-pine-bgColor-rest: #bff8db;
    --label-pine-fgColor-active: #114b36;
    --label-pine-fgColor-hover: #135d41;
    --label-pine-fgColor-rest: #156f4b;
    --label-pink-bgColor-active: #f8a5cf;
    --label-pink-bgColor-hover: #fdc9e2;
    --label-pink-bgColor-rest: #ffe5f1;
    --label-pink-fgColor-active: #6e2b53;
    --label-pink-fgColor-hover: #8e2e66;
    --label-pink-fgColor-rest: #b12f79;
    --label-plum-bgColor-active: #e2a7fb;
    --label-plum-bgColor-hover: #f0cdfe;
    --label-plum-bgColor-rest: #f8e5ff;
    --label-plum-fgColor-active: #651d96;
    --label-plum-fgColor-hover: #7d1eb8;
    --label-plum-fgColor-rest: #961edc;
    --label-purple-bgColor-active: #d1b1fc;
    --label-purple-bgColor-hover: #e6d2fe;
    --label-purple-bgColor-rest: #f1e5ff;
    --label-purple-fgColor-active: #4f21ab;
    --label-purple-fgColor-hover: #6223d7;
    --label-purple-fgColor-rest: #783ae4;
    --label-red-bgColor-active: #fda5a7;
    --label-red-bgColor-hover: #fecdcd;
    --label-red-bgColor-rest: #ffe2e0;
    --label-red-fgColor-active: #880c27;
    --label-red-fgColor-hover: #a60c29;
    --label-red-fgColor-rest: #c50d28;
    --label-teal-bgColor-active: #22d3c7;
    --label-teal-bgColor-hover: #89ebe1;
    --label-teal-bgColor-rest: #c7f5ef;
    --label-teal-fgColor-active: #0a4852;
    --label-teal-fgColor-hover: #0d5b63;
    --label-teal-fgColor-rest: #106e75;
    --label-yellow-bgColor-active: #ebb400;
    --label-yellow-bgColor-hover: #ffd642;
    --label-yellow-bgColor-rest: #ffec9e;
    --label-yellow-fgColor-active: #5c3d00;
    --label-yellow-fgColor-hover: #704d00;
    --label-yellow-fgColor-rest: #805900;
    --menu-bgColor-active: #ffffff00;
    --overlay-backdrop-bgColor: #393f4666;
    --reactionButton-selected-bgColor-rest: #dff7ff;
    --reactionButton-selected-fgColor-hover: #023b95;
    --selectMenu-bgColor-active: #9cd7ff;
    --selectMenu-borderColor: #ffffff00;
    --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
    --skeletonLoader-bgColor: #dae0e7;
    --treeViewItem-leadingVisual-iconColor-rest: #368cf9;
    --underlineNav-borderColor-active: #cd3425;
    --avatar-bgColor: #ffffff;
    --avatar-borderColor: #010409e6;
    --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
    --bgColor-black: #010409;
    --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
    --bgColor-closed-muted: var(--bgColor-danger-muted);
    --bgColor-default: #ffffff;
    --bgColor-open-emphasis: var(--bgColor-success-emphasis);
    --bgColor-open-muted: var(--bgColor-success-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #0349b4;
    --border-accent-muted: 0.0625rem solid #368cf9;
    --border-attention-emphasis: 0.0625rem solid #744500;
    --border-attention-muted: 0.0625rem solid #b58407;
    --border-danger-emphasis: 0.0625rem solid #a0111f;
    --border-danger-muted: 0.0625rem solid #ee5a5d;
    --border-default: 0.0625rem solid #454c54;
    --border-disabled: 0.0625rem solid #59636e1f;
    --border-done-emphasis: 0.0625rem solid #622cbc;
    --border-done-muted: 0.0625rem solid #a371f7;
    --border-neutral-emphasis: 0.0625rem solid #59636e;
    --border-severe-emphasis: 0.0625rem solid #873800;
    --border-severe-muted: 0.0625rem solid #dc6d1a;
    --border-sponsors-emphasis: 0.0625rem solid #971368;
    --border-sponsors-muted: 0.0625rem solid #ed4baf;
    --border-success-emphasis: 0.0625rem solid #055d20;
    --border-success-muted: 0.0625rem solid #26a148;
    --border-transparent: 0.0625rem solid #ffffff00;
    --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
    --borderColor-closed-muted: var(--borderColor-danger-muted);
    --borderColor-emphasis: var(--borderColor-default);
    --borderColor-muted: var(--borderColor-default);
    --borderColor-open-emphasis: var(--borderColor-success-emphasis);
    --borderColor-open-muted: var(--borderColor-success-muted);
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-disabled: #86061d80;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-fgColor-rest: var(--fgColor-danger);
    --button-danger-iconColor-hover: #ffffff;
    --button-danger-iconColor-rest: var(--fgColor-danger);
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-default-shadow-resting: 0px 1px 0px 0px #0104090a;
    --button-inactive-bgColor: var(--control-bgColor-rest);
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
    --button-outline-bgColor-rest: var(--control-bgColor-rest);
    --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
    --button-outline-fgColor-active: #ffffff;
    --button-outline-fgColor-disabled: #023b9580;
    --button-outline-fgColor-hover: #ffffff;
    --button-outline-fgColor-rest: var(--fgColor-accent);
    --button-primary-fgColor-disabled: #ffffffcc;
    --buttonCounter-danger-bgColor-disabled: #a0111f0d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-bgColor-rest: #a0111f1a;
    --buttonCounter-danger-fgColor-disabled: #86061d80;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #0349b40d;
    --buttonCounter-outline-bgColor-hover: #ffffff33;
    --buttonCounter-outline-bgColor-rest: #0349b41a;
    --buttonCounter-outline-fgColor-disabled: #023b9580;
    --buttonCounter-outline-fgColor-hover: #ffffff;
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --codeMirror-syntax-fgColor-comment: #010409;
    --color-ansi-black: #010409;
    --color-prettylights-syntax-markup-bold: #010409;
    --color-prettylights-syntax-markup-italic: #010409;
    --color-prettylights-syntax-storage-modifier-import: #010409;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-danger-bgColor-hover: var(--bgColor-danger-emphasis);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --control-transparent-borderColor-active: var(--borderColor-default);
    --control-transparent-borderColor-hover: var(--borderColor-default);
    --controlKnob-bgColor-checked: #ffffff;
    --controlKnob-bgColor-rest: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --counter-borderColor: var(--borderColor-default);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
    --fgColor-black: #010409;
    --fgColor-closed: var(--fgColor-danger);
    --fgColor-default: #010409;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #ffffff;
    --fgColor-open: var(--fgColor-success);
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --header-fgColor-logo: #ffffff;
    --overlay-bgColor: #ffffff;
    --overlay-borderColor: var(--borderColor-default);
    --page-header-bgColor: var(--bgColor-muted);
    --selection-bgColor: #0349b433;
    --shadow-inset: inset 0px 1px 0px 0px #0104090a;
    --shadow-resting-small: 0px 1px 1px 0px #0104090f, 0px 1px 3px 0px #0104090f;
    --shadow-resting-xsmall: 0px 1px 1px 0px #0104090f;
    --sideNav-bgColor-selected: #ffffff;
    --timelineBadge-bgColor: var(--bgColor-muted);
    --tooltip-bgColor: var(--bgColor-emphasis);
    --topicTag-borderColor: var(--borderColor-accent-emphasis);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-emphasis: 0.0625rem solid #454c54;
    --border-muted: 0.0625rem solid #454c54;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #622cbc;
    --border-upsell-muted: 0.0625rem solid #a371f7;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-active: var(--control-borderColor-rest);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: #ffffffcc;
    --card-bgColor: var(--bgColor-default);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-selected: var(--control-bgColor-selected);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --control-danger-fgColor-hover: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-onEmphasis);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-onEmphasis);
    --diffBlob-expander-iconColor: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --focus-outline: 2px solid #0349b4;
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --shadow-floating-large: 0px 0px 0px 1px #454c54, 0px 40px 80px 0px #25292e3d;
    --shadow-floating-medium: 0px 0px 0px 1px #454c54, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
    --shadow-floating-small: 0px 0px 0px 1px #454c5480, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-floating-xlarge: 0px 0px 0px 1px #454c54, 0px 56px 112px 0px #25292e52;
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --underlineNav-borderColor-hover: var(--borderColor-muted);
    --border-neutral-muted: 0.0625rem solid #454c54;
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  }
}

[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 {
  --button-danger-bgColor-active: #8b0820;
  --button-outline-bgColor-active: #0757ba;
  --button-primary-bgColor-active: #075fc8;
  --button-primary-bgColor-disabled: #92caff;
  --button-primary-bgColor-hover: #0864d1;
  --buttonCounter-danger-fgColor-rest: #c21c2c;
  --color-ansi-cyan: #1b7c83;
  --color-ansi-cyan-bright: #3192aa;
  --control-checked-bgColor-active: #0757ba;
  --control-checked-bgColor-hover: #0860ca;
  --fgColor-danger: #d1242f;
  --reactionButton-selected-bgColor-hover: #caecff;
  --avatarStack-fade-bgColor-default: #c8d1da;
  --avatarStack-fade-bgColor-muted: #dae0e7;
  --bgColor-accent-emphasis: #0969da;
  --bgColor-accent-muted: #ddf4ff;
  --bgColor-attention-emphasis: #9a6700;
  --bgColor-attention-muted: #fff8c5;
  --bgColor-danger-emphasis: #cf222e;
  --bgColor-danger-muted: #ffebe9;
  --bgColor-disabled: #eff2f5;
  --bgColor-done-emphasis: #8250df;
  --bgColor-done-muted: #fbefff;
  --bgColor-emphasis: #25292e;
  --bgColor-inverse: #25292e;
  --bgColor-muted: #f6f8fa;
  --bgColor-neutral-emphasis: #59636e;
  --bgColor-neutral-muted: #818b981f;
  --bgColor-open-emphasis: #cf222e;
  --bgColor-open-muted: #ffebe9;
  --bgColor-severe-emphasis: #cf222e;
  --bgColor-severe-muted: #ffebe9;
  --bgColor-sponsors-emphasis: #bf3989;
  --bgColor-sponsors-muted: #ffeff7;
  --bgColor-success-emphasis: #0969da;
  --bgColor-success-muted: #ddf4ff;
  --bgColor-transparent: #ffffff00;
  --borderColor-accent-emphasis: #0969da;
  --borderColor-accent-muted: #54aeff66;
  --borderColor-attention-emphasis: #9a6700;
  --borderColor-attention-muted: #d4a72c66;
  --borderColor-danger-emphasis: #cf222e;
  --borderColor-danger-muted: #ff818266;
  --borderColor-default: #d1d9e0;
  --borderColor-disabled: #818b981a;
  --borderColor-done-emphasis: #8250df;
  --borderColor-done-muted: #c297ff66;
  --borderColor-emphasis: #818b98;
  --borderColor-neutral-emphasis: #59636e;
  --borderColor-open-emphasis: #cf222e;
  --borderColor-open-muted: #ff818266;
  --borderColor-severe-emphasis: #cf222e;
  --borderColor-severe-muted: #ff818266;
  --borderColor-sponsors-emphasis: #bf3989;
  --borderColor-sponsors-muted: #ff80c866;
  --borderColor-success-emphasis: #0969da;
  --borderColor-success-muted: #54aeff66;
  --borderColor-transparent: #ffffff00;
  --button-danger-bgColor-hover: #a40e26;
  --button-danger-fgColor-disabled: #d1242f80;
  --button-danger-fgColor-rest: var(--fgColor-danger);
  --button-danger-iconColor-rest: var(--fgColor-danger);
  --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433;
  --button-inactive-bgColor: #e6eaef;
  --button-inactive-fgColor: #59636e;
  --button-invisible-bgColor-disabled: #ffffff00;
  --button-invisible-borderColor-disabled: #ffffff00;
  --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
  --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
  --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d;
  --button-star-iconColor: #eac54f;
  --buttonCounter-danger-fgColor-disabled: #d1242f80;
  --buttonCounter-outline-fgColor-rest: #0550ae;
  --buttonCounter-primary-bgColor-rest: #002d1133;
  --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;
  --color-ansi-black-bright: #393f46;
  --color-ansi-blue: #0969da;
  --color-ansi-blue-bright: #218bff;
  --color-ansi-gray: #59636e;
  --color-ansi-green: #0550ae;
  --color-ansi-green-bright: #0969da;
  --color-ansi-magenta: #8250df;
  --color-ansi-magenta-bright: #a475f9;
  --color-ansi-red: #cf222e;
  --color-ansi-red-bright: #a40e26;
  --color-ansi-white: #59636e;
  --color-ansi-white-bright: #818b98;
  --color-ansi-yellow: #4d2d00;
  --color-ansi-yellow-bright: #633c01;
  --color-prettylights-syntax-brackethighlighter-angle: #59636e;
  --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
  --color-prettylights-syntax-carriage-return-bg: #cf222e;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-comment: #59636e;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-prettylights-syntax-entity: #6639ba;
  --color-prettylights-syntax-entity-tag: #0550ae;
  --color-prettylights-syntax-invalid-illegal-bg: #82071e;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-markup-changed-bg: #ffcecb;
  --color-prettylights-syntax-markup-changed-text: #a40e26;
  --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
  --color-prettylights-syntax-markup-inserted-bg: #ddf4ff;
  --color-prettylights-syntax-markup-inserted-text: #0550ae;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-string-regexp: #0550ae;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
  --color-prettylights-syntax-variable: #a40e26;
  --contribution-default-bgColor-0: #eff2f5;
  --contribution-default-bgColor-1: #aceebb;
  --contribution-default-bgColor-2: #4ac26b;
  --contribution-default-bgColor-3: #2da44e;
  --contribution-default-bgColor-4: #116329;
  --contribution-default-borderColor-0: #1f23280d;
  --contribution-default-borderColor-1: #1f23280d;
  --contribution-default-borderColor-2: #1f23280d;
  --contribution-default-borderColor-3: #1f23280d;
  --contribution-default-borderColor-4: #1f23280d;
  --contribution-halloween-bgColor-1: #f0db3d;
  --contribution-halloween-bgColor-2: #ffd642;
  --contribution-halloween-bgColor-3: #f68c41;
  --contribution-halloween-bgColor-4: #1f2328;
  --contribution-winter-bgColor-1: #b6e3ff;
  --contribution-winter-bgColor-2: #54aeff;
  --contribution-winter-bgColor-3: #0969da;
  --contribution-winter-bgColor-4: #0a3069;
  --control-bgColor-active: #e6eaef;
  --control-bgColor-hover: #eff2f5;
  --control-bgColor-rest: #f6f8fa;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-danger-fgColor-hover: var(--fgColor-danger);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-rest: #25292e;
  --control-transparent-bgColor-active: #818b9826;
  --control-transparent-bgColor-hover: #818b981a;
  --control-transparent-bgColor-rest: #ffffff00;
  --control-transparent-bgColor-selected: #818b9826;
  --control-transparent-borderColor-active: #ffffff00;
  --control-transparent-borderColor-hover: #ffffff00;
  --control-transparent-borderColor-rest: #ffffff00;
  --controlTrack-bgColor-active: #dae0e7;
  --controlTrack-bgColor-hover: #e0e6eb;
  --controlTrack-bgColor-rest: #e6eaef;
  --controlTrack-fgColor-rest: #59636e;
  --counter-borderColor: #ffffff00;
  --data-auburn-color-emphasis: #9d615c;
  --data-auburn-color-muted: #f2e9e9;
  --data-blue-color-emphasis: #006edb;
  --data-blue-color-muted: #d1f0ff;
  --data-brown-color-emphasis: #856d4c;
  --data-brown-color-muted: #eeeae2;
  --data-coral-color-emphasis: #d43511;
  --data-coral-color-muted: #ffe5db;
  --data-gray-color-emphasis: #808fa3;
  --data-gray-color-muted: #e8ecf2;
  --data-green-color-emphasis: #30a147;
  --data-green-color-muted: #caf7ca;
  --data-lemon-color-emphasis: #866e04;
  --data-lemon-color-muted: #f7eea1;
  --data-lime-color-emphasis: #527a29;
  --data-lime-color-muted: #e3f2b5;
  --data-olive-color-emphasis: #64762d;
  --data-olive-color-muted: #f0f0ad;
  --data-orange-color-emphasis: #eb670f;
  --data-orange-color-muted: #ffe7d1;
  --data-pine-color-emphasis: #167e53;
  --data-pine-color-muted: #bff8db;
  --data-pink-color-emphasis: #ce2c85;
  --data-pink-color-muted: #ffe5f1;
  --data-plum-color-emphasis: #a830e8;
  --data-plum-color-muted: #f8e5ff;
  --data-purple-color-emphasis: #894ceb;
  --data-purple-color-muted: #f1e5ff;
  --data-red-color-emphasis: #df0c24;
  --data-red-color-muted: #ffe2e0;
  --data-teal-color-emphasis: #179b9b;
  --data-teal-color-muted: #c7f5ef;
  --data-yellow-color-emphasis: #b88700;
  --data-yellow-color-muted: #ffec9e;
  --diffBlob-additionNum-bgColor: #b6e3ff;
  --diffBlob-additionWord-bgColor: #b6e3ff;
  --diffBlob-deletionNum-bgColor: #ffcecb;
  --diffBlob-deletionWord-bgColor: #ffcecb;
  --diffBlob-hunkLine-bgColor: #f6f8fa;
  --diffBlob-hunkNum-bgColor-hover: #c8d1da;
  --diffBlob-hunkNum-bgColor-rest: #e6eaef;
  --display-auburn-bgColor-emphasis: #9d615c;
  --display-auburn-bgColor-muted: #f2e9e9;
  --display-auburn-borderColor-emphasis: #9d615c;
  --display-auburn-borderColor-muted: #e6d6d5;
  --display-auburn-fgColor: #8a5551;
  --display-auburn-scale-0: #f2e9e9;
  --display-auburn-scale-1: #e6d6d5;
  --display-auburn-scale-2: #d4b7b5;
  --display-auburn-scale-3: #c59e9b;
  --display-auburn-scale-4: #b4827e;
  --display-auburn-scale-5: #9d615c;
  --display-auburn-scale-6: #8a5551;
  --display-auburn-scale-7: #744744;
  --display-auburn-scale-8: #5d3937;
  --display-auburn-scale-9: #432928;
  --display-blue-bgColor-emphasis: #006edb;
  --display-blue-bgColor-muted: #d1f0ff;
  --display-blue-borderColor-emphasis: #006edb;
  --display-blue-borderColor-muted: #ade1ff;
  --display-blue-fgColor: #005fcc;
  --display-blue-scale-0: #d1f0ff;
  --display-blue-scale-1: #ade1ff;
  --display-blue-scale-2: #75c8ff;
  --display-blue-scale-3: #47afff;
  --display-blue-scale-4: #0f8fff;
  --display-blue-scale-5: #006edb;
  --display-blue-scale-6: #005fcc;
  --display-blue-scale-7: #004db3;
  --display-blue-scale-8: #003d99;
  --display-blue-scale-9: #002b75;
  --display-brown-bgColor-emphasis: #856d4c;
  --display-brown-bgColor-muted: #eeeae2;
  --display-brown-borderColor-emphasis: #856d4c;
  --display-brown-borderColor-muted: #dfd7c8;
  --display-brown-fgColor: #755f43;
  --display-brown-scale-0: #eeeae2;
  --display-brown-scale-1: #dfd7c8;
  --display-brown-scale-2: #cbbda4;
  --display-brown-scale-3: #b8a484;
  --display-brown-scale-4: #a68b64;
  --display-brown-scale-5: #856d4c;
  --display-brown-scale-6: #755f43;
  --display-brown-scale-7: #64513a;
  --display-brown-scale-8: #51412f;
  --display-brown-scale-9: #3a2e22;
  --display-coral-bgColor-emphasis: #d43511;
  --display-coral-bgColor-muted: #ffe5db;
  --display-coral-borderColor-emphasis: #d43511;
  --display-coral-borderColor-muted: #fecebe;
  --display-coral-fgColor: #ba2e12;
  --display-coral-scale-0: #ffe5db;
  --display-coral-scale-1: #fecebe;
  --display-coral-scale-2: #fcab92;
  --display-coral-scale-3: #f88768;
  --display-coral-scale-4: #f25f3a;
  --display-coral-scale-5: #d43511;
  --display-coral-scale-6: #ba2e12;
  --display-coral-scale-7: #9b2712;
  --display-coral-scale-8: #7e2011;
  --display-coral-scale-9: #5d180e;
  --display-cyan-bgColor-emphasis: #007b94;
  --display-cyan-bgColor-muted: #bdf4ff;
  --display-cyan-borderColor-emphasis: #007b94;
  --display-cyan-borderColor-muted: #7ae9ff;
  --display-cyan-fgColor: #006a80;
  --display-cyan-scale-0: #bdf4ff;
  --display-cyan-scale-1: #7ae9ff;
  --display-cyan-scale-2: #00d0fa;
  --display-cyan-scale-3: #00b7db;
  --display-cyan-scale-4: #0099b8;
  --display-cyan-scale-5: #007b94;
  --display-cyan-scale-6: #006a80;
  --display-cyan-scale-7: #00596b;
  --display-cyan-scale-8: #004857;
  --display-cyan-scale-9: #003742;
  --display-gray-bgColor-emphasis: #647182;
  --display-gray-bgColor-muted: #e8ecf2;
  --display-gray-borderColor-emphasis: #647182;
  --display-gray-borderColor-muted: #d2dae4;
  --display-gray-fgColor: #5c6570;
  --display-gray-scale-0: #e8ecf2;
  --display-gray-scale-1: #d2dae4;
  --display-gray-scale-2: #b4c0cf;
  --display-gray-scale-3: #9ba9bb;
  --display-gray-scale-4: #808fa3;
  --display-gray-scale-5: #647182;
  --display-gray-scale-6: #5c6570;
  --display-gray-scale-7: #4e535a;
  --display-gray-scale-8: #424448;
  --display-gray-scale-9: #303031;
  --display-green-bgColor-emphasis: #2c8141;
  --display-green-bgColor-muted: #caf7ca;
  --display-green-borderColor-emphasis: #2c8141;
  --display-green-borderColor-muted: #9ceda0;
  --display-green-fgColor: #2b6e3f;
  --display-green-scale-0: #caf7ca;
  --display-green-scale-1: #9ceda0;
  --display-green-scale-2: #54d961;
  --display-green-scale-3: #31bf46;
  --display-green-scale-4: #30a147;
  --display-green-scale-5: #2c8141;
  --display-green-scale-6: #2b6e3f;
  --display-green-scale-7: #285c3b;
  --display-green-scale-8: #254b34;
  --display-green-scale-9: #1d3528;
  --display-indigo-bgColor-emphasis: #5a61e7;
  --display-indigo-bgColor-muted: #e5e9ff;
  --display-indigo-borderColor-emphasis: #5a61e7;
  --display-indigo-borderColor-muted: #d2d7fe;
  --display-indigo-fgColor: #494edf;
  --display-indigo-scale-0: #e5e9ff;
  --display-indigo-scale-1: #d2d7fe;
  --display-indigo-scale-2: #b1b9fb;
  --display-indigo-scale-3: #979ff7;
  --display-indigo-scale-4: #7a82f0;
  --display-indigo-scale-5: #5a61e7;
  --display-indigo-scale-6: #494edf;
  --display-indigo-scale-7: #393cd5;
  --display-indigo-scale-8: #2d2db4;
  --display-indigo-scale-9: #25247b;
  --display-lemon-bgColor-emphasis: #866e04;
  --display-lemon-bgColor-muted: #f7eea1;
  --display-lemon-borderColor-emphasis: #866e04;
  --display-lemon-borderColor-muted: #f0db3d;
  --display-lemon-fgColor: #786002;
  --display-lemon-scale-0: #f7eea1;
  --display-lemon-scale-1: #f0db3d;
  --display-lemon-scale-2: #d8bd0e;
  --display-lemon-scale-3: #c2a60a;
  --display-lemon-scale-4: #a68c07;
  --display-lemon-scale-5: #866e04;
  --display-lemon-scale-6: #786002;
  --display-lemon-scale-7: #654f01;
  --display-lemon-scale-8: #523f00;
  --display-lemon-scale-9: #3d2e00;
  --display-lime-bgColor-emphasis: #527a29;
  --display-lime-bgColor-muted: #e3f2b5;
  --display-lime-borderColor-emphasis: #527a29;
  --display-lime-borderColor-muted: #c7e580;
  --display-lime-fgColor: #476c28;
  --display-lime-scale-0: #e3f2b5;
  --display-lime-scale-1: #c7e580;
  --display-lime-scale-2: #9bd039;
  --display-lime-scale-3: #80b530;
  --display-lime-scale-4: #6c9d2f;
  --display-lime-scale-5: #527a29;
  --display-lime-scale-6: #476c28;
  --display-lime-scale-7: #3a5b25;
  --display-lime-scale-8: #2f4a21;
  --display-lime-scale-9: #213319;
  --display-olive-bgColor-emphasis: #64762d;
  --display-olive-bgColor-muted: #f0f0ad;
  --display-olive-borderColor-emphasis: #64762d;
  --display-olive-borderColor-muted: #dbe170;
  --display-olive-fgColor: #56682c;
  --display-olive-scale-0: #f0f0ad;
  --display-olive-scale-1: #dbe170;
  --display-olive-scale-2: #b9c832;
  --display-olive-scale-3: #9bae32;
  --display-olive-scale-4: #819532;
  --display-olive-scale-5: #64762d;
  --display-olive-scale-6: #56682c;
  --display-olive-scale-7: #495a2b;
  --display-olive-scale-8: #3b4927;
  --display-olive-scale-9: #2a331f;
  --display-orange-bgColor-emphasis: #b8500f;
  --display-orange-bgColor-muted: #ffe7d1;
  --display-orange-borderColor-emphasis: #b8500f;
  --display-orange-borderColor-muted: #fecfaa;
  --display-orange-fgColor: #a24610;
  --display-orange-scale-0: #ffe7d1;
  --display-orange-scale-1: #fecfaa;
  --display-orange-scale-2: #fbaf74;
  --display-orange-scale-3: #f68c41;
  --display-orange-scale-4: #eb670f;
  --display-orange-scale-5: #b8500f;
  --display-orange-scale-6: #a24610;
  --display-orange-scale-7: #8d3c11;
  --display-orange-scale-8: #70300f;
  --display-orange-scale-9: #54230d;
  --display-pine-bgColor-emphasis: #167e53;
  --display-pine-bgColor-muted: #bff8db;
  --display-pine-borderColor-emphasis: #167e53;
  --display-pine-borderColor-muted: #80efb9;
  --display-pine-fgColor: #156f4b;
  --display-pine-scale-0: #bff8db;
  --display-pine-scale-1: #80efb9;
  --display-pine-scale-2: #1dd781;
  --display-pine-scale-3: #1dbf76;
  --display-pine-scale-4: #1aa267;
  --display-pine-scale-5: #167e53;
  --display-pine-scale-6: #156f4b;
  --display-pine-scale-7: #135d41;
  --display-pine-scale-8: #114b36;
  --display-pine-scale-9: #0d3627;
  --display-pink-bgColor-emphasis: #ce2c85;
  --display-pink-bgColor-muted: #ffe5f1;
  --display-pink-borderColor-emphasis: #ce2c85;
  --display-pink-borderColor-muted: #fdc9e2;
  --display-pink-fgColor: #b12f79;
  --display-pink-scale-0: #ffe5f1;
  --display-pink-scale-1: #fdc9e2;
  --display-pink-scale-2: #f8a5cf;
  --display-pink-scale-3: #f184bc;
  --display-pink-scale-4: #e55da5;
  --display-pink-scale-5: #ce2c85;
  --display-pink-scale-6: #b12f79;
  --display-pink-scale-7: #8e2e66;
  --display-pink-scale-8: #6e2b53;
  --display-pink-scale-9: #4d233d;
  --display-plum-bgColor-emphasis: #a830e8;
  --display-plum-bgColor-muted: #f8e5ff;
  --display-plum-borderColor-emphasis: #a830e8;
  --display-plum-borderColor-muted: #f0cdfe;
  --display-plum-fgColor: #961edc;
  --display-plum-scale-0: #f8e5ff;
  --display-plum-scale-1: #f0cdfe;
  --display-plum-scale-2: #e2a7fb;
  --display-plum-scale-3: #d487f7;
  --display-plum-scale-4: #c264f2;
  --display-plum-scale-5: #a830e8;
  --display-plum-scale-6: #961edc;
  --display-plum-scale-7: #7d1eb8;
  --display-plum-scale-8: #651d96;
  --display-plum-scale-9: #471769;
  --display-purple-bgColor-emphasis: #894ceb;
  --display-purple-bgColor-muted: #f1e5ff;
  --display-purple-borderColor-emphasis: #894ceb;
  --display-purple-borderColor-muted: #e6d2fe;
  --display-purple-fgColor: #783ae4;
  --display-purple-scale-0: #f1e5ff;
  --display-purple-scale-1: #e6d2fe;
  --display-purple-scale-2: #d1b1fc;
  --display-purple-scale-3: #bc91f8;
  --display-purple-scale-4: #a672f3;
  --display-purple-scale-5: #894ceb;
  --display-purple-scale-6: #783ae4;
  --display-purple-scale-7: #6223d7;
  --display-purple-scale-8: #4f21ab;
  --display-purple-scale-9: #391b79;
  --display-red-bgColor-emphasis: #df0c24;
  --display-red-bgColor-muted: #ffe2e0;
  --display-red-borderColor-emphasis: #df0c24;
  --display-red-borderColor-muted: #fecdcd;
  --display-red-fgColor: #c50d28;
  --display-red-scale-0: #ffe2e0;
  --display-red-scale-1: #fecdcd;
  --display-red-scale-2: #fda5a7;
  --display-red-scale-3: #fb8389;
  --display-red-scale-4: #f85461;
  --display-red-scale-5: #df0c24;
  --display-red-scale-6: #c50d28;
  --display-red-scale-7: #a60c29;
  --display-red-scale-8: #880c27;
  --display-red-scale-9: #610a20;
  --display-teal-bgColor-emphasis: #127e81;
  --display-teal-bgColor-muted: #c7f5ef;
  --display-teal-borderColor-emphasis: #127e81;
  --display-teal-borderColor-muted: #89ebe1;
  --display-teal-fgColor: #106e75;
  --display-teal-scale-0: #c7f5ef;
  --display-teal-scale-1: #89ebe1;
  --display-teal-scale-2: #22d3c7;
  --display-teal-scale-3: #1db9b4;
  --display-teal-scale-4: #179b9b;
  --display-teal-scale-5: #127e81;
  --display-teal-scale-6: #106e75;
  --display-teal-scale-7: #0d5b63;
  --display-teal-scale-8: #0a4852;
  --display-teal-scale-9: #073740;
  --display-yellow-bgColor-emphasis: #946a00;
  --display-yellow-bgColor-muted: #ffec9e;
  --display-yellow-borderColor-emphasis: #946a00;
  --display-yellow-borderColor-muted: #ffd642;
  --display-yellow-fgColor: #805900;
  --display-yellow-scale-0: #ffec9e;
  --display-yellow-scale-1: #ffd642;
  --display-yellow-scale-2: #ebb400;
  --display-yellow-scale-3: #d19d00;
  --display-yellow-scale-4: #b88700;
  --display-yellow-scale-5: #946a00;
  --display-yellow-scale-6: #805900;
  --display-yellow-scale-7: #704d00;
  --display-yellow-scale-8: #5c3d00;
  --display-yellow-scale-9: #422b00;
  --fgColor-accent: #0969da;
  --fgColor-attention: #9a6700;
  --fgColor-disabled: #818b98;
  --fgColor-done: #8250df;
  --fgColor-muted: #59636e;
  --fgColor-neutral: #59636e;
  --fgColor-open: #cf222e;
  --fgColor-severe: #cf222e;
  --fgColor-sponsors: #bf3989;
  --fgColor-success: #0969da;
  --header-bgColor: #25292e;
  --header-borderColor-divider: #818b98;
  --headerSearch-bgColor: #25292e;
  --headerSearch-borderColor: #818b98;
  --highlight-neutral-bgColor: #fff8c5;
  --label-auburn-bgColor-active: #d4b7b5;
  --label-auburn-bgColor-hover: #e6d6d5;
  --label-auburn-bgColor-rest: #f2e9e9;
  --label-auburn-fgColor-active: #5d3937;
  --label-auburn-fgColor-hover: #744744;
  --label-auburn-fgColor-rest: #8a5551;
  --label-blue-bgColor-active: #75c8ff;
  --label-blue-bgColor-hover: #ade1ff;
  --label-blue-bgColor-rest: #d1f0ff;
  --label-blue-fgColor-active: #003d99;
  --label-blue-fgColor-hover: #004db3;
  --label-blue-fgColor-rest: #005fcc;
  --label-brown-bgColor-active: #cbbda4;
  --label-brown-bgColor-hover: #dfd7c8;
  --label-brown-bgColor-rest: #eeeae2;
  --label-brown-fgColor-active: #51412f;
  --label-brown-fgColor-hover: #64513a;
  --label-brown-fgColor-rest: #755f43;
  --label-coral-bgColor-active: #fcab92;
  --label-coral-bgColor-hover: #fecebe;
  --label-coral-bgColor-rest: #ffe5db;
  --label-coral-fgColor-active: #7e2011;
  --label-coral-fgColor-hover: #9b2712;
  --label-coral-fgColor-rest: #ba2e12;
  --label-cyan-bgColor-active: #00d0fa;
  --label-cyan-bgColor-hover: #7ae9ff;
  --label-cyan-bgColor-rest: #bdf4ff;
  --label-cyan-fgColor-active: #004857;
  --label-cyan-fgColor-hover: #00596b;
  --label-cyan-fgColor-rest: #006a80;
  --label-gray-bgColor-active: #b4c0cf;
  --label-gray-bgColor-hover: #d2dae4;
  --label-gray-bgColor-rest: #e8ecf2;
  --label-gray-fgColor-active: #424448;
  --label-gray-fgColor-hover: #4e535a;
  --label-gray-fgColor-rest: #5c6570;
  --label-green-bgColor-active: #54d961;
  --label-green-bgColor-hover: #9ceda0;
  --label-green-bgColor-rest: #caf7ca;
  --label-green-fgColor-active: #254b34;
  --label-green-fgColor-hover: #285c3b;
  --label-green-fgColor-rest: #2b6e3f;
  --label-indigo-bgColor-active: #b1b9fb;
  --label-indigo-bgColor-hover: #d2d7fe;
  --label-indigo-bgColor-rest: #e5e9ff;
  --label-indigo-fgColor-active: #2d2db4;
  --label-indigo-fgColor-hover: #393cd5;
  --label-indigo-fgColor-rest: #494edf;
  --label-lemon-bgColor-active: #d8bd0e;
  --label-lemon-bgColor-hover: #f0db3d;
  --label-lemon-bgColor-rest: #f7eea1;
  --label-lemon-fgColor-active: #523f00;
  --label-lemon-fgColor-hover: #654f01;
  --label-lemon-fgColor-rest: #786002;
  --label-lime-bgColor-active: #9bd039;
  --label-lime-bgColor-hover: #c7e580;
  --label-lime-bgColor-rest: #e3f2b5;
  --label-lime-fgColor-active: #2f4a21;
  --label-lime-fgColor-hover: #3a5b25;
  --label-lime-fgColor-rest: #476c28;
  --label-olive-bgColor-active: #b9c832;
  --label-olive-bgColor-hover: #dbe170;
  --label-olive-bgColor-rest: #f0f0ad;
  --label-olive-fgColor-active: #3b4927;
  --label-olive-fgColor-hover: #495a2b;
  --label-olive-fgColor-rest: #56682c;
  --label-orange-bgColor-active: #fbaf74;
  --label-orange-bgColor-hover: #fecfaa;
  --label-orange-bgColor-rest: #ffe7d1;
  --label-orange-fgColor-active: #70300f;
  --label-orange-fgColor-hover: #8d3c11;
  --label-orange-fgColor-rest: #a24610;
  --label-pine-bgColor-active: #1dd781;
  --label-pine-bgColor-hover: #80efb9;
  --label-pine-bgColor-rest: #bff8db;
  --label-pine-fgColor-active: #114b36;
  --label-pine-fgColor-hover: #135d41;
  --label-pine-fgColor-rest: #156f4b;
  --label-pink-bgColor-active: #f8a5cf;
  --label-pink-bgColor-hover: #fdc9e2;
  --label-pink-bgColor-rest: #ffe5f1;
  --label-pink-fgColor-active: #6e2b53;
  --label-pink-fgColor-hover: #8e2e66;
  --label-pink-fgColor-rest: #b12f79;
  --label-plum-bgColor-active: #e2a7fb;
  --label-plum-bgColor-hover: #f0cdfe;
  --label-plum-bgColor-rest: #f8e5ff;
  --label-plum-fgColor-active: #651d96;
  --label-plum-fgColor-hover: #7d1eb8;
  --label-plum-fgColor-rest: #961edc;
  --label-purple-bgColor-active: #d1b1fc;
  --label-purple-bgColor-hover: #e6d2fe;
  --label-purple-bgColor-rest: #f1e5ff;
  --label-purple-fgColor-active: #4f21ab;
  --label-purple-fgColor-hover: #6223d7;
  --label-purple-fgColor-rest: #783ae4;
  --label-red-bgColor-active: #fda5a7;
  --label-red-bgColor-hover: #fecdcd;
  --label-red-bgColor-rest: #ffe2e0;
  --label-red-fgColor-active: #880c27;
  --label-red-fgColor-hover: #a60c29;
  --label-red-fgColor-rest: #c50d28;
  --label-teal-bgColor-active: #22d3c7;
  --label-teal-bgColor-hover: #89ebe1;
  --label-teal-bgColor-rest: #c7f5ef;
  --label-teal-fgColor-active: #0a4852;
  --label-teal-fgColor-hover: #0d5b63;
  --label-teal-fgColor-rest: #106e75;
  --label-yellow-bgColor-active: #ebb400;
  --label-yellow-bgColor-hover: #ffd642;
  --label-yellow-bgColor-rest: #ffec9e;
  --label-yellow-fgColor-active: #5c3d00;
  --label-yellow-fgColor-hover: #704d00;
  --label-yellow-fgColor-rest: #805900;
  --menu-bgColor-active: #ffffff00;
  --overlay-backdrop-bgColor: #c8d1da66;
  --reactionButton-selected-bgColor-rest: #ddf4ff;
  --reactionButton-selected-fgColor-hover: #0550ae;
  --selectMenu-bgColor-active: #b6e3ff;
  --selectMenu-borderColor: #ffffff00;
  --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
  --skeletonLoader-bgColor: #818b981a;
  --topicTag-borderColor: #ffffff00;
  --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
  --underlineNav-borderColor-active: #fd8c73;
  --avatar-bgColor: #ffffff;
  --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
  --bgColor-black: #1f2328;
  --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
  --bgColor-closed-muted: var(--bgColor-neutral-muted);
  --bgColor-default: #ffffff;
  --bgColor-inset: var(--bgColor-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #0969da;
  --border-accent-muted: 0.0625rem solid #54aeff66;
  --border-attention-emphasis: 0.0625rem solid #9a6700;
  --border-attention-muted: 0.0625rem solid #d4a72c66;
  --border-danger-emphasis: 0.0625rem solid #cf222e;
  --border-danger-muted: 0.0625rem solid #ff818266;
  --border-default: 0.0625rem solid #d1d9e0;
  --border-disabled: 0.0625rem solid #818b981a;
  --border-done-emphasis: 0.0625rem solid #8250df;
  --border-done-muted: 0.0625rem solid #c297ff66;
  --border-emphasis: 0.0625rem solid #818b98;
  --border-neutral-emphasis: 0.0625rem solid #59636e;
  --border-severe-emphasis: 0.0625rem solid #cf222e;
  --border-severe-muted: 0.0625rem solid #ff818266;
  --border-sponsors-emphasis: 0.0625rem solid #bf3989;
  --border-sponsors-muted: 0.0625rem solid #ff80c866;
  --border-success-emphasis: 0.0625rem solid #0969da;
  --border-success-muted: 0.0625rem solid #54aeff66;
  --border-transparent: 0.0625rem solid #ffffff00;
  --borderColor-closed-emphasis: var(--borderColor-emphasis);
  --borderColor-closed-muted: #d1d9e066;
  --borderColor-muted: #d1d9e0b3;
  --borderColor-translucent: #1f232826;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
  --button-outline-bgColor-rest: var(--control-bgColor-rest);
  --button-outline-fgColor-active: #ffffff;
  --button-outline-fgColor-disabled: #0969da80;
  --button-outline-fgColor-hover: #ffffff;
  --button-outline-fgColor-rest: var(--fgColor-accent);
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-rest: #1f232826;
  --button-primary-fgColor-disabled: #ffffffcc;
  --buttonCounter-danger-bgColor-disabled: #cf222e0d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-bgColor-rest: #cf222e1a;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #0969da0d;
  --buttonCounter-outline-bgColor-hover: #ffffff33;
  --buttonCounter-outline-bgColor-rest: #0969da1a;
  --buttonCounter-outline-fgColor-disabled: #0969da80;
  --buttonCounter-outline-fgColor-hover: #ffffff;
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --codeMirror-syntax-fgColor-comment: #1f2328;
  --color-ansi-black: #1f2328;
  --color-prettylights-syntax-markup-bold: #1f2328;
  --color-prettylights-syntax-markup-italic: #1f2328;
  --color-prettylights-syntax-storage-modifier-import: #1f2328;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-danger-bgColor-active: #ffebe966;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlKnob-bgColor-rest: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --fgColor-black: #1f2328;
  --fgColor-closed: var(--fgColor-muted);
  --fgColor-default: #1f2328;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #ffffff;
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --header-fgColor-logo: #ffffff;
  --overlay-bgColor: #ffffff;
  --page-header-bgColor: var(--bgColor-muted);
  --selection-bgColor: #0969da33;
  --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
  --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
  --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
  --sideNav-bgColor-selected: #ffffff;
  --timelineBadge-bgColor: var(--bgColor-muted);
  --tooltip-bgColor: var(--bgColor-emphasis);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #d1d9e0b3;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8250df;
  --border-upsell-muted: 0.0625rem solid #c297ff66;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-active: var(--control-borderColor-rest);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: #ffffffcc;
  --card-bgColor: var(--bgColor-default);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --control-borderColor-selected: var(--control-bgColor-selected);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --focus-outline: 2px solid #0969da;
  --overlay-borderColor: #d1d9e080;
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --underlineNav-borderColor-hover: var(--borderColor-muted);
  --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
  --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
  --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
  --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="light_tritanopia"],
  [data-color-mode="auto"][data-dark-theme="light_tritanopia"] ::backdrop {
    --button-danger-bgColor-active: #8b0820;
    --button-outline-bgColor-active: #0757ba;
    --button-primary-bgColor-active: #075fc8;
    --button-primary-bgColor-disabled: #92caff;
    --button-primary-bgColor-hover: #0864d1;
    --buttonCounter-danger-fgColor-rest: #c21c2c;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --control-checked-bgColor-active: #0757ba;
    --control-checked-bgColor-hover: #0860ca;
    --fgColor-danger: #d1242f;
    --reactionButton-selected-bgColor-hover: #caecff;
    --avatarStack-fade-bgColor-default: #c8d1da;
    --avatarStack-fade-bgColor-muted: #dae0e7;
    --bgColor-accent-emphasis: #0969da;
    --bgColor-accent-muted: #ddf4ff;
    --bgColor-attention-emphasis: #9a6700;
    --bgColor-attention-muted: #fff8c5;
    --bgColor-danger-emphasis: #cf222e;
    --bgColor-danger-muted: #ffebe9;
    --bgColor-disabled: #eff2f5;
    --bgColor-done-emphasis: #8250df;
    --bgColor-done-muted: #fbefff;
    --bgColor-emphasis: #25292e;
    --bgColor-inverse: #25292e;
    --bgColor-muted: #f6f8fa;
    --bgColor-neutral-emphasis: #59636e;
    --bgColor-neutral-muted: #818b981f;
    --bgColor-open-emphasis: #cf222e;
    --bgColor-open-muted: #ffebe9;
    --bgColor-severe-emphasis: #cf222e;
    --bgColor-severe-muted: #ffebe9;
    --bgColor-sponsors-emphasis: #bf3989;
    --bgColor-sponsors-muted: #ffeff7;
    --bgColor-success-emphasis: #0969da;
    --bgColor-success-muted: #ddf4ff;
    --bgColor-transparent: #ffffff00;
    --borderColor-accent-emphasis: #0969da;
    --borderColor-accent-muted: #54aeff66;
    --borderColor-attention-emphasis: #9a6700;
    --borderColor-attention-muted: #d4a72c66;
    --borderColor-danger-emphasis: #cf222e;
    --borderColor-danger-muted: #ff818266;
    --borderColor-default: #d1d9e0;
    --borderColor-disabled: #818b981a;
    --borderColor-done-emphasis: #8250df;
    --borderColor-done-muted: #c297ff66;
    --borderColor-emphasis: #818b98;
    --borderColor-neutral-emphasis: #59636e;
    --borderColor-open-emphasis: #cf222e;
    --borderColor-open-muted: #ff818266;
    --borderColor-severe-emphasis: #cf222e;
    --borderColor-severe-muted: #ff818266;
    --borderColor-sponsors-emphasis: #bf3989;
    --borderColor-sponsors-muted: #ff80c866;
    --borderColor-success-emphasis: #0969da;
    --borderColor-success-muted: #54aeff66;
    --borderColor-transparent: #ffffff00;
    --button-danger-bgColor-hover: #a40e26;
    --button-danger-fgColor-disabled: #d1242f80;
    --button-danger-fgColor-rest: var(--fgColor-danger);
    --button-danger-iconColor-rest: var(--fgColor-danger);
    --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433;
    --button-inactive-bgColor: #e6eaef;
    --button-inactive-fgColor: #59636e;
    --button-invisible-bgColor-disabled: #ffffff00;
    --button-invisible-borderColor-disabled: #ffffff00;
    --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
    --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
    --button-primary-shadow-selected: inset 0px 1px 0px 0px #0021554d;
    --button-star-iconColor: #eac54f;
    --buttonCounter-danger-fgColor-disabled: #d1242f80;
    --buttonCounter-outline-fgColor-rest: #0550ae;
    --buttonCounter-primary-bgColor-rest: #002d1133;
    --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;
    --color-ansi-black-bright: #393f46;
    --color-ansi-blue: #0969da;
    --color-ansi-blue-bright: #218bff;
    --color-ansi-gray: #59636e;
    --color-ansi-green: #0550ae;
    --color-ansi-green-bright: #0969da;
    --color-ansi-magenta: #8250df;
    --color-ansi-magenta-bright: #a475f9;
    --color-ansi-red: #cf222e;
    --color-ansi-red-bright: #a40e26;
    --color-ansi-white: #59636e;
    --color-ansi-white-bright: #818b98;
    --color-ansi-yellow: #4d2d00;
    --color-ansi-yellow-bright: #633c01;
    --color-prettylights-syntax-brackethighlighter-angle: #59636e;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-comment: #59636e;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-prettylights-syntax-entity: #6639ba;
    --color-prettylights-syntax-entity-tag: #0550ae;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-markup-changed-bg: #ffcecb;
    --color-prettylights-syntax-markup-changed-text: #a40e26;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
    --color-prettylights-syntax-markup-inserted-bg: #ddf4ff;
    --color-prettylights-syntax-markup-inserted-text: #0550ae;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-string-regexp: #0550ae;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
    --color-prettylights-syntax-variable: #a40e26;
    --contribution-default-bgColor-0: #eff2f5;
    --contribution-default-bgColor-1: #aceebb;
    --contribution-default-bgColor-2: #4ac26b;
    --contribution-default-bgColor-3: #2da44e;
    --contribution-default-bgColor-4: #116329;
    --contribution-default-borderColor-0: #1f23280d;
    --contribution-default-borderColor-1: #1f23280d;
    --contribution-default-borderColor-2: #1f23280d;
    --contribution-default-borderColor-3: #1f23280d;
    --contribution-default-borderColor-4: #1f23280d;
    --contribution-halloween-bgColor-1: #f0db3d;
    --contribution-halloween-bgColor-2: #ffd642;
    --contribution-halloween-bgColor-3: #f68c41;
    --contribution-halloween-bgColor-4: #1f2328;
    --contribution-winter-bgColor-1: #b6e3ff;
    --contribution-winter-bgColor-2: #54aeff;
    --contribution-winter-bgColor-3: #0969da;
    --contribution-winter-bgColor-4: #0a3069;
    --control-bgColor-active: #e6eaef;
    --control-bgColor-hover: #eff2f5;
    --control-bgColor-rest: #f6f8fa;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-danger-fgColor-hover: var(--fgColor-danger);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-rest: #25292e;
    --control-transparent-bgColor-active: #818b9826;
    --control-transparent-bgColor-hover: #818b981a;
    --control-transparent-bgColor-rest: #ffffff00;
    --control-transparent-bgColor-selected: #818b9826;
    --control-transparent-borderColor-active: #ffffff00;
    --control-transparent-borderColor-hover: #ffffff00;
    --control-transparent-borderColor-rest: #ffffff00;
    --controlTrack-bgColor-active: #dae0e7;
    --controlTrack-bgColor-hover: #e0e6eb;
    --controlTrack-bgColor-rest: #e6eaef;
    --controlTrack-fgColor-rest: #59636e;
    --counter-borderColor: #ffffff00;
    --data-auburn-color-emphasis: #9d615c;
    --data-auburn-color-muted: #f2e9e9;
    --data-blue-color-emphasis: #006edb;
    --data-blue-color-muted: #d1f0ff;
    --data-brown-color-emphasis: #856d4c;
    --data-brown-color-muted: #eeeae2;
    --data-coral-color-emphasis: #d43511;
    --data-coral-color-muted: #ffe5db;
    --data-gray-color-emphasis: #808fa3;
    --data-gray-color-muted: #e8ecf2;
    --data-green-color-emphasis: #30a147;
    --data-green-color-muted: #caf7ca;
    --data-lemon-color-emphasis: #866e04;
    --data-lemon-color-muted: #f7eea1;
    --data-lime-color-emphasis: #527a29;
    --data-lime-color-muted: #e3f2b5;
    --data-olive-color-emphasis: #64762d;
    --data-olive-color-muted: #f0f0ad;
    --data-orange-color-emphasis: #eb670f;
    --data-orange-color-muted: #ffe7d1;
    --data-pine-color-emphasis: #167e53;
    --data-pine-color-muted: #bff8db;
    --data-pink-color-emphasis: #ce2c85;
    --data-pink-color-muted: #ffe5f1;
    --data-plum-color-emphasis: #a830e8;
    --data-plum-color-muted: #f8e5ff;
    --data-purple-color-emphasis: #894ceb;
    --data-purple-color-muted: #f1e5ff;
    --data-red-color-emphasis: #df0c24;
    --data-red-color-muted: #ffe2e0;
    --data-teal-color-emphasis: #179b9b;
    --data-teal-color-muted: #c7f5ef;
    --data-yellow-color-emphasis: #b88700;
    --data-yellow-color-muted: #ffec9e;
    --diffBlob-additionNum-bgColor: #b6e3ff;
    --diffBlob-additionWord-bgColor: #b6e3ff;
    --diffBlob-deletionNum-bgColor: #ffcecb;
    --diffBlob-deletionWord-bgColor: #ffcecb;
    --diffBlob-hunkLine-bgColor: #f6f8fa;
    --diffBlob-hunkNum-bgColor-hover: #c8d1da;
    --diffBlob-hunkNum-bgColor-rest: #e6eaef;
    --display-auburn-bgColor-emphasis: #9d615c;
    --display-auburn-bgColor-muted: #f2e9e9;
    --display-auburn-borderColor-emphasis: #9d615c;
    --display-auburn-borderColor-muted: #e6d6d5;
    --display-auburn-fgColor: #8a5551;
    --display-auburn-scale-0: #f2e9e9;
    --display-auburn-scale-1: #e6d6d5;
    --display-auburn-scale-2: #d4b7b5;
    --display-auburn-scale-3: #c59e9b;
    --display-auburn-scale-4: #b4827e;
    --display-auburn-scale-5: #9d615c;
    --display-auburn-scale-6: #8a5551;
    --display-auburn-scale-7: #744744;
    --display-auburn-scale-8: #5d3937;
    --display-auburn-scale-9: #432928;
    --display-blue-bgColor-emphasis: #006edb;
    --display-blue-bgColor-muted: #d1f0ff;
    --display-blue-borderColor-emphasis: #006edb;
    --display-blue-borderColor-muted: #ade1ff;
    --display-blue-fgColor: #005fcc;
    --display-blue-scale-0: #d1f0ff;
    --display-blue-scale-1: #ade1ff;
    --display-blue-scale-2: #75c8ff;
    --display-blue-scale-3: #47afff;
    --display-blue-scale-4: #0f8fff;
    --display-blue-scale-5: #006edb;
    --display-blue-scale-6: #005fcc;
    --display-blue-scale-7: #004db3;
    --display-blue-scale-8: #003d99;
    --display-blue-scale-9: #002b75;
    --display-brown-bgColor-emphasis: #856d4c;
    --display-brown-bgColor-muted: #eeeae2;
    --display-brown-borderColor-emphasis: #856d4c;
    --display-brown-borderColor-muted: #dfd7c8;
    --display-brown-fgColor: #755f43;
    --display-brown-scale-0: #eeeae2;
    --display-brown-scale-1: #dfd7c8;
    --display-brown-scale-2: #cbbda4;
    --display-brown-scale-3: #b8a484;
    --display-brown-scale-4: #a68b64;
    --display-brown-scale-5: #856d4c;
    --display-brown-scale-6: #755f43;
    --display-brown-scale-7: #64513a;
    --display-brown-scale-8: #51412f;
    --display-brown-scale-9: #3a2e22;
    --display-coral-bgColor-emphasis: #d43511;
    --display-coral-bgColor-muted: #ffe5db;
    --display-coral-borderColor-emphasis: #d43511;
    --display-coral-borderColor-muted: #fecebe;
    --display-coral-fgColor: #ba2e12;
    --display-coral-scale-0: #ffe5db;
    --display-coral-scale-1: #fecebe;
    --display-coral-scale-2: #fcab92;
    --display-coral-scale-3: #f88768;
    --display-coral-scale-4: #f25f3a;
    --display-coral-scale-5: #d43511;
    --display-coral-scale-6: #ba2e12;
    --display-coral-scale-7: #9b2712;
    --display-coral-scale-8: #7e2011;
    --display-coral-scale-9: #5d180e;
    --display-cyan-bgColor-emphasis: #007b94;
    --display-cyan-bgColor-muted: #bdf4ff;
    --display-cyan-borderColor-emphasis: #007b94;
    --display-cyan-borderColor-muted: #7ae9ff;
    --display-cyan-fgColor: #006a80;
    --display-cyan-scale-0: #bdf4ff;
    --display-cyan-scale-1: #7ae9ff;
    --display-cyan-scale-2: #00d0fa;
    --display-cyan-scale-3: #00b7db;
    --display-cyan-scale-4: #0099b8;
    --display-cyan-scale-5: #007b94;
    --display-cyan-scale-6: #006a80;
    --display-cyan-scale-7: #00596b;
    --display-cyan-scale-8: #004857;
    --display-cyan-scale-9: #003742;
    --display-gray-bgColor-emphasis: #647182;
    --display-gray-bgColor-muted: #e8ecf2;
    --display-gray-borderColor-emphasis: #647182;
    --display-gray-borderColor-muted: #d2dae4;
    --display-gray-fgColor: #5c6570;
    --display-gray-scale-0: #e8ecf2;
    --display-gray-scale-1: #d2dae4;
    --display-gray-scale-2: #b4c0cf;
    --display-gray-scale-3: #9ba9bb;
    --display-gray-scale-4: #808fa3;
    --display-gray-scale-5: #647182;
    --display-gray-scale-6: #5c6570;
    --display-gray-scale-7: #4e535a;
    --display-gray-scale-8: #424448;
    --display-gray-scale-9: #303031;
    --display-green-bgColor-emphasis: #2c8141;
    --display-green-bgColor-muted: #caf7ca;
    --display-green-borderColor-emphasis: #2c8141;
    --display-green-borderColor-muted: #9ceda0;
    --display-green-fgColor: #2b6e3f;
    --display-green-scale-0: #caf7ca;
    --display-green-scale-1: #9ceda0;
    --display-green-scale-2: #54d961;
    --display-green-scale-3: #31bf46;
    --display-green-scale-4: #30a147;
    --display-green-scale-5: #2c8141;
    --display-green-scale-6: #2b6e3f;
    --display-green-scale-7: #285c3b;
    --display-green-scale-8: #254b34;
    --display-green-scale-9: #1d3528;
    --display-indigo-bgColor-emphasis: #5a61e7;
    --display-indigo-bgColor-muted: #e5e9ff;
    --display-indigo-borderColor-emphasis: #5a61e7;
    --display-indigo-borderColor-muted: #d2d7fe;
    --display-indigo-fgColor: #494edf;
    --display-indigo-scale-0: #e5e9ff;
    --display-indigo-scale-1: #d2d7fe;
    --display-indigo-scale-2: #b1b9fb;
    --display-indigo-scale-3: #979ff7;
    --display-indigo-scale-4: #7a82f0;
    --display-indigo-scale-5: #5a61e7;
    --display-indigo-scale-6: #494edf;
    --display-indigo-scale-7: #393cd5;
    --display-indigo-scale-8: #2d2db4;
    --display-indigo-scale-9: #25247b;
    --display-lemon-bgColor-emphasis: #866e04;
    --display-lemon-bgColor-muted: #f7eea1;
    --display-lemon-borderColor-emphasis: #866e04;
    --display-lemon-borderColor-muted: #f0db3d;
    --display-lemon-fgColor: #786002;
    --display-lemon-scale-0: #f7eea1;
    --display-lemon-scale-1: #f0db3d;
    --display-lemon-scale-2: #d8bd0e;
    --display-lemon-scale-3: #c2a60a;
    --display-lemon-scale-4: #a68c07;
    --display-lemon-scale-5: #866e04;
    --display-lemon-scale-6: #786002;
    --display-lemon-scale-7: #654f01;
    --display-lemon-scale-8: #523f00;
    --display-lemon-scale-9: #3d2e00;
    --display-lime-bgColor-emphasis: #527a29;
    --display-lime-bgColor-muted: #e3f2b5;
    --display-lime-borderColor-emphasis: #527a29;
    --display-lime-borderColor-muted: #c7e580;
    --display-lime-fgColor: #476c28;
    --display-lime-scale-0: #e3f2b5;
    --display-lime-scale-1: #c7e580;
    --display-lime-scale-2: #9bd039;
    --display-lime-scale-3: #80b530;
    --display-lime-scale-4: #6c9d2f;
    --display-lime-scale-5: #527a29;
    --display-lime-scale-6: #476c28;
    --display-lime-scale-7: #3a5b25;
    --display-lime-scale-8: #2f4a21;
    --display-lime-scale-9: #213319;
    --display-olive-bgColor-emphasis: #64762d;
    --display-olive-bgColor-muted: #f0f0ad;
    --display-olive-borderColor-emphasis: #64762d;
    --display-olive-borderColor-muted: #dbe170;
    --display-olive-fgColor: #56682c;
    --display-olive-scale-0: #f0f0ad;
    --display-olive-scale-1: #dbe170;
    --display-olive-scale-2: #b9c832;
    --display-olive-scale-3: #9bae32;
    --display-olive-scale-4: #819532;
    --display-olive-scale-5: #64762d;
    --display-olive-scale-6: #56682c;
    --display-olive-scale-7: #495a2b;
    --display-olive-scale-8: #3b4927;
    --display-olive-scale-9: #2a331f;
    --display-orange-bgColor-emphasis: #b8500f;
    --display-orange-bgColor-muted: #ffe7d1;
    --display-orange-borderColor-emphasis: #b8500f;
    --display-orange-borderColor-muted: #fecfaa;
    --display-orange-fgColor: #a24610;
    --display-orange-scale-0: #ffe7d1;
    --display-orange-scale-1: #fecfaa;
    --display-orange-scale-2: #fbaf74;
    --display-orange-scale-3: #f68c41;
    --display-orange-scale-4: #eb670f;
    --display-orange-scale-5: #b8500f;
    --display-orange-scale-6: #a24610;
    --display-orange-scale-7: #8d3c11;
    --display-orange-scale-8: #70300f;
    --display-orange-scale-9: #54230d;
    --display-pine-bgColor-emphasis: #167e53;
    --display-pine-bgColor-muted: #bff8db;
    --display-pine-borderColor-emphasis: #167e53;
    --display-pine-borderColor-muted: #80efb9;
    --display-pine-fgColor: #156f4b;
    --display-pine-scale-0: #bff8db;
    --display-pine-scale-1: #80efb9;
    --display-pine-scale-2: #1dd781;
    --display-pine-scale-3: #1dbf76;
    --display-pine-scale-4: #1aa267;
    --display-pine-scale-5: #167e53;
    --display-pine-scale-6: #156f4b;
    --display-pine-scale-7: #135d41;
    --display-pine-scale-8: #114b36;
    --display-pine-scale-9: #0d3627;
    --display-pink-bgColor-emphasis: #ce2c85;
    --display-pink-bgColor-muted: #ffe5f1;
    --display-pink-borderColor-emphasis: #ce2c85;
    --display-pink-borderColor-muted: #fdc9e2;
    --display-pink-fgColor: #b12f79;
    --display-pink-scale-0: #ffe5f1;
    --display-pink-scale-1: #fdc9e2;
    --display-pink-scale-2: #f8a5cf;
    --display-pink-scale-3: #f184bc;
    --display-pink-scale-4: #e55da5;
    --display-pink-scale-5: #ce2c85;
    --display-pink-scale-6: #b12f79;
    --display-pink-scale-7: #8e2e66;
    --display-pink-scale-8: #6e2b53;
    --display-pink-scale-9: #4d233d;
    --display-plum-bgColor-emphasis: #a830e8;
    --display-plum-bgColor-muted: #f8e5ff;
    --display-plum-borderColor-emphasis: #a830e8;
    --display-plum-borderColor-muted: #f0cdfe;
    --display-plum-fgColor: #961edc;
    --display-plum-scale-0: #f8e5ff;
    --display-plum-scale-1: #f0cdfe;
    --display-plum-scale-2: #e2a7fb;
    --display-plum-scale-3: #d487f7;
    --display-plum-scale-4: #c264f2;
    --display-plum-scale-5: #a830e8;
    --display-plum-scale-6: #961edc;
    --display-plum-scale-7: #7d1eb8;
    --display-plum-scale-8: #651d96;
    --display-plum-scale-9: #471769;
    --display-purple-bgColor-emphasis: #894ceb;
    --display-purple-bgColor-muted: #f1e5ff;
    --display-purple-borderColor-emphasis: #894ceb;
    --display-purple-borderColor-muted: #e6d2fe;
    --display-purple-fgColor: #783ae4;
    --display-purple-scale-0: #f1e5ff;
    --display-purple-scale-1: #e6d2fe;
    --display-purple-scale-2: #d1b1fc;
    --display-purple-scale-3: #bc91f8;
    --display-purple-scale-4: #a672f3;
    --display-purple-scale-5: #894ceb;
    --display-purple-scale-6: #783ae4;
    --display-purple-scale-7: #6223d7;
    --display-purple-scale-8: #4f21ab;
    --display-purple-scale-9: #391b79;
    --display-red-bgColor-emphasis: #df0c24;
    --display-red-bgColor-muted: #ffe2e0;
    --display-red-borderColor-emphasis: #df0c24;
    --display-red-borderColor-muted: #fecdcd;
    --display-red-fgColor: #c50d28;
    --display-red-scale-0: #ffe2e0;
    --display-red-scale-1: #fecdcd;
    --display-red-scale-2: #fda5a7;
    --display-red-scale-3: #fb8389;
    --display-red-scale-4: #f85461;
    --display-red-scale-5: #df0c24;
    --display-red-scale-6: #c50d28;
    --display-red-scale-7: #a60c29;
    --display-red-scale-8: #880c27;
    --display-red-scale-9: #610a20;
    --display-teal-bgColor-emphasis: #127e81;
    --display-teal-bgColor-muted: #c7f5ef;
    --display-teal-borderColor-emphasis: #127e81;
    --display-teal-borderColor-muted: #89ebe1;
    --display-teal-fgColor: #106e75;
    --display-teal-scale-0: #c7f5ef;
    --display-teal-scale-1: #89ebe1;
    --display-teal-scale-2: #22d3c7;
    --display-teal-scale-3: #1db9b4;
    --display-teal-scale-4: #179b9b;
    --display-teal-scale-5: #127e81;
    --display-teal-scale-6: #106e75;
    --display-teal-scale-7: #0d5b63;
    --display-teal-scale-8: #0a4852;
    --display-teal-scale-9: #073740;
    --display-yellow-bgColor-emphasis: #946a00;
    --display-yellow-bgColor-muted: #ffec9e;
    --display-yellow-borderColor-emphasis: #946a00;
    --display-yellow-borderColor-muted: #ffd642;
    --display-yellow-fgColor: #805900;
    --display-yellow-scale-0: #ffec9e;
    --display-yellow-scale-1: #ffd642;
    --display-yellow-scale-2: #ebb400;
    --display-yellow-scale-3: #d19d00;
    --display-yellow-scale-4: #b88700;
    --display-yellow-scale-5: #946a00;
    --display-yellow-scale-6: #805900;
    --display-yellow-scale-7: #704d00;
    --display-yellow-scale-8: #5c3d00;
    --display-yellow-scale-9: #422b00;
    --fgColor-accent: #0969da;
    --fgColor-attention: #9a6700;
    --fgColor-disabled: #818b98;
    --fgColor-done: #8250df;
    --fgColor-muted: #59636e;
    --fgColor-neutral: #59636e;
    --fgColor-open: #cf222e;
    --fgColor-severe: #cf222e;
    --fgColor-sponsors: #bf3989;
    --fgColor-success: #0969da;
    --header-bgColor: #25292e;
    --header-borderColor-divider: #818b98;
    --headerSearch-bgColor: #25292e;
    --headerSearch-borderColor: #818b98;
    --highlight-neutral-bgColor: #fff8c5;
    --label-auburn-bgColor-active: #d4b7b5;
    --label-auburn-bgColor-hover: #e6d6d5;
    --label-auburn-bgColor-rest: #f2e9e9;
    --label-auburn-fgColor-active: #5d3937;
    --label-auburn-fgColor-hover: #744744;
    --label-auburn-fgColor-rest: #8a5551;
    --label-blue-bgColor-active: #75c8ff;
    --label-blue-bgColor-hover: #ade1ff;
    --label-blue-bgColor-rest: #d1f0ff;
    --label-blue-fgColor-active: #003d99;
    --label-blue-fgColor-hover: #004db3;
    --label-blue-fgColor-rest: #005fcc;
    --label-brown-bgColor-active: #cbbda4;
    --label-brown-bgColor-hover: #dfd7c8;
    --label-brown-bgColor-rest: #eeeae2;
    --label-brown-fgColor-active: #51412f;
    --label-brown-fgColor-hover: #64513a;
    --label-brown-fgColor-rest: #755f43;
    --label-coral-bgColor-active: #fcab92;
    --label-coral-bgColor-hover: #fecebe;
    --label-coral-bgColor-rest: #ffe5db;
    --label-coral-fgColor-active: #7e2011;
    --label-coral-fgColor-hover: #9b2712;
    --label-coral-fgColor-rest: #ba2e12;
    --label-cyan-bgColor-active: #00d0fa;
    --label-cyan-bgColor-hover: #7ae9ff;
    --label-cyan-bgColor-rest: #bdf4ff;
    --label-cyan-fgColor-active: #004857;
    --label-cyan-fgColor-hover: #00596b;
    --label-cyan-fgColor-rest: #006a80;
    --label-gray-bgColor-active: #b4c0cf;
    --label-gray-bgColor-hover: #d2dae4;
    --label-gray-bgColor-rest: #e8ecf2;
    --label-gray-fgColor-active: #424448;
    --label-gray-fgColor-hover: #4e535a;
    --label-gray-fgColor-rest: #5c6570;
    --label-green-bgColor-active: #54d961;
    --label-green-bgColor-hover: #9ceda0;
    --label-green-bgColor-rest: #caf7ca;
    --label-green-fgColor-active: #254b34;
    --label-green-fgColor-hover: #285c3b;
    --label-green-fgColor-rest: #2b6e3f;
    --label-indigo-bgColor-active: #b1b9fb;
    --label-indigo-bgColor-hover: #d2d7fe;
    --label-indigo-bgColor-rest: #e5e9ff;
    --label-indigo-fgColor-active: #2d2db4;
    --label-indigo-fgColor-hover: #393cd5;
    --label-indigo-fgColor-rest: #494edf;
    --label-lemon-bgColor-active: #d8bd0e;
    --label-lemon-bgColor-hover: #f0db3d;
    --label-lemon-bgColor-rest: #f7eea1;
    --label-lemon-fgColor-active: #523f00;
    --label-lemon-fgColor-hover: #654f01;
    --label-lemon-fgColor-rest: #786002;
    --label-lime-bgColor-active: #9bd039;
    --label-lime-bgColor-hover: #c7e580;
    --label-lime-bgColor-rest: #e3f2b5;
    --label-lime-fgColor-active: #2f4a21;
    --label-lime-fgColor-hover: #3a5b25;
    --label-lime-fgColor-rest: #476c28;
    --label-olive-bgColor-active: #b9c832;
    --label-olive-bgColor-hover: #dbe170;
    --label-olive-bgColor-rest: #f0f0ad;
    --label-olive-fgColor-active: #3b4927;
    --label-olive-fgColor-hover: #495a2b;
    --label-olive-fgColor-rest: #56682c;
    --label-orange-bgColor-active: #fbaf74;
    --label-orange-bgColor-hover: #fecfaa;
    --label-orange-bgColor-rest: #ffe7d1;
    --label-orange-fgColor-active: #70300f;
    --label-orange-fgColor-hover: #8d3c11;
    --label-orange-fgColor-rest: #a24610;
    --label-pine-bgColor-active: #1dd781;
    --label-pine-bgColor-hover: #80efb9;
    --label-pine-bgColor-rest: #bff8db;
    --label-pine-fgColor-active: #114b36;
    --label-pine-fgColor-hover: #135d41;
    --label-pine-fgColor-rest: #156f4b;
    --label-pink-bgColor-active: #f8a5cf;
    --label-pink-bgColor-hover: #fdc9e2;
    --label-pink-bgColor-rest: #ffe5f1;
    --label-pink-fgColor-active: #6e2b53;
    --label-pink-fgColor-hover: #8e2e66;
    --label-pink-fgColor-rest: #b12f79;
    --label-plum-bgColor-active: #e2a7fb;
    --label-plum-bgColor-hover: #f0cdfe;
    --label-plum-bgColor-rest: #f8e5ff;
    --label-plum-fgColor-active: #651d96;
    --label-plum-fgColor-hover: #7d1eb8;
    --label-plum-fgColor-rest: #961edc;
    --label-purple-bgColor-active: #d1b1fc;
    --label-purple-bgColor-hover: #e6d2fe;
    --label-purple-bgColor-rest: #f1e5ff;
    --label-purple-fgColor-active: #4f21ab;
    --label-purple-fgColor-hover: #6223d7;
    --label-purple-fgColor-rest: #783ae4;
    --label-red-bgColor-active: #fda5a7;
    --label-red-bgColor-hover: #fecdcd;
    --label-red-bgColor-rest: #ffe2e0;
    --label-red-fgColor-active: #880c27;
    --label-red-fgColor-hover: #a60c29;
    --label-red-fgColor-rest: #c50d28;
    --label-teal-bgColor-active: #22d3c7;
    --label-teal-bgColor-hover: #89ebe1;
    --label-teal-bgColor-rest: #c7f5ef;
    --label-teal-fgColor-active: #0a4852;
    --label-teal-fgColor-hover: #0d5b63;
    --label-teal-fgColor-rest: #106e75;
    --label-yellow-bgColor-active: #ebb400;
    --label-yellow-bgColor-hover: #ffd642;
    --label-yellow-bgColor-rest: #ffec9e;
    --label-yellow-fgColor-active: #5c3d00;
    --label-yellow-fgColor-hover: #704d00;
    --label-yellow-fgColor-rest: #805900;
    --menu-bgColor-active: #ffffff00;
    --overlay-backdrop-bgColor: #c8d1da66;
    --reactionButton-selected-bgColor-rest: #ddf4ff;
    --reactionButton-selected-fgColor-hover: #0550ae;
    --selectMenu-bgColor-active: #b6e3ff;
    --selectMenu-borderColor: #ffffff00;
    --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
    --skeletonLoader-bgColor: #818b981a;
    --topicTag-borderColor: #ffffff00;
    --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
    --underlineNav-borderColor-active: #fd8c73;
    --avatar-bgColor: #ffffff;
    --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
    --bgColor-black: #1f2328;
    --bgColor-closed-emphasis: var(--bgColor-neutral-emphasis);
    --bgColor-closed-muted: var(--bgColor-neutral-muted);
    --bgColor-default: #ffffff;
    --bgColor-inset: var(--bgColor-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #0969da;
    --border-accent-muted: 0.0625rem solid #54aeff66;
    --border-attention-emphasis: 0.0625rem solid #9a6700;
    --border-attention-muted: 0.0625rem solid #d4a72c66;
    --border-danger-emphasis: 0.0625rem solid #cf222e;
    --border-danger-muted: 0.0625rem solid #ff818266;
    --border-default: 0.0625rem solid #d1d9e0;
    --border-disabled: 0.0625rem solid #818b981a;
    --border-done-emphasis: 0.0625rem solid #8250df;
    --border-done-muted: 0.0625rem solid #c297ff66;
    --border-emphasis: 0.0625rem solid #818b98;
    --border-neutral-emphasis: 0.0625rem solid #59636e;
    --border-severe-emphasis: 0.0625rem solid #cf222e;
    --border-severe-muted: 0.0625rem solid #ff818266;
    --border-sponsors-emphasis: 0.0625rem solid #bf3989;
    --border-sponsors-muted: 0.0625rem solid #ff80c866;
    --border-success-emphasis: 0.0625rem solid #0969da;
    --border-success-muted: 0.0625rem solid #54aeff66;
    --border-transparent: 0.0625rem solid #ffffff00;
    --borderColor-closed-emphasis: var(--borderColor-emphasis);
    --borderColor-closed-muted: #d1d9e066;
    --borderColor-muted: #d1d9e0b3;
    --borderColor-translucent: #1f232826;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
    --button-outline-bgColor-rest: var(--control-bgColor-rest);
    --button-outline-fgColor-active: #ffffff;
    --button-outline-fgColor-disabled: #0969da80;
    --button-outline-fgColor-hover: #ffffff;
    --button-outline-fgColor-rest: var(--fgColor-accent);
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-rest: #1f232826;
    --button-primary-fgColor-disabled: #ffffffcc;
    --buttonCounter-danger-bgColor-disabled: #cf222e0d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-bgColor-rest: #cf222e1a;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #0969da0d;
    --buttonCounter-outline-bgColor-hover: #ffffff33;
    --buttonCounter-outline-bgColor-rest: #0969da1a;
    --buttonCounter-outline-fgColor-disabled: #0969da80;
    --buttonCounter-outline-fgColor-hover: #ffffff;
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --codeMirror-syntax-fgColor-comment: #1f2328;
    --color-ansi-black: #1f2328;
    --color-prettylights-syntax-markup-bold: #1f2328;
    --color-prettylights-syntax-markup-italic: #1f2328;
    --color-prettylights-syntax-storage-modifier-import: #1f2328;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-danger-bgColor-active: #ffebe966;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlKnob-bgColor-rest: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --fgColor-black: #1f2328;
    --fgColor-closed: var(--fgColor-muted);
    --fgColor-default: #1f2328;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #ffffff;
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --header-fgColor-logo: #ffffff;
    --overlay-bgColor: #ffffff;
    --page-header-bgColor: var(--bgColor-muted);
    --selection-bgColor: #0969da33;
    --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
    --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
    --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
    --sideNav-bgColor-selected: #ffffff;
    --timelineBadge-bgColor: var(--bgColor-muted);
    --tooltip-bgColor: var(--bgColor-emphasis);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #d1d9e0b3;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8250df;
    --border-upsell-muted: 0.0625rem solid #c297ff66;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-active: var(--control-borderColor-rest);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: #ffffffcc;
    --card-bgColor: var(--bgColor-default);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --control-borderColor-selected: var(--control-bgColor-selected);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --focus-outline: 2px solid #0969da;
    --overlay-borderColor: #d1d9e080;
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --underlineNav-borderColor-hover: var(--borderColor-muted);
    --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
    --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
    --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
    --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

[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 {
  --bgColor-success-emphasis: #1f883d;
  --button-danger-bgColor-active: #8b0820;
  --button-outline-bgColor-active: #0757ba;
  --button-primary-bgColor-active: #197935;
  --button-primary-bgColor-disabled: #95d8a6;
  --button-primary-bgColor-hover: #1c8139;
  --buttonCounter-danger-fgColor-rest: #c21c2c;
  --color-ansi-cyan: #1b7c83;
  --color-ansi-cyan-bright: #3192aa;
  --control-checked-bgColor-active: #0757ba;
  --control-checked-bgColor-hover: #0860ca;
  --fgColor-danger: #d1242f;
  --reactionButton-selected-bgColor-hover: #caecff;
  --avatarStack-fade-bgColor-default: #c8d1da;
  --avatarStack-fade-bgColor-muted: #dae0e7;
  --bgColor-accent-emphasis: #0969da;
  --bgColor-accent-muted: #ddf4ff;
  --bgColor-attention-emphasis: #9a6700;
  --bgColor-attention-muted: #fff8c5;
  --bgColor-danger-emphasis: #cf222e;
  --bgColor-danger-muted: #ffebe9;
  --bgColor-disabled: #eff2f5;
  --bgColor-done-emphasis: #8250df;
  --bgColor-done-muted: #fbefff;
  --bgColor-emphasis: #25292e;
  --bgColor-inverse: #25292e;
  --bgColor-muted: #f6f8fa;
  --bgColor-neutral-emphasis: #59636e;
  --bgColor-neutral-muted: #818b981f;
  --bgColor-open-emphasis: var(--bgColor-success-emphasis);
  --bgColor-severe-emphasis: #bc4c00;
  --bgColor-severe-muted: #fff1e5;
  --bgColor-sponsors-emphasis: #bf3989;
  --bgColor-sponsors-muted: #ffeff7;
  --bgColor-success-muted: #dafbe1;
  --bgColor-transparent: #ffffff00;
  --borderColor-accent-emphasis: #0969da;
  --borderColor-accent-muted: #54aeff66;
  --borderColor-attention-emphasis: #9a6700;
  --borderColor-attention-muted: #d4a72c66;
  --borderColor-danger-emphasis: #cf222e;
  --borderColor-danger-muted: #ff818266;
  --borderColor-default: #d1d9e0;
  --borderColor-disabled: #818b981a;
  --borderColor-done-emphasis: #8250df;
  --borderColor-done-muted: #c297ff66;
  --borderColor-emphasis: #818b98;
  --borderColor-neutral-emphasis: #59636e;
  --borderColor-severe-emphasis: #bc4c00;
  --borderColor-severe-muted: #fb8f4466;
  --borderColor-sponsors-emphasis: #bf3989;
  --borderColor-sponsors-muted: #ff80c866;
  --borderColor-success-emphasis: #1a7f37;
  --borderColor-success-muted: #4ac26b66;
  --borderColor-transparent: #ffffff00;
  --button-danger-bgColor-hover: #a40e26;
  --button-danger-fgColor-disabled: #d1242f80;
  --button-danger-fgColor-rest: var(--fgColor-danger);
  --button-danger-iconColor-rest: var(--fgColor-danger);
  --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433;
  --button-inactive-bgColor: #e6eaef;
  --button-inactive-fgColor: #59636e;
  --button-invisible-bgColor-disabled: #ffffff00;
  --button-invisible-borderColor-disabled: #ffffff00;
  --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
  --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
  --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
  --button-primary-shadow-selected: inset 0px 1px 0px 0px #002d114d;
  --button-star-iconColor: #eac54f;
  --buttonCounter-danger-fgColor-disabled: #d1242f80;
  --buttonCounter-outline-fgColor-rest: #0550ae;
  --buttonCounter-primary-bgColor-rest: #002d1133;
  --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;
  --color-ansi-black-bright: #393f46;
  --color-ansi-blue: #0969da;
  --color-ansi-blue-bright: #218bff;
  --color-ansi-gray: #59636e;
  --color-ansi-green: #116329;
  --color-ansi-green-bright: #1a7f37;
  --color-ansi-magenta: #8250df;
  --color-ansi-magenta-bright: #a475f9;
  --color-ansi-red: #cf222e;
  --color-ansi-red-bright: #a40e26;
  --color-ansi-white: #59636e;
  --color-ansi-white-bright: #818b98;
  --color-ansi-yellow: #4d2d00;
  --color-ansi-yellow-bright: #633c01;
  --color-prettylights-syntax-brackethighlighter-angle: #59636e;
  --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
  --color-prettylights-syntax-carriage-return-bg: #cf222e;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-comment: #59636e;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-prettylights-syntax-entity: #6639ba;
  --color-prettylights-syntax-entity-tag: #0550ae;
  --color-prettylights-syntax-invalid-illegal-bg: #82071e;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
  --color-prettylights-syntax-markup-changed-text: #953800;
  --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
  --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
  --color-prettylights-syntax-markup-inserted-text: #116329;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-string-regexp: #116329;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
  --color-prettylights-syntax-variable: #953800;
  --contribution-default-bgColor-0: #eff2f5;
  --contribution-default-bgColor-1: #aceebb;
  --contribution-default-bgColor-2: #4ac26b;
  --contribution-default-bgColor-3: #2da44e;
  --contribution-default-bgColor-4: #116329;
  --contribution-default-borderColor-0: #1f23280d;
  --contribution-default-borderColor-1: #1f23280d;
  --contribution-default-borderColor-2: #1f23280d;
  --contribution-default-borderColor-3: #1f23280d;
  --contribution-default-borderColor-4: #1f23280d;
  --contribution-halloween-bgColor-1: #f0db3d;
  --contribution-halloween-bgColor-2: #ffd642;
  --contribution-halloween-bgColor-3: #f68c41;
  --contribution-halloween-bgColor-4: #1f2328;
  --contribution-winter-bgColor-1: #b6e3ff;
  --contribution-winter-bgColor-2: #54aeff;
  --contribution-winter-bgColor-3: #0969da;
  --contribution-winter-bgColor-4: #0a3069;
  --control-bgColor-active: #e6eaef;
  --control-bgColor-hover: #eff2f5;
  --control-bgColor-rest: #f6f8fa;
  --control-checked-borderColor-active: var(--control-checked-bgColor-active);
  --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
  --control-danger-fgColor-hover: var(--fgColor-danger);
  --control-danger-fgColor-rest: var(--fgColor-danger);
  --control-fgColor-rest: #25292e;
  --control-transparent-bgColor-active: #818b9826;
  --control-transparent-bgColor-hover: #818b981a;
  --control-transparent-bgColor-rest: #ffffff00;
  --control-transparent-bgColor-selected: #818b9826;
  --control-transparent-borderColor-active: #ffffff00;
  --control-transparent-borderColor-hover: #ffffff00;
  --control-transparent-borderColor-rest: #ffffff00;
  --controlTrack-bgColor-active: #dae0e7;
  --controlTrack-bgColor-hover: #e0e6eb;
  --controlTrack-bgColor-rest: #e6eaef;
  --controlTrack-fgColor-rest: #59636e;
  --counter-borderColor: #ffffff00;
  --data-auburn-color-emphasis: #9d615c;
  --data-auburn-color-muted: #f2e9e9;
  --data-blue-color-emphasis: #006edb;
  --data-blue-color-muted: #d1f0ff;
  --data-brown-color-emphasis: #856d4c;
  --data-brown-color-muted: #eeeae2;
  --data-coral-color-emphasis: #d43511;
  --data-coral-color-muted: #ffe5db;
  --data-gray-color-emphasis: #808fa3;
  --data-gray-color-muted: #e8ecf2;
  --data-green-color-emphasis: #30a147;
  --data-green-color-muted: #caf7ca;
  --data-lemon-color-emphasis: #866e04;
  --data-lemon-color-muted: #f7eea1;
  --data-lime-color-emphasis: #527a29;
  --data-lime-color-muted: #e3f2b5;
  --data-olive-color-emphasis: #64762d;
  --data-olive-color-muted: #f0f0ad;
  --data-orange-color-emphasis: #eb670f;
  --data-orange-color-muted: #ffe7d1;
  --data-pine-color-emphasis: #167e53;
  --data-pine-color-muted: #bff8db;
  --data-pink-color-emphasis: #ce2c85;
  --data-pink-color-muted: #ffe5f1;
  --data-plum-color-emphasis: #a830e8;
  --data-plum-color-muted: #f8e5ff;
  --data-purple-color-emphasis: #894ceb;
  --data-purple-color-muted: #f1e5ff;
  --data-red-color-emphasis: #df0c24;
  --data-red-color-muted: #ffe2e0;
  --data-teal-color-emphasis: #179b9b;
  --data-teal-color-muted: #c7f5ef;
  --data-yellow-color-emphasis: #b88700;
  --data-yellow-color-muted: #ffec9e;
  --diffBlob-additionNum-bgColor: #aceebb;
  --diffBlob-additionWord-bgColor: #aceebb;
  --diffBlob-deletionNum-bgColor: #ffcecb;
  --diffBlob-deletionWord-bgColor: #ffcecb;
  --diffBlob-hunkNum-bgColor-rest: #b6e3ff;
  --display-auburn-bgColor-emphasis: #9d615c;
  --display-auburn-bgColor-muted: #f2e9e9;
  --display-auburn-borderColor-emphasis: #9d615c;
  --display-auburn-borderColor-muted: #e6d6d5;
  --display-auburn-fgColor: #8a5551;
  --display-auburn-scale-0: #f2e9e9;
  --display-auburn-scale-1: #e6d6d5;
  --display-auburn-scale-2: #d4b7b5;
  --display-auburn-scale-3: #c59e9b;
  --display-auburn-scale-4: #b4827e;
  --display-auburn-scale-5: #9d615c;
  --display-auburn-scale-6: #8a5551;
  --display-auburn-scale-7: #744744;
  --display-auburn-scale-8: #5d3937;
  --display-auburn-scale-9: #432928;
  --display-blue-bgColor-emphasis: #006edb;
  --display-blue-bgColor-muted: #d1f0ff;
  --display-blue-borderColor-emphasis: #006edb;
  --display-blue-borderColor-muted: #ade1ff;
  --display-blue-fgColor: #005fcc;
  --display-blue-scale-0: #d1f0ff;
  --display-blue-scale-1: #ade1ff;
  --display-blue-scale-2: #75c8ff;
  --display-blue-scale-3: #47afff;
  --display-blue-scale-4: #0f8fff;
  --display-blue-scale-5: #006edb;
  --display-blue-scale-6: #005fcc;
  --display-blue-scale-7: #004db3;
  --display-blue-scale-8: #003d99;
  --display-blue-scale-9: #002b75;
  --display-brown-bgColor-emphasis: #856d4c;
  --display-brown-bgColor-muted: #eeeae2;
  --display-brown-borderColor-emphasis: #856d4c;
  --display-brown-borderColor-muted: #dfd7c8;
  --display-brown-fgColor: #755f43;
  --display-brown-scale-0: #eeeae2;
  --display-brown-scale-1: #dfd7c8;
  --display-brown-scale-2: #cbbda4;
  --display-brown-scale-3: #b8a484;
  --display-brown-scale-4: #a68b64;
  --display-brown-scale-5: #856d4c;
  --display-brown-scale-6: #755f43;
  --display-brown-scale-7: #64513a;
  --display-brown-scale-8: #51412f;
  --display-brown-scale-9: #3a2e22;
  --display-coral-bgColor-emphasis: #d43511;
  --display-coral-bgColor-muted: #ffe5db;
  --display-coral-borderColor-emphasis: #d43511;
  --display-coral-borderColor-muted: #fecebe;
  --display-coral-fgColor: #ba2e12;
  --display-coral-scale-0: #ffe5db;
  --display-coral-scale-1: #fecebe;
  --display-coral-scale-2: #fcab92;
  --display-coral-scale-3: #f88768;
  --display-coral-scale-4: #f25f3a;
  --display-coral-scale-5: #d43511;
  --display-coral-scale-6: #ba2e12;
  --display-coral-scale-7: #9b2712;
  --display-coral-scale-8: #7e2011;
  --display-coral-scale-9: #5d180e;
  --display-cyan-bgColor-emphasis: #007b94;
  --display-cyan-bgColor-muted: #bdf4ff;
  --display-cyan-borderColor-emphasis: #007b94;
  --display-cyan-borderColor-muted: #7ae9ff;
  --display-cyan-fgColor: #006a80;
  --display-cyan-scale-0: #bdf4ff;
  --display-cyan-scale-1: #7ae9ff;
  --display-cyan-scale-2: #00d0fa;
  --display-cyan-scale-3: #00b7db;
  --display-cyan-scale-4: #0099b8;
  --display-cyan-scale-5: #007b94;
  --display-cyan-scale-6: #006a80;
  --display-cyan-scale-7: #00596b;
  --display-cyan-scale-8: #004857;
  --display-cyan-scale-9: #003742;
  --display-gray-bgColor-emphasis: #647182;
  --display-gray-bgColor-muted: #e8ecf2;
  --display-gray-borderColor-emphasis: #647182;
  --display-gray-borderColor-muted: #d2dae4;
  --display-gray-fgColor: #5c6570;
  --display-gray-scale-0: #e8ecf2;
  --display-gray-scale-1: #d2dae4;
  --display-gray-scale-2: #b4c0cf;
  --display-gray-scale-3: #9ba9bb;
  --display-gray-scale-4: #808fa3;
  --display-gray-scale-5: #647182;
  --display-gray-scale-6: #5c6570;
  --display-gray-scale-7: #4e535a;
  --display-gray-scale-8: #424448;
  --display-gray-scale-9: #303031;
  --display-green-bgColor-emphasis: #2c8141;
  --display-green-bgColor-muted: #caf7ca;
  --display-green-borderColor-emphasis: #2c8141;
  --display-green-borderColor-muted: #9ceda0;
  --display-green-fgColor: #2b6e3f;
  --display-green-scale-0: #caf7ca;
  --display-green-scale-1: #9ceda0;
  --display-green-scale-2: #54d961;
  --display-green-scale-3: #31bf46;
  --display-green-scale-4: #30a147;
  --display-green-scale-5: #2c8141;
  --display-green-scale-6: #2b6e3f;
  --display-green-scale-7: #285c3b;
  --display-green-scale-8: #254b34;
  --display-green-scale-9: #1d3528;
  --display-indigo-bgColor-emphasis: #5a61e7;
  --display-indigo-bgColor-muted: #e5e9ff;
  --display-indigo-borderColor-emphasis: #5a61e7;
  --display-indigo-borderColor-muted: #d2d7fe;
  --display-indigo-fgColor: #494edf;
  --display-indigo-scale-0: #e5e9ff;
  --display-indigo-scale-1: #d2d7fe;
  --display-indigo-scale-2: #b1b9fb;
  --display-indigo-scale-3: #979ff7;
  --display-indigo-scale-4: #7a82f0;
  --display-indigo-scale-5: #5a61e7;
  --display-indigo-scale-6: #494edf;
  --display-indigo-scale-7: #393cd5;
  --display-indigo-scale-8: #2d2db4;
  --display-indigo-scale-9: #25247b;
  --display-lemon-bgColor-emphasis: #866e04;
  --display-lemon-bgColor-muted: #f7eea1;
  --display-lemon-borderColor-emphasis: #866e04;
  --display-lemon-borderColor-muted: #f0db3d;
  --display-lemon-fgColor: #786002;
  --display-lemon-scale-0: #f7eea1;
  --display-lemon-scale-1: #f0db3d;
  --display-lemon-scale-2: #d8bd0e;
  --display-lemon-scale-3: #c2a60a;
  --display-lemon-scale-4: #a68c07;
  --display-lemon-scale-5: #866e04;
  --display-lemon-scale-6: #786002;
  --display-lemon-scale-7: #654f01;
  --display-lemon-scale-8: #523f00;
  --display-lemon-scale-9: #3d2e00;
  --display-lime-bgColor-emphasis: #527a29;
  --display-lime-bgColor-muted: #e3f2b5;
  --display-lime-borderColor-emphasis: #527a29;
  --display-lime-borderColor-muted: #c7e580;
  --display-lime-fgColor: #476c28;
  --display-lime-scale-0: #e3f2b5;
  --display-lime-scale-1: #c7e580;
  --display-lime-scale-2: #9bd039;
  --display-lime-scale-3: #80b530;
  --display-lime-scale-4: #6c9d2f;
  --display-lime-scale-5: #527a29;
  --display-lime-scale-6: #476c28;
  --display-lime-scale-7: #3a5b25;
  --display-lime-scale-8: #2f4a21;
  --display-lime-scale-9: #213319;
  --display-olive-bgColor-emphasis: #64762d;
  --display-olive-bgColor-muted: #f0f0ad;
  --display-olive-borderColor-emphasis: #64762d;
  --display-olive-borderColor-muted: #dbe170;
  --display-olive-fgColor: #56682c;
  --display-olive-scale-0: #f0f0ad;
  --display-olive-scale-1: #dbe170;
  --display-olive-scale-2: #b9c832;
  --display-olive-scale-3: #9bae32;
  --display-olive-scale-4: #819532;
  --display-olive-scale-5: #64762d;
  --display-olive-scale-6: #56682c;
  --display-olive-scale-7: #495a2b;
  --display-olive-scale-8: #3b4927;
  --display-olive-scale-9: #2a331f;
  --display-orange-bgColor-emphasis: #b8500f;
  --display-orange-bgColor-muted: #ffe7d1;
  --display-orange-borderColor-emphasis: #b8500f;
  --display-orange-borderColor-muted: #fecfaa;
  --display-orange-fgColor: #a24610;
  --display-orange-scale-0: #ffe7d1;
  --display-orange-scale-1: #fecfaa;
  --display-orange-scale-2: #fbaf74;
  --display-orange-scale-3: #f68c41;
  --display-orange-scale-4: #eb670f;
  --display-orange-scale-5: #b8500f;
  --display-orange-scale-6: #a24610;
  --display-orange-scale-7: #8d3c11;
  --display-orange-scale-8: #70300f;
  --display-orange-scale-9: #54230d;
  --display-pine-bgColor-emphasis: #167e53;
  --display-pine-bgColor-muted: #bff8db;
  --display-pine-borderColor-emphasis: #167e53;
  --display-pine-borderColor-muted: #80efb9;
  --display-pine-fgColor: #156f4b;
  --display-pine-scale-0: #bff8db;
  --display-pine-scale-1: #80efb9;
  --display-pine-scale-2: #1dd781;
  --display-pine-scale-3: #1dbf76;
  --display-pine-scale-4: #1aa267;
  --display-pine-scale-5: #167e53;
  --display-pine-scale-6: #156f4b;
  --display-pine-scale-7: #135d41;
  --display-pine-scale-8: #114b36;
  --display-pine-scale-9: #0d3627;
  --display-pink-bgColor-emphasis: #ce2c85;
  --display-pink-bgColor-muted: #ffe5f1;
  --display-pink-borderColor-emphasis: #ce2c85;
  --display-pink-borderColor-muted: #fdc9e2;
  --display-pink-fgColor: #b12f79;
  --display-pink-scale-0: #ffe5f1;
  --display-pink-scale-1: #fdc9e2;
  --display-pink-scale-2: #f8a5cf;
  --display-pink-scale-3: #f184bc;
  --display-pink-scale-4: #e55da5;
  --display-pink-scale-5: #ce2c85;
  --display-pink-scale-6: #b12f79;
  --display-pink-scale-7: #8e2e66;
  --display-pink-scale-8: #6e2b53;
  --display-pink-scale-9: #4d233d;
  --display-plum-bgColor-emphasis: #a830e8;
  --display-plum-bgColor-muted: #f8e5ff;
  --display-plum-borderColor-emphasis: #a830e8;
  --display-plum-borderColor-muted: #f0cdfe;
  --display-plum-fgColor: #961edc;
  --display-plum-scale-0: #f8e5ff;
  --display-plum-scale-1: #f0cdfe;
  --display-plum-scale-2: #e2a7fb;
  --display-plum-scale-3: #d487f7;
  --display-plum-scale-4: #c264f2;
  --display-plum-scale-5: #a830e8;
  --display-plum-scale-6: #961edc;
  --display-plum-scale-7: #7d1eb8;
  --display-plum-scale-8: #651d96;
  --display-plum-scale-9: #471769;
  --display-purple-bgColor-emphasis: #894ceb;
  --display-purple-bgColor-muted: #f1e5ff;
  --display-purple-borderColor-emphasis: #894ceb;
  --display-purple-borderColor-muted: #e6d2fe;
  --display-purple-fgColor: #783ae4;
  --display-purple-scale-0: #f1e5ff;
  --display-purple-scale-1: #e6d2fe;
  --display-purple-scale-2: #d1b1fc;
  --display-purple-scale-3: #bc91f8;
  --display-purple-scale-4: #a672f3;
  --display-purple-scale-5: #894ceb;
  --display-purple-scale-6: #783ae4;
  --display-purple-scale-7: #6223d7;
  --display-purple-scale-8: #4f21ab;
  --display-purple-scale-9: #391b79;
  --display-red-bgColor-emphasis: #df0c24;
  --display-red-bgColor-muted: #ffe2e0;
  --display-red-borderColor-emphasis: #df0c24;
  --display-red-borderColor-muted: #fecdcd;
  --display-red-fgColor: #c50d28;
  --display-red-scale-0: #ffe2e0;
  --display-red-scale-1: #fecdcd;
  --display-red-scale-2: #fda5a7;
  --display-red-scale-3: #fb8389;
  --display-red-scale-4: #f85461;
  --display-red-scale-5: #df0c24;
  --display-red-scale-6: #c50d28;
  --display-red-scale-7: #a60c29;
  --display-red-scale-8: #880c27;
  --display-red-scale-9: #610a20;
  --display-teal-bgColor-emphasis: #127e81;
  --display-teal-bgColor-muted: #c7f5ef;
  --display-teal-borderColor-emphasis: #127e81;
  --display-teal-borderColor-muted: #89ebe1;
  --display-teal-fgColor: #106e75;
  --display-teal-scale-0: #c7f5ef;
  --display-teal-scale-1: #89ebe1;
  --display-teal-scale-2: #22d3c7;
  --display-teal-scale-3: #1db9b4;
  --display-teal-scale-4: #179b9b;
  --display-teal-scale-5: #127e81;
  --display-teal-scale-6: #106e75;
  --display-teal-scale-7: #0d5b63;
  --display-teal-scale-8: #0a4852;
  --display-teal-scale-9: #073740;
  --display-yellow-bgColor-emphasis: #946a00;
  --display-yellow-bgColor-muted: #ffec9e;
  --display-yellow-borderColor-emphasis: #946a00;
  --display-yellow-borderColor-muted: #ffd642;
  --display-yellow-fgColor: #805900;
  --display-yellow-scale-0: #ffec9e;
  --display-yellow-scale-1: #ffd642;
  --display-yellow-scale-2: #ebb400;
  --display-yellow-scale-3: #d19d00;
  --display-yellow-scale-4: #b88700;
  --display-yellow-scale-5: #946a00;
  --display-yellow-scale-6: #805900;
  --display-yellow-scale-7: #704d00;
  --display-yellow-scale-8: #5c3d00;
  --display-yellow-scale-9: #422b00;
  --fgColor-accent: #0969da;
  --fgColor-attention: #9a6700;
  --fgColor-closed: var(--fgColor-danger);
  --fgColor-disabled: #818b98;
  --fgColor-done: #8250df;
  --fgColor-muted: #59636e;
  --fgColor-neutral: #59636e;
  --fgColor-severe: #bc4c00;
  --fgColor-sponsors: #bf3989;
  --fgColor-success: #1a7f37;
  --header-bgColor: #25292e;
  --header-borderColor-divider: #818b98;
  --headerSearch-bgColor: #25292e;
  --headerSearch-borderColor: #818b98;
  --highlight-neutral-bgColor: #fff8c5;
  --label-auburn-bgColor-active: #d4b7b5;
  --label-auburn-bgColor-hover: #e6d6d5;
  --label-auburn-bgColor-rest: #f2e9e9;
  --label-auburn-fgColor-active: #5d3937;
  --label-auburn-fgColor-hover: #744744;
  --label-auburn-fgColor-rest: #8a5551;
  --label-blue-bgColor-active: #75c8ff;
  --label-blue-bgColor-hover: #ade1ff;
  --label-blue-bgColor-rest: #d1f0ff;
  --label-blue-fgColor-active: #003d99;
  --label-blue-fgColor-hover: #004db3;
  --label-blue-fgColor-rest: #005fcc;
  --label-brown-bgColor-active: #cbbda4;
  --label-brown-bgColor-hover: #dfd7c8;
  --label-brown-bgColor-rest: #eeeae2;
  --label-brown-fgColor-active: #51412f;
  --label-brown-fgColor-hover: #64513a;
  --label-brown-fgColor-rest: #755f43;
  --label-coral-bgColor-active: #fcab92;
  --label-coral-bgColor-hover: #fecebe;
  --label-coral-bgColor-rest: #ffe5db;
  --label-coral-fgColor-active: #7e2011;
  --label-coral-fgColor-hover: #9b2712;
  --label-coral-fgColor-rest: #ba2e12;
  --label-cyan-bgColor-active: #00d0fa;
  --label-cyan-bgColor-hover: #7ae9ff;
  --label-cyan-bgColor-rest: #bdf4ff;
  --label-cyan-fgColor-active: #004857;
  --label-cyan-fgColor-hover: #00596b;
  --label-cyan-fgColor-rest: #006a80;
  --label-gray-bgColor-active: #b4c0cf;
  --label-gray-bgColor-hover: #d2dae4;
  --label-gray-bgColor-rest: #e8ecf2;
  --label-gray-fgColor-active: #424448;
  --label-gray-fgColor-hover: #4e535a;
  --label-gray-fgColor-rest: #5c6570;
  --label-green-bgColor-active: #54d961;
  --label-green-bgColor-hover: #9ceda0;
  --label-green-bgColor-rest: #caf7ca;
  --label-green-fgColor-active: #254b34;
  --label-green-fgColor-hover: #285c3b;
  --label-green-fgColor-rest: #2b6e3f;
  --label-indigo-bgColor-active: #b1b9fb;
  --label-indigo-bgColor-hover: #d2d7fe;
  --label-indigo-bgColor-rest: #e5e9ff;
  --label-indigo-fgColor-active: #2d2db4;
  --label-indigo-fgColor-hover: #393cd5;
  --label-indigo-fgColor-rest: #494edf;
  --label-lemon-bgColor-active: #d8bd0e;
  --label-lemon-bgColor-hover: #f0db3d;
  --label-lemon-bgColor-rest: #f7eea1;
  --label-lemon-fgColor-active: #523f00;
  --label-lemon-fgColor-hover: #654f01;
  --label-lemon-fgColor-rest: #786002;
  --label-lime-bgColor-active: #9bd039;
  --label-lime-bgColor-hover: #c7e580;
  --label-lime-bgColor-rest: #e3f2b5;
  --label-lime-fgColor-active: #2f4a21;
  --label-lime-fgColor-hover: #3a5b25;
  --label-lime-fgColor-rest: #476c28;
  --label-olive-bgColor-active: #b9c832;
  --label-olive-bgColor-hover: #dbe170;
  --label-olive-bgColor-rest: #f0f0ad;
  --label-olive-fgColor-active: #3b4927;
  --label-olive-fgColor-hover: #495a2b;
  --label-olive-fgColor-rest: #56682c;
  --label-orange-bgColor-active: #fbaf74;
  --label-orange-bgColor-hover: #fecfaa;
  --label-orange-bgColor-rest: #ffe7d1;
  --label-orange-fgColor-active: #70300f;
  --label-orange-fgColor-hover: #8d3c11;
  --label-orange-fgColor-rest: #a24610;
  --label-pine-bgColor-active: #1dd781;
  --label-pine-bgColor-hover: #80efb9;
  --label-pine-bgColor-rest: #bff8db;
  --label-pine-fgColor-active: #114b36;
  --label-pine-fgColor-hover: #135d41;
  --label-pine-fgColor-rest: #156f4b;
  --label-pink-bgColor-active: #f8a5cf;
  --label-pink-bgColor-hover: #fdc9e2;
  --label-pink-bgColor-rest: #ffe5f1;
  --label-pink-fgColor-active: #6e2b53;
  --label-pink-fgColor-hover: #8e2e66;
  --label-pink-fgColor-rest: #b12f79;
  --label-plum-bgColor-active: #e2a7fb;
  --label-plum-bgColor-hover: #f0cdfe;
  --label-plum-bgColor-rest: #f8e5ff;
  --label-plum-fgColor-active: #651d96;
  --label-plum-fgColor-hover: #7d1eb8;
  --label-plum-fgColor-rest: #961edc;
  --label-purple-bgColor-active: #d1b1fc;
  --label-purple-bgColor-hover: #e6d2fe;
  --label-purple-bgColor-rest: #f1e5ff;
  --label-purple-fgColor-active: #4f21ab;
  --label-purple-fgColor-hover: #6223d7;
  --label-purple-fgColor-rest: #783ae4;
  --label-red-bgColor-active: #fda5a7;
  --label-red-bgColor-hover: #fecdcd;
  --label-red-bgColor-rest: #ffe2e0;
  --label-red-fgColor-active: #880c27;
  --label-red-fgColor-hover: #a60c29;
  --label-red-fgColor-rest: #c50d28;
  --label-teal-bgColor-active: #22d3c7;
  --label-teal-bgColor-hover: #89ebe1;
  --label-teal-bgColor-rest: #c7f5ef;
  --label-teal-fgColor-active: #0a4852;
  --label-teal-fgColor-hover: #0d5b63;
  --label-teal-fgColor-rest: #106e75;
  --label-yellow-bgColor-active: #ebb400;
  --label-yellow-bgColor-hover: #ffd642;
  --label-yellow-bgColor-rest: #ffec9e;
  --label-yellow-fgColor-active: #5c3d00;
  --label-yellow-fgColor-hover: #704d00;
  --label-yellow-fgColor-rest: #805900;
  --menu-bgColor-active: #ffffff00;
  --overlay-backdrop-bgColor: #c8d1da66;
  --reactionButton-selected-bgColor-rest: #ddf4ff;
  --reactionButton-selected-fgColor-hover: #0550ae;
  --selectMenu-bgColor-active: #b6e3ff;
  --selectMenu-borderColor: #ffffff00;
  --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
  --skeletonLoader-bgColor: #818b981a;
  --topicTag-borderColor: #ffffff00;
  --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
  --underlineNav-borderColor-active: #fd8c73;
  --avatar-bgColor: #ffffff;
  --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
  --bgColor-black: #1f2328;
  --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
  --bgColor-closed-muted: var(--bgColor-danger-muted);
  --bgColor-default: #ffffff;
  --bgColor-inset: var(--bgColor-muted);
  --bgColor-open-muted: var(--bgColor-success-muted);
  --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
  --bgColor-upsell-muted: var(--bgColor-done-muted);
  --bgColor-white: #ffffff;
  --border-accent-emphasis: 0.0625rem solid #0969da;
  --border-accent-muted: 0.0625rem solid #54aeff66;
  --border-attention-emphasis: 0.0625rem solid #9a6700;
  --border-attention-muted: 0.0625rem solid #d4a72c66;
  --border-danger-emphasis: 0.0625rem solid #cf222e;
  --border-danger-muted: 0.0625rem solid #ff818266;
  --border-default: 0.0625rem solid #d1d9e0;
  --border-disabled: 0.0625rem solid #818b981a;
  --border-done-emphasis: 0.0625rem solid #8250df;
  --border-done-muted: 0.0625rem solid #c297ff66;
  --border-emphasis: 0.0625rem solid #818b98;
  --border-neutral-emphasis: 0.0625rem solid #59636e;
  --border-severe-emphasis: 0.0625rem solid #bc4c00;
  --border-severe-muted: 0.0625rem solid #fb8f4466;
  --border-sponsors-emphasis: 0.0625rem solid #bf3989;
  --border-sponsors-muted: 0.0625rem solid #ff80c866;
  --border-success-emphasis: 0.0625rem solid #1a7f37;
  --border-success-muted: 0.0625rem solid #4ac26b66;
  --border-transparent: 0.0625rem solid #ffffff00;
  --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
  --borderColor-closed-muted: var(--borderColor-danger-muted);
  --borderColor-muted: #d1d9e0b3;
  --borderColor-open-emphasis: var(--borderColor-success-emphasis);
  --borderColor-open-muted: var(--borderColor-success-muted);
  --borderColor-translucent: #1f232826;
  --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
  --borderColor-upsell-muted: var(--borderColor-done-muted);
  --button-danger-bgColor-rest: var(--control-bgColor-rest);
  --button-danger-fgColor-active: #ffffff;
  --button-danger-fgColor-hover: #ffffff;
  --button-danger-iconColor-hover: #ffffff;
  --button-default-bgColor-active: var(--control-bgColor-active);
  --button-default-bgColor-hover: var(--control-bgColor-hover);
  --button-default-bgColor-rest: var(--control-bgColor-rest);
  --button-default-bgColor-selected: var(--control-bgColor-active);
  --button-default-fgColor-rest: var(--control-fgColor-rest);
  --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
  --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
  --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
  --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
  --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
  --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
  --button-invisible-fgColor-active: var(--control-fgColor-rest);
  --button-invisible-fgColor-hover: var(--control-fgColor-rest);
  --button-invisible-fgColor-rest: var(--control-fgColor-rest);
  --button-invisible-iconColor-hover: var(--fgColor-muted);
  --button-invisible-iconColor-rest: var(--fgColor-muted);
  --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
  --button-outline-bgColor-rest: var(--control-bgColor-rest);
  --button-outline-fgColor-active: #ffffff;
  --button-outline-fgColor-disabled: #0969da80;
  --button-outline-fgColor-hover: #ffffff;
  --button-outline-fgColor-rest: var(--fgColor-accent);
  --button-primary-borderColor-rest: #1f232826;
  --button-primary-fgColor-disabled: #ffffffcc;
  --buttonCounter-danger-bgColor-disabled: #cf222e0d;
  --buttonCounter-danger-bgColor-hover: #ffffff33;
  --buttonCounter-danger-bgColor-rest: #cf222e1a;
  --buttonCounter-danger-fgColor-hover: #ffffff;
  --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
  --buttonCounter-outline-bgColor-disabled: #0969da0d;
  --buttonCounter-outline-bgColor-hover: #ffffff33;
  --buttonCounter-outline-bgColor-rest: #0969da1a;
  --buttonCounter-outline-fgColor-disabled: #0969da80;
  --buttonCounter-outline-fgColor-hover: #ffffff;
  --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
  --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
  --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
  --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
  --codeMirror-syntax-fgColor-comment: #1f2328;
  --color-ansi-black: #1f2328;
  --color-prettylights-syntax-markup-bold: #1f2328;
  --color-prettylights-syntax-markup-italic: #1f2328;
  --color-prettylights-syntax-storage-modifier-import: #1f2328;
  --control-bgColor-disabled: var(--bgColor-disabled);
  --control-bgColor-selected: var(--control-bgColor-rest);
  --control-borderColor-danger: var(--borderColor-danger-emphasis);
  --control-borderColor-disabled: var(--borderColor-disabled);
  --control-borderColor-emphasis: var(--borderColor-emphasis);
  --control-borderColor-rest: var(--borderColor-default);
  --control-borderColor-success: var(--borderColor-success-emphasis);
  --control-borderColor-warning: var(--borderColor-attention-emphasis);
  --control-checked-bgColor-disabled: var(--fgColor-disabled);
  --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
  --control-danger-bgColor-active: #ffebe966;
  --control-danger-bgColor-hover: var(--bgColor-danger-muted);
  --control-fgColor-disabled: var(--fgColor-disabled);
  --control-fgColor-placeholder: var(--fgColor-muted);
  --control-iconColor-rest: var(--fgColor-muted);
  --control-transparent-bgColor-disabled: var(--bgColor-disabled);
  --controlKnob-bgColor-checked: #ffffff;
  --controlKnob-bgColor-rest: #ffffff;
  --controlTrack-bgColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-disabled: var(--fgColor-disabled);
  --controlTrack-borderColor-rest: var(--borderColor-default);
  --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
  --counter-bgColor-muted: var(--bgColor-neutral-muted);
  --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
  --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
  --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
  --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
  --diffBlob-expander-iconColor: var(--fgColor-muted);
  --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
  --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
  --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
  --fgColor-black: #1f2328;
  --fgColor-default: #1f2328;
  --fgColor-link: var(--fgColor-accent);
  --fgColor-onEmphasis: #ffffff;
  --fgColor-onInverse: #ffffff;
  --fgColor-open: var(--fgColor-success);
  --fgColor-upsell: var(--fgColor-done);
  --fgColor-white: #ffffff;
  --focus-outlineColor: var(--borderColor-accent-emphasis);
  --header-fgColor-default: #ffffffb3;
  --header-fgColor-logo: #ffffff;
  --overlay-bgColor: #ffffff;
  --page-header-bgColor: var(--bgColor-muted);
  --selection-bgColor: #0969da33;
  --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
  --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
  --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
  --sideNav-bgColor-selected: #ffffff;
  --timelineBadge-bgColor: var(--bgColor-muted);
  --tooltip-bgColor: var(--bgColor-emphasis);
  --underlineNav-iconColor-rest: var(--fgColor-muted);
  --avatar-borderColor: var(--borderColor-translucent);
  --border-closed-emphasis: var(--border-danger-emphasis);
  --border-closed-muted: var(--border-danger-muted);
  --border-muted: 0.0625rem solid #d1d9e0b3;
  --border-open-emphasis: var(--border-success-emphasis);
  --border-open-muted: var(--border-success-muted);
  --border-upsell-emphasis: 0.0625rem solid #8250df;
  --border-upsell-muted: 0.0625rem solid #c297ff66;
  --borderColor-neutral-muted: var(--borderColor-muted);
  --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
  --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-danger-borderColor-rest: var(--control-borderColor-rest);
  --button-default-bgColor-disabled: var(--control-bgColor-disabled);
  --button-default-borderColor-active: var(--control-borderColor-rest);
  --button-default-borderColor-disabled: var(--control-borderColor-disabled);
  --button-default-borderColor-rest: var(--control-borderColor-rest);
  --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
  --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
  --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
  --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
  --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
  --button-primary-fgColor-rest: var(--fgColor-white);
  --button-primary-iconColor-rest: #ffffffcc;
  --card-bgColor: var(--bgColor-default);
  --codeMirror-bgColor: var(--bgColor-default);
  --codeMirror-cursor-fgColor: var(--fgColor-default);
  --codeMirror-fgColor: var(--fgColor-default);
  --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
  --codeMirror-gutters-bgColor: var(--bgColor-default);
  --codeMirror-lines-bgColor: var(--bgColor-default);
  --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
  --control-borderColor-selected: var(--control-bgColor-selected);
  --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
  --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
  --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
  --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
  --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
  --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
  --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
  --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
  --diffBlob-additionLine-fgColor: var(--fgColor-default);
  --diffBlob-additionNum-fgColor: var(--fgColor-default);
  --diffBlob-additionWord-fgColor: var(--fgColor-default);
  --diffBlob-deletionLine-fgColor: var(--fgColor-default);
  --diffBlob-deletionNum-fgColor: var(--fgColor-default);
  --diffBlob-deletionWord-fgColor: var(--fgColor-default);
  --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
  --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
  --focus-outline: 2px solid #0969da;
  --overlay-borderColor: #d1d9e080;
  --reactionButton-selected-fgColor-rest: var(--fgColor-link);
  --tooltip-fgColor: var(--fgColor-onEmphasis);
  --underlineNav-borderColor-hover: var(--borderColor-muted);
  --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
  --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
  --button-default-borderColor-hover: var(--button-default-borderColor-rest);
  --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
  --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
  --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
  --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
  --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
  --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
}

@media (prefers-color-scheme: dark) {
  [data-color-mode="auto"][data-dark-theme="light"],
  [data-color-mode="auto"][data-dark-theme="light"] ::backdrop {
    --bgColor-success-emphasis: #1f883d;
    --button-danger-bgColor-active: #8b0820;
    --button-outline-bgColor-active: #0757ba;
    --button-primary-bgColor-active: #197935;
    --button-primary-bgColor-disabled: #95d8a6;
    --button-primary-bgColor-hover: #1c8139;
    --buttonCounter-danger-fgColor-rest: #c21c2c;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --control-checked-bgColor-active: #0757ba;
    --control-checked-bgColor-hover: #0860ca;
    --fgColor-danger: #d1242f;
    --reactionButton-selected-bgColor-hover: #caecff;
    --avatarStack-fade-bgColor-default: #c8d1da;
    --avatarStack-fade-bgColor-muted: #dae0e7;
    --bgColor-accent-emphasis: #0969da;
    --bgColor-accent-muted: #ddf4ff;
    --bgColor-attention-emphasis: #9a6700;
    --bgColor-attention-muted: #fff8c5;
    --bgColor-danger-emphasis: #cf222e;
    --bgColor-danger-muted: #ffebe9;
    --bgColor-disabled: #eff2f5;
    --bgColor-done-emphasis: #8250df;
    --bgColor-done-muted: #fbefff;
    --bgColor-emphasis: #25292e;
    --bgColor-inverse: #25292e;
    --bgColor-muted: #f6f8fa;
    --bgColor-neutral-emphasis: #59636e;
    --bgColor-neutral-muted: #818b981f;
    --bgColor-open-emphasis: var(--bgColor-success-emphasis);
    --bgColor-severe-emphasis: #bc4c00;
    --bgColor-severe-muted: #fff1e5;
    --bgColor-sponsors-emphasis: #bf3989;
    --bgColor-sponsors-muted: #ffeff7;
    --bgColor-success-muted: #dafbe1;
    --bgColor-transparent: #ffffff00;
    --borderColor-accent-emphasis: #0969da;
    --borderColor-accent-muted: #54aeff66;
    --borderColor-attention-emphasis: #9a6700;
    --borderColor-attention-muted: #d4a72c66;
    --borderColor-danger-emphasis: #cf222e;
    --borderColor-danger-muted: #ff818266;
    --borderColor-default: #d1d9e0;
    --borderColor-disabled: #818b981a;
    --borderColor-done-emphasis: #8250df;
    --borderColor-done-muted: #c297ff66;
    --borderColor-emphasis: #818b98;
    --borderColor-neutral-emphasis: #59636e;
    --borderColor-severe-emphasis: #bc4c00;
    --borderColor-severe-muted: #fb8f4466;
    --borderColor-sponsors-emphasis: #bf3989;
    --borderColor-sponsors-muted: #ff80c866;
    --borderColor-success-emphasis: #1a7f37;
    --borderColor-success-muted: #4ac26b66;
    --borderColor-transparent: #ffffff00;
    --button-danger-bgColor-hover: #a40e26;
    --button-danger-fgColor-disabled: #d1242f80;
    --button-danger-fgColor-rest: var(--fgColor-danger);
    --button-danger-iconColor-rest: var(--fgColor-danger);
    --button-danger-shadow-selected: inset 0px 1px 0px 0px #4c001433;
    --button-inactive-bgColor: #e6eaef;
    --button-inactive-fgColor: #59636e;
    --button-invisible-bgColor-disabled: #ffffff00;
    --button-invisible-borderColor-disabled: #ffffff00;
    --button-outline-shadow-selected: inset 0px 1px 0px 0px #00215533;
    --button-primary-bgColor-rest: var(--bgColor-success-emphasis);
    --button-primary-borderColor-disabled: var(--button-primary-bgColor-disabled);
    --button-primary-shadow-selected: inset 0px 1px 0px 0px #002d114d;
    --button-star-iconColor: #eac54f;
    --buttonCounter-danger-fgColor-disabled: #d1242f80;
    --buttonCounter-outline-fgColor-rest: #0550ae;
    --buttonCounter-primary-bgColor-rest: #002d1133;
    --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;
    --color-ansi-black-bright: #393f46;
    --color-ansi-blue: #0969da;
    --color-ansi-blue-bright: #218bff;
    --color-ansi-gray: #59636e;
    --color-ansi-green: #116329;
    --color-ansi-green-bright: #1a7f37;
    --color-ansi-magenta: #8250df;
    --color-ansi-magenta-bright: #a475f9;
    --color-ansi-red: #cf222e;
    --color-ansi-red-bright: #a40e26;
    --color-ansi-white: #59636e;
    --color-ansi-white-bright: #818b98;
    --color-ansi-yellow: #4d2d00;
    --color-ansi-yellow-bright: #633c01;
    --color-prettylights-syntax-brackethighlighter-angle: #59636e;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-comment: #59636e;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-prettylights-syntax-entity: #6639ba;
    --color-prettylights-syntax-entity-tag: #0550ae;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
    --color-prettylights-syntax-variable: #953800;
    --contribution-default-bgColor-0: #eff2f5;
    --contribution-default-bgColor-1: #aceebb;
    --contribution-default-bgColor-2: #4ac26b;
    --contribution-default-bgColor-3: #2da44e;
    --contribution-default-bgColor-4: #116329;
    --contribution-default-borderColor-0: #1f23280d;
    --contribution-default-borderColor-1: #1f23280d;
    --contribution-default-borderColor-2: #1f23280d;
    --contribution-default-borderColor-3: #1f23280d;
    --contribution-default-borderColor-4: #1f23280d;
    --contribution-halloween-bgColor-1: #f0db3d;
    --contribution-halloween-bgColor-2: #ffd642;
    --contribution-halloween-bgColor-3: #f68c41;
    --contribution-halloween-bgColor-4: #1f2328;
    --contribution-winter-bgColor-1: #b6e3ff;
    --contribution-winter-bgColor-2: #54aeff;
    --contribution-winter-bgColor-3: #0969da;
    --contribution-winter-bgColor-4: #0a3069;
    --control-bgColor-active: #e6eaef;
    --control-bgColor-hover: #eff2f5;
    --control-bgColor-rest: #f6f8fa;
    --control-checked-borderColor-active: var(--control-checked-bgColor-active);
    --control-checked-borderColor-hover: var(--control-checked-bgColor-hover);
    --control-danger-fgColor-hover: var(--fgColor-danger);
    --control-danger-fgColor-rest: var(--fgColor-danger);
    --control-fgColor-rest: #25292e;
    --control-transparent-bgColor-active: #818b9826;
    --control-transparent-bgColor-hover: #818b981a;
    --control-transparent-bgColor-rest: #ffffff00;
    --control-transparent-bgColor-selected: #818b9826;
    --control-transparent-borderColor-active: #ffffff00;
    --control-transparent-borderColor-hover: #ffffff00;
    --control-transparent-borderColor-rest: #ffffff00;
    --controlTrack-bgColor-active: #dae0e7;
    --controlTrack-bgColor-hover: #e0e6eb;
    --controlTrack-bgColor-rest: #e6eaef;
    --controlTrack-fgColor-rest: #59636e;
    --counter-borderColor: #ffffff00;
    --data-auburn-color-emphasis: #9d615c;
    --data-auburn-color-muted: #f2e9e9;
    --data-blue-color-emphasis: #006edb;
    --data-blue-color-muted: #d1f0ff;
    --data-brown-color-emphasis: #856d4c;
    --data-brown-color-muted: #eeeae2;
    --data-coral-color-emphasis: #d43511;
    --data-coral-color-muted: #ffe5db;
    --data-gray-color-emphasis: #808fa3;
    --data-gray-color-muted: #e8ecf2;
    --data-green-color-emphasis: #30a147;
    --data-green-color-muted: #caf7ca;
    --data-lemon-color-emphasis: #866e04;
    --data-lemon-color-muted: #f7eea1;
    --data-lime-color-emphasis: #527a29;
    --data-lime-color-muted: #e3f2b5;
    --data-olive-color-emphasis: #64762d;
    --data-olive-color-muted: #f0f0ad;
    --data-orange-color-emphasis: #eb670f;
    --data-orange-color-muted: #ffe7d1;
    --data-pine-color-emphasis: #167e53;
    --data-pine-color-muted: #bff8db;
    --data-pink-color-emphasis: #ce2c85;
    --data-pink-color-muted: #ffe5f1;
    --data-plum-color-emphasis: #a830e8;
    --data-plum-color-muted: #f8e5ff;
    --data-purple-color-emphasis: #894ceb;
    --data-purple-color-muted: #f1e5ff;
    --data-red-color-emphasis: #df0c24;
    --data-red-color-muted: #ffe2e0;
    --data-teal-color-emphasis: #179b9b;
    --data-teal-color-muted: #c7f5ef;
    --data-yellow-color-emphasis: #b88700;
    --data-yellow-color-muted: #ffec9e;
    --diffBlob-additionNum-bgColor: #aceebb;
    --diffBlob-additionWord-bgColor: #aceebb;
    --diffBlob-deletionNum-bgColor: #ffcecb;
    --diffBlob-deletionWord-bgColor: #ffcecb;
    --diffBlob-hunkNum-bgColor-rest: #b6e3ff;
    --display-auburn-bgColor-emphasis: #9d615c;
    --display-auburn-bgColor-muted: #f2e9e9;
    --display-auburn-borderColor-emphasis: #9d615c;
    --display-auburn-borderColor-muted: #e6d6d5;
    --display-auburn-fgColor: #8a5551;
    --display-auburn-scale-0: #f2e9e9;
    --display-auburn-scale-1: #e6d6d5;
    --display-auburn-scale-2: #d4b7b5;
    --display-auburn-scale-3: #c59e9b;
    --display-auburn-scale-4: #b4827e;
    --display-auburn-scale-5: #9d615c;
    --display-auburn-scale-6: #8a5551;
    --display-auburn-scale-7: #744744;
    --display-auburn-scale-8: #5d3937;
    --display-auburn-scale-9: #432928;
    --display-blue-bgColor-emphasis: #006edb;
    --display-blue-bgColor-muted: #d1f0ff;
    --display-blue-borderColor-emphasis: #006edb;
    --display-blue-borderColor-muted: #ade1ff;
    --display-blue-fgColor: #005fcc;
    --display-blue-scale-0: #d1f0ff;
    --display-blue-scale-1: #ade1ff;
    --display-blue-scale-2: #75c8ff;
    --display-blue-scale-3: #47afff;
    --display-blue-scale-4: #0f8fff;
    --display-blue-scale-5: #006edb;
    --display-blue-scale-6: #005fcc;
    --display-blue-scale-7: #004db3;
    --display-blue-scale-8: #003d99;
    --display-blue-scale-9: #002b75;
    --display-brown-bgColor-emphasis: #856d4c;
    --display-brown-bgColor-muted: #eeeae2;
    --display-brown-borderColor-emphasis: #856d4c;
    --display-brown-borderColor-muted: #dfd7c8;
    --display-brown-fgColor: #755f43;
    --display-brown-scale-0: #eeeae2;
    --display-brown-scale-1: #dfd7c8;
    --display-brown-scale-2: #cbbda4;
    --display-brown-scale-3: #b8a484;
    --display-brown-scale-4: #a68b64;
    --display-brown-scale-5: #856d4c;
    --display-brown-scale-6: #755f43;
    --display-brown-scale-7: #64513a;
    --display-brown-scale-8: #51412f;
    --display-brown-scale-9: #3a2e22;
    --display-coral-bgColor-emphasis: #d43511;
    --display-coral-bgColor-muted: #ffe5db;
    --display-coral-borderColor-emphasis: #d43511;
    --display-coral-borderColor-muted: #fecebe;
    --display-coral-fgColor: #ba2e12;
    --display-coral-scale-0: #ffe5db;
    --display-coral-scale-1: #fecebe;
    --display-coral-scale-2: #fcab92;
    --display-coral-scale-3: #f88768;
    --display-coral-scale-4: #f25f3a;
    --display-coral-scale-5: #d43511;
    --display-coral-scale-6: #ba2e12;
    --display-coral-scale-7: #9b2712;
    --display-coral-scale-8: #7e2011;
    --display-coral-scale-9: #5d180e;
    --display-cyan-bgColor-emphasis: #007b94;
    --display-cyan-bgColor-muted: #bdf4ff;
    --display-cyan-borderColor-emphasis: #007b94;
    --display-cyan-borderColor-muted: #7ae9ff;
    --display-cyan-fgColor: #006a80;
    --display-cyan-scale-0: #bdf4ff;
    --display-cyan-scale-1: #7ae9ff;
    --display-cyan-scale-2: #00d0fa;
    --display-cyan-scale-3: #00b7db;
    --display-cyan-scale-4: #0099b8;
    --display-cyan-scale-5: #007b94;
    --display-cyan-scale-6: #006a80;
    --display-cyan-scale-7: #00596b;
    --display-cyan-scale-8: #004857;
    --display-cyan-scale-9: #003742;
    --display-gray-bgColor-emphasis: #647182;
    --display-gray-bgColor-muted: #e8ecf2;
    --display-gray-borderColor-emphasis: #647182;
    --display-gray-borderColor-muted: #d2dae4;
    --display-gray-fgColor: #5c6570;
    --display-gray-scale-0: #e8ecf2;
    --display-gray-scale-1: #d2dae4;
    --display-gray-scale-2: #b4c0cf;
    --display-gray-scale-3: #9ba9bb;
    --display-gray-scale-4: #808fa3;
    --display-gray-scale-5: #647182;
    --display-gray-scale-6: #5c6570;
    --display-gray-scale-7: #4e535a;
    --display-gray-scale-8: #424448;
    --display-gray-scale-9: #303031;
    --display-green-bgColor-emphasis: #2c8141;
    --display-green-bgColor-muted: #caf7ca;
    --display-green-borderColor-emphasis: #2c8141;
    --display-green-borderColor-muted: #9ceda0;
    --display-green-fgColor: #2b6e3f;
    --display-green-scale-0: #caf7ca;
    --display-green-scale-1: #9ceda0;
    --display-green-scale-2: #54d961;
    --display-green-scale-3: #31bf46;
    --display-green-scale-4: #30a147;
    --display-green-scale-5: #2c8141;
    --display-green-scale-6: #2b6e3f;
    --display-green-scale-7: #285c3b;
    --display-green-scale-8: #254b34;
    --display-green-scale-9: #1d3528;
    --display-indigo-bgColor-emphasis: #5a61e7;
    --display-indigo-bgColor-muted: #e5e9ff;
    --display-indigo-borderColor-emphasis: #5a61e7;
    --display-indigo-borderColor-muted: #d2d7fe;
    --display-indigo-fgColor: #494edf;
    --display-indigo-scale-0: #e5e9ff;
    --display-indigo-scale-1: #d2d7fe;
    --display-indigo-scale-2: #b1b9fb;
    --display-indigo-scale-3: #979ff7;
    --display-indigo-scale-4: #7a82f0;
    --display-indigo-scale-5: #5a61e7;
    --display-indigo-scale-6: #494edf;
    --display-indigo-scale-7: #393cd5;
    --display-indigo-scale-8: #2d2db4;
    --display-indigo-scale-9: #25247b;
    --display-lemon-bgColor-emphasis: #866e04;
    --display-lemon-bgColor-muted: #f7eea1;
    --display-lemon-borderColor-emphasis: #866e04;
    --display-lemon-borderColor-muted: #f0db3d;
    --display-lemon-fgColor: #786002;
    --display-lemon-scale-0: #f7eea1;
    --display-lemon-scale-1: #f0db3d;
    --display-lemon-scale-2: #d8bd0e;
    --display-lemon-scale-3: #c2a60a;
    --display-lemon-scale-4: #a68c07;
    --display-lemon-scale-5: #866e04;
    --display-lemon-scale-6: #786002;
    --display-lemon-scale-7: #654f01;
    --display-lemon-scale-8: #523f00;
    --display-lemon-scale-9: #3d2e00;
    --display-lime-bgColor-emphasis: #527a29;
    --display-lime-bgColor-muted: #e3f2b5;
    --display-lime-borderColor-emphasis: #527a29;
    --display-lime-borderColor-muted: #c7e580;
    --display-lime-fgColor: #476c28;
    --display-lime-scale-0: #e3f2b5;
    --display-lime-scale-1: #c7e580;
    --display-lime-scale-2: #9bd039;
    --display-lime-scale-3: #80b530;
    --display-lime-scale-4: #6c9d2f;
    --display-lime-scale-5: #527a29;
    --display-lime-scale-6: #476c28;
    --display-lime-scale-7: #3a5b25;
    --display-lime-scale-8: #2f4a21;
    --display-lime-scale-9: #213319;
    --display-olive-bgColor-emphasis: #64762d;
    --display-olive-bgColor-muted: #f0f0ad;
    --display-olive-borderColor-emphasis: #64762d;
    --display-olive-borderColor-muted: #dbe170;
    --display-olive-fgColor: #56682c;
    --display-olive-scale-0: #f0f0ad;
    --display-olive-scale-1: #dbe170;
    --display-olive-scale-2: #b9c832;
    --display-olive-scale-3: #9bae32;
    --display-olive-scale-4: #819532;
    --display-olive-scale-5: #64762d;
    --display-olive-scale-6: #56682c;
    --display-olive-scale-7: #495a2b;
    --display-olive-scale-8: #3b4927;
    --display-olive-scale-9: #2a331f;
    --display-orange-bgColor-emphasis: #b8500f;
    --display-orange-bgColor-muted: #ffe7d1;
    --display-orange-borderColor-emphasis: #b8500f;
    --display-orange-borderColor-muted: #fecfaa;
    --display-orange-fgColor: #a24610;
    --display-orange-scale-0: #ffe7d1;
    --display-orange-scale-1: #fecfaa;
    --display-orange-scale-2: #fbaf74;
    --display-orange-scale-3: #f68c41;
    --display-orange-scale-4: #eb670f;
    --display-orange-scale-5: #b8500f;
    --display-orange-scale-6: #a24610;
    --display-orange-scale-7: #8d3c11;
    --display-orange-scale-8: #70300f;
    --display-orange-scale-9: #54230d;
    --display-pine-bgColor-emphasis: #167e53;
    --display-pine-bgColor-muted: #bff8db;
    --display-pine-borderColor-emphasis: #167e53;
    --display-pine-borderColor-muted: #80efb9;
    --display-pine-fgColor: #156f4b;
    --display-pine-scale-0: #bff8db;
    --display-pine-scale-1: #80efb9;
    --display-pine-scale-2: #1dd781;
    --display-pine-scale-3: #1dbf76;
    --display-pine-scale-4: #1aa267;
    --display-pine-scale-5: #167e53;
    --display-pine-scale-6: #156f4b;
    --display-pine-scale-7: #135d41;
    --display-pine-scale-8: #114b36;
    --display-pine-scale-9: #0d3627;
    --display-pink-bgColor-emphasis: #ce2c85;
    --display-pink-bgColor-muted: #ffe5f1;
    --display-pink-borderColor-emphasis: #ce2c85;
    --display-pink-borderColor-muted: #fdc9e2;
    --display-pink-fgColor: #b12f79;
    --display-pink-scale-0: #ffe5f1;
    --display-pink-scale-1: #fdc9e2;
    --display-pink-scale-2: #f8a5cf;
    --display-pink-scale-3: #f184bc;
    --display-pink-scale-4: #e55da5;
    --display-pink-scale-5: #ce2c85;
    --display-pink-scale-6: #b12f79;
    --display-pink-scale-7: #8e2e66;
    --display-pink-scale-8: #6e2b53;
    --display-pink-scale-9: #4d233d;
    --display-plum-bgColor-emphasis: #a830e8;
    --display-plum-bgColor-muted: #f8e5ff;
    --display-plum-borderColor-emphasis: #a830e8;
    --display-plum-borderColor-muted: #f0cdfe;
    --display-plum-fgColor: #961edc;
    --display-plum-scale-0: #f8e5ff;
    --display-plum-scale-1: #f0cdfe;
    --display-plum-scale-2: #e2a7fb;
    --display-plum-scale-3: #d487f7;
    --display-plum-scale-4: #c264f2;
    --display-plum-scale-5: #a830e8;
    --display-plum-scale-6: #961edc;
    --display-plum-scale-7: #7d1eb8;
    --display-plum-scale-8: #651d96;
    --display-plum-scale-9: #471769;
    --display-purple-bgColor-emphasis: #894ceb;
    --display-purple-bgColor-muted: #f1e5ff;
    --display-purple-borderColor-emphasis: #894ceb;
    --display-purple-borderColor-muted: #e6d2fe;
    --display-purple-fgColor: #783ae4;
    --display-purple-scale-0: #f1e5ff;
    --display-purple-scale-1: #e6d2fe;
    --display-purple-scale-2: #d1b1fc;
    --display-purple-scale-3: #bc91f8;
    --display-purple-scale-4: #a672f3;
    --display-purple-scale-5: #894ceb;
    --display-purple-scale-6: #783ae4;
    --display-purple-scale-7: #6223d7;
    --display-purple-scale-8: #4f21ab;
    --display-purple-scale-9: #391b79;
    --display-red-bgColor-emphasis: #df0c24;
    --display-red-bgColor-muted: #ffe2e0;
    --display-red-borderColor-emphasis: #df0c24;
    --display-red-borderColor-muted: #fecdcd;
    --display-red-fgColor: #c50d28;
    --display-red-scale-0: #ffe2e0;
    --display-red-scale-1: #fecdcd;
    --display-red-scale-2: #fda5a7;
    --display-red-scale-3: #fb8389;
    --display-red-scale-4: #f85461;
    --display-red-scale-5: #df0c24;
    --display-red-scale-6: #c50d28;
    --display-red-scale-7: #a60c29;
    --display-red-scale-8: #880c27;
    --display-red-scale-9: #610a20;
    --display-teal-bgColor-emphasis: #127e81;
    --display-teal-bgColor-muted: #c7f5ef;
    --display-teal-borderColor-emphasis: #127e81;
    --display-teal-borderColor-muted: #89ebe1;
    --display-teal-fgColor: #106e75;
    --display-teal-scale-0: #c7f5ef;
    --display-teal-scale-1: #89ebe1;
    --display-teal-scale-2: #22d3c7;
    --display-teal-scale-3: #1db9b4;
    --display-teal-scale-4: #179b9b;
    --display-teal-scale-5: #127e81;
    --display-teal-scale-6: #106e75;
    --display-teal-scale-7: #0d5b63;
    --display-teal-scale-8: #0a4852;
    --display-teal-scale-9: #073740;
    --display-yellow-bgColor-emphasis: #946a00;
    --display-yellow-bgColor-muted: #ffec9e;
    --display-yellow-borderColor-emphasis: #946a00;
    --display-yellow-borderColor-muted: #ffd642;
    --display-yellow-fgColor: #805900;
    --display-yellow-scale-0: #ffec9e;
    --display-yellow-scale-1: #ffd642;
    --display-yellow-scale-2: #ebb400;
    --display-yellow-scale-3: #d19d00;
    --display-yellow-scale-4: #b88700;
    --display-yellow-scale-5: #946a00;
    --display-yellow-scale-6: #805900;
    --display-yellow-scale-7: #704d00;
    --display-yellow-scale-8: #5c3d00;
    --display-yellow-scale-9: #422b00;
    --fgColor-accent: #0969da;
    --fgColor-attention: #9a6700;
    --fgColor-closed: var(--fgColor-danger);
    --fgColor-disabled: #818b98;
    --fgColor-done: #8250df;
    --fgColor-muted: #59636e;
    --fgColor-neutral: #59636e;
    --fgColor-severe: #bc4c00;
    --fgColor-sponsors: #bf3989;
    --fgColor-success: #1a7f37;
    --header-bgColor: #25292e;
    --header-borderColor-divider: #818b98;
    --headerSearch-bgColor: #25292e;
    --headerSearch-borderColor: #818b98;
    --highlight-neutral-bgColor: #fff8c5;
    --label-auburn-bgColor-active: #d4b7b5;
    --label-auburn-bgColor-hover: #e6d6d5;
    --label-auburn-bgColor-rest: #f2e9e9;
    --label-auburn-fgColor-active: #5d3937;
    --label-auburn-fgColor-hover: #744744;
    --label-auburn-fgColor-rest: #8a5551;
    --label-blue-bgColor-active: #75c8ff;
    --label-blue-bgColor-hover: #ade1ff;
    --label-blue-bgColor-rest: #d1f0ff;
    --label-blue-fgColor-active: #003d99;
    --label-blue-fgColor-hover: #004db3;
    --label-blue-fgColor-rest: #005fcc;
    --label-brown-bgColor-active: #cbbda4;
    --label-brown-bgColor-hover: #dfd7c8;
    --label-brown-bgColor-rest: #eeeae2;
    --label-brown-fgColor-active: #51412f;
    --label-brown-fgColor-hover: #64513a;
    --label-brown-fgColor-rest: #755f43;
    --label-coral-bgColor-active: #fcab92;
    --label-coral-bgColor-hover: #fecebe;
    --label-coral-bgColor-rest: #ffe5db;
    --label-coral-fgColor-active: #7e2011;
    --label-coral-fgColor-hover: #9b2712;
    --label-coral-fgColor-rest: #ba2e12;
    --label-cyan-bgColor-active: #00d0fa;
    --label-cyan-bgColor-hover: #7ae9ff;
    --label-cyan-bgColor-rest: #bdf4ff;
    --label-cyan-fgColor-active: #004857;
    --label-cyan-fgColor-hover: #00596b;
    --label-cyan-fgColor-rest: #006a80;
    --label-gray-bgColor-active: #b4c0cf;
    --label-gray-bgColor-hover: #d2dae4;
    --label-gray-bgColor-rest: #e8ecf2;
    --label-gray-fgColor-active: #424448;
    --label-gray-fgColor-hover: #4e535a;
    --label-gray-fgColor-rest: #5c6570;
    --label-green-bgColor-active: #54d961;
    --label-green-bgColor-hover: #9ceda0;
    --label-green-bgColor-rest: #caf7ca;
    --label-green-fgColor-active: #254b34;
    --label-green-fgColor-hover: #285c3b;
    --label-green-fgColor-rest: #2b6e3f;
    --label-indigo-bgColor-active: #b1b9fb;
    --label-indigo-bgColor-hover: #d2d7fe;
    --label-indigo-bgColor-rest: #e5e9ff;
    --label-indigo-fgColor-active: #2d2db4;
    --label-indigo-fgColor-hover: #393cd5;
    --label-indigo-fgColor-rest: #494edf;
    --label-lemon-bgColor-active: #d8bd0e;
    --label-lemon-bgColor-hover: #f0db3d;
    --label-lemon-bgColor-rest: #f7eea1;
    --label-lemon-fgColor-active: #523f00;
    --label-lemon-fgColor-hover: #654f01;
    --label-lemon-fgColor-rest: #786002;
    --label-lime-bgColor-active: #9bd039;
    --label-lime-bgColor-hover: #c7e580;
    --label-lime-bgColor-rest: #e3f2b5;
    --label-lime-fgColor-active: #2f4a21;
    --label-lime-fgColor-hover: #3a5b25;
    --label-lime-fgColor-rest: #476c28;
    --label-olive-bgColor-active: #b9c832;
    --label-olive-bgColor-hover: #dbe170;
    --label-olive-bgColor-rest: #f0f0ad;
    --label-olive-fgColor-active: #3b4927;
    --label-olive-fgColor-hover: #495a2b;
    --label-olive-fgColor-rest: #56682c;
    --label-orange-bgColor-active: #fbaf74;
    --label-orange-bgColor-hover: #fecfaa;
    --label-orange-bgColor-rest: #ffe7d1;
    --label-orange-fgColor-active: #70300f;
    --label-orange-fgColor-hover: #8d3c11;
    --label-orange-fgColor-rest: #a24610;
    --label-pine-bgColor-active: #1dd781;
    --label-pine-bgColor-hover: #80efb9;
    --label-pine-bgColor-rest: #bff8db;
    --label-pine-fgColor-active: #114b36;
    --label-pine-fgColor-hover: #135d41;
    --label-pine-fgColor-rest: #156f4b;
    --label-pink-bgColor-active: #f8a5cf;
    --label-pink-bgColor-hover: #fdc9e2;
    --label-pink-bgColor-rest: #ffe5f1;
    --label-pink-fgColor-active: #6e2b53;
    --label-pink-fgColor-hover: #8e2e66;
    --label-pink-fgColor-rest: #b12f79;
    --label-plum-bgColor-active: #e2a7fb;
    --label-plum-bgColor-hover: #f0cdfe;
    --label-plum-bgColor-rest: #f8e5ff;
    --label-plum-fgColor-active: #651d96;
    --label-plum-fgColor-hover: #7d1eb8;
    --label-plum-fgColor-rest: #961edc;
    --label-purple-bgColor-active: #d1b1fc;
    --label-purple-bgColor-hover: #e6d2fe;
    --label-purple-bgColor-rest: #f1e5ff;
    --label-purple-fgColor-active: #4f21ab;
    --label-purple-fgColor-hover: #6223d7;
    --label-purple-fgColor-rest: #783ae4;
    --label-red-bgColor-active: #fda5a7;
    --label-red-bgColor-hover: #fecdcd;
    --label-red-bgColor-rest: #ffe2e0;
    --label-red-fgColor-active: #880c27;
    --label-red-fgColor-hover: #a60c29;
    --label-red-fgColor-rest: #c50d28;
    --label-teal-bgColor-active: #22d3c7;
    --label-teal-bgColor-hover: #89ebe1;
    --label-teal-bgColor-rest: #c7f5ef;
    --label-teal-fgColor-active: #0a4852;
    --label-teal-fgColor-hover: #0d5b63;
    --label-teal-fgColor-rest: #106e75;
    --label-yellow-bgColor-active: #ebb400;
    --label-yellow-bgColor-hover: #ffd642;
    --label-yellow-bgColor-rest: #ffec9e;
    --label-yellow-fgColor-active: #5c3d00;
    --label-yellow-fgColor-hover: #704d00;
    --label-yellow-fgColor-rest: #805900;
    --menu-bgColor-active: #ffffff00;
    --overlay-backdrop-bgColor: #c8d1da66;
    --reactionButton-selected-bgColor-rest: #ddf4ff;
    --reactionButton-selected-fgColor-hover: #0550ae;
    --selectMenu-bgColor-active: #b6e3ff;
    --selectMenu-borderColor: #ffffff00;
    --shadow-floating-legacy: 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-resting-medium: 0px 1px 1px 0px #25292e1a, 0px 3px 6px 0px #25292e1f;
    --skeletonLoader-bgColor: #818b981a;
    --topicTag-borderColor: #ffffff00;
    --treeViewItem-leadingVisual-iconColor-rest: #54aeff;
    --underlineNav-borderColor-active: #fd8c73;
    --avatar-bgColor: #ffffff;
    --avatar-shadow: 0px 0px 0px 2px #ffffffcc;
    --bgColor-black: #1f2328;
    --bgColor-closed-emphasis: var(--bgColor-danger-emphasis);
    --bgColor-closed-muted: var(--bgColor-danger-muted);
    --bgColor-default: #ffffff;
    --bgColor-inset: var(--bgColor-muted);
    --bgColor-open-muted: var(--bgColor-success-muted);
    --bgColor-upsell-emphasis: var(--bgColor-done-emphasis);
    --bgColor-upsell-muted: var(--bgColor-done-muted);
    --bgColor-white: #ffffff;
    --border-accent-emphasis: 0.0625rem solid #0969da;
    --border-accent-muted: 0.0625rem solid #54aeff66;
    --border-attention-emphasis: 0.0625rem solid #9a6700;
    --border-attention-muted: 0.0625rem solid #d4a72c66;
    --border-danger-emphasis: 0.0625rem solid #cf222e;
    --border-danger-muted: 0.0625rem solid #ff818266;
    --border-default: 0.0625rem solid #d1d9e0;
    --border-disabled: 0.0625rem solid #818b981a;
    --border-done-emphasis: 0.0625rem solid #8250df;
    --border-done-muted: 0.0625rem solid #c297ff66;
    --border-emphasis: 0.0625rem solid #818b98;
    --border-neutral-emphasis: 0.0625rem solid #59636e;
    --border-severe-emphasis: 0.0625rem solid #bc4c00;
    --border-severe-muted: 0.0625rem solid #fb8f4466;
    --border-sponsors-emphasis: 0.0625rem solid #bf3989;
    --border-sponsors-muted: 0.0625rem solid #ff80c866;
    --border-success-emphasis: 0.0625rem solid #1a7f37;
    --border-success-muted: 0.0625rem solid #4ac26b66;
    --border-transparent: 0.0625rem solid #ffffff00;
    --borderColor-closed-emphasis: var(--borderColor-danger-emphasis);
    --borderColor-closed-muted: var(--borderColor-danger-muted);
    --borderColor-muted: #d1d9e0b3;
    --borderColor-open-emphasis: var(--borderColor-success-emphasis);
    --borderColor-open-muted: var(--borderColor-success-muted);
    --borderColor-translucent: #1f232826;
    --borderColor-upsell-emphasis: var(--borderColor-done-emphasis);
    --borderColor-upsell-muted: var(--borderColor-done-muted);
    --button-danger-bgColor-rest: var(--control-bgColor-rest);
    --button-danger-fgColor-active: #ffffff;
    --button-danger-fgColor-hover: #ffffff;
    --button-danger-iconColor-hover: #ffffff;
    --button-default-bgColor-active: var(--control-bgColor-active);
    --button-default-bgColor-hover: var(--control-bgColor-hover);
    --button-default-bgColor-rest: var(--control-bgColor-rest);
    --button-default-bgColor-selected: var(--control-bgColor-active);
    --button-default-fgColor-rest: var(--control-fgColor-rest);
    --button-default-shadow-resting: 0px 1px 0px 0px #1f23280a;
    --button-invisible-bgColor-active: var(--control-transparent-bgColor-active);
    --button-invisible-bgColor-hover: var(--control-transparent-bgColor-hover);
    --button-invisible-bgColor-rest: var(--control-transparent-bgColor-rest);
    --button-invisible-borderColor-hover: var(--control-transparent-borderColor-hover);
    --button-invisible-borderColor-rest: var(--control-transparent-borderColor-rest);
    --button-invisible-fgColor-active: var(--control-fgColor-rest);
    --button-invisible-fgColor-hover: var(--control-fgColor-rest);
    --button-invisible-fgColor-rest: var(--control-fgColor-rest);
    --button-invisible-iconColor-hover: var(--fgColor-muted);
    --button-invisible-iconColor-rest: var(--fgColor-muted);
    --button-outline-bgColor-hover: var(--bgColor-accent-emphasis);
    --button-outline-bgColor-rest: var(--control-bgColor-rest);
    --button-outline-fgColor-active: #ffffff;
    --button-outline-fgColor-disabled: #0969da80;
    --button-outline-fgColor-hover: #ffffff;
    --button-outline-fgColor-rest: var(--fgColor-accent);
    --button-primary-borderColor-rest: #1f232826;
    --button-primary-fgColor-disabled: #ffffffcc;
    --buttonCounter-danger-bgColor-disabled: #cf222e0d;
    --buttonCounter-danger-bgColor-hover: #ffffff33;
    --buttonCounter-danger-bgColor-rest: #cf222e1a;
    --buttonCounter-danger-fgColor-hover: #ffffff;
    --buttonCounter-default-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-invisible-bgColor-rest: var(--bgColor-neutral-muted);
    --buttonCounter-outline-bgColor-disabled: #0969da0d;
    --buttonCounter-outline-bgColor-hover: #ffffff33;
    --buttonCounter-outline-bgColor-rest: #0969da1a;
    --buttonCounter-outline-fgColor-disabled: #0969da80;
    --buttonCounter-outline-fgColor-hover: #ffffff;
    --codeMirror-activeline-bgColor: var(--bgColor-neutral-muted);
    --codeMirror-gutterMarker-fgColor-muted: var(--fgColor-muted);
    --codeMirror-lineNumber-fgColor: var(--fgColor-muted);
    --codeMirror-selection-bgColor: var(--borderColor-accent-muted);
    --codeMirror-syntax-fgColor-comment: #1f2328;
    --color-ansi-black: #1f2328;
    --color-prettylights-syntax-markup-bold: #1f2328;
    --color-prettylights-syntax-markup-italic: #1f2328;
    --color-prettylights-syntax-storage-modifier-import: #1f2328;
    --control-bgColor-disabled: var(--bgColor-disabled);
    --control-bgColor-selected: var(--control-bgColor-rest);
    --control-borderColor-danger: var(--borderColor-danger-emphasis);
    --control-borderColor-disabled: var(--borderColor-disabled);
    --control-borderColor-emphasis: var(--borderColor-emphasis);
    --control-borderColor-rest: var(--borderColor-default);
    --control-borderColor-success: var(--borderColor-success-emphasis);
    --control-borderColor-warning: var(--borderColor-attention-emphasis);
    --control-checked-bgColor-disabled: var(--fgColor-disabled);
    --control-checked-bgColor-rest: var(--bgColor-accent-emphasis);
    --control-danger-bgColor-active: #ffebe966;
    --control-danger-bgColor-hover: var(--bgColor-danger-muted);
    --control-fgColor-disabled: var(--fgColor-disabled);
    --control-fgColor-placeholder: var(--fgColor-muted);
    --control-iconColor-rest: var(--fgColor-muted);
    --control-transparent-bgColor-disabled: var(--bgColor-disabled);
    --controlKnob-bgColor-checked: #ffffff;
    --controlKnob-bgColor-rest: #ffffff;
    --controlTrack-bgColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-disabled: var(--fgColor-disabled);
    --controlTrack-borderColor-rest: var(--borderColor-default);
    --counter-bgColor-emphasis: var(--bgColor-neutral-emphasis);
    --counter-bgColor-muted: var(--bgColor-neutral-muted);
    --diffBlob-additionLine-bgColor: var(--bgColor-success-muted);
    --diffBlob-deletionLine-bgColor: var(--bgColor-danger-muted);
    --diffBlob-emptyLine-bgColor: var(--bgColor-muted);
    --diffBlob-emptyNum-bgColor: var(--bgColor-muted);
    --diffBlob-expander-iconColor: var(--fgColor-muted);
    --diffBlob-hunkLine-bgColor: var(--bgColor-accent-muted);
    --diffBlob-hunkLine-fgColor: var(--fgColor-muted);
    --diffBlob-hunkNum-bgColor-hover: var(--bgColor-accent-emphasis);
    --fgColor-black: #1f2328;
    --fgColor-default: #1f2328;
    --fgColor-link: var(--fgColor-accent);
    --fgColor-onEmphasis: #ffffff;
    --fgColor-onInverse: #ffffff;
    --fgColor-open: var(--fgColor-success);
    --fgColor-upsell: var(--fgColor-done);
    --fgColor-white: #ffffff;
    --focus-outlineColor: var(--borderColor-accent-emphasis);
    --header-fgColor-default: #ffffffb3;
    --header-fgColor-logo: #ffffff;
    --overlay-bgColor: #ffffff;
    --page-header-bgColor: var(--bgColor-muted);
    --selection-bgColor: #0969da33;
    --shadow-inset: inset 0px 1px 0px 0px #1f23280a;
    --shadow-resting-small: 0px 1px 1px 0px #1f23280f, 0px 1px 3px 0px #1f23280f;
    --shadow-resting-xsmall: 0px 1px 1px 0px #1f23280f;
    --sideNav-bgColor-selected: #ffffff;
    --timelineBadge-bgColor: var(--bgColor-muted);
    --tooltip-bgColor: var(--bgColor-emphasis);
    --underlineNav-iconColor-rest: var(--fgColor-muted);
    --avatar-borderColor: var(--borderColor-translucent);
    --border-closed-emphasis: var(--border-danger-emphasis);
    --border-closed-muted: var(--border-danger-muted);
    --border-muted: 0.0625rem solid #d1d9e0b3;
    --border-open-emphasis: var(--border-success-emphasis);
    --border-open-muted: var(--border-success-muted);
    --border-upsell-emphasis: 0.0625rem solid #8250df;
    --border-upsell-muted: 0.0625rem solid #c297ff66;
    --borderColor-neutral-muted: var(--borderColor-muted);
    --button-danger-bgColor-disabled: var(--control-bgColor-disabled);
    --button-danger-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-danger-borderColor-rest: var(--control-borderColor-rest);
    --button-default-bgColor-disabled: var(--control-bgColor-disabled);
    --button-default-borderColor-active: var(--control-borderColor-rest);
    --button-default-borderColor-disabled: var(--control-borderColor-disabled);
    --button-default-borderColor-rest: var(--control-borderColor-rest);
    --button-invisible-fgColor-disabled: var(--control-fgColor-disabled);
    --button-invisible-iconColor-disabled: var(--control-fgColor-disabled);
    --button-outline-bgColor-disabled: var(--control-bgColor-disabled);
    --button-primary-borderColor-active: var(--button-primary-borderColor-rest);
    --button-primary-borderColor-hover: var(--button-primary-borderColor-rest);
    --button-primary-fgColor-rest: var(--fgColor-white);
    --button-primary-iconColor-rest: #ffffffcc;
    --card-bgColor: var(--bgColor-default);
    --codeMirror-bgColor: var(--bgColor-default);
    --codeMirror-cursor-fgColor: var(--fgColor-default);
    --codeMirror-fgColor: var(--fgColor-default);
    --codeMirror-gutterMarker-fgColor-default: var(--bgColor-default);
    --codeMirror-gutters-bgColor: var(--bgColor-default);
    --codeMirror-lines-bgColor: var(--bgColor-default);
    --codeMirror-matchingBracket-fgColor: var(--fgColor-default);
    --control-borderColor-selected: var(--control-bgColor-selected);
    --control-checked-borderColor-disabled: var(--control-checked-bgColor-disabled);
    --control-checked-borderColor-rest: var(--control-checked-bgColor-rest);
    --control-checked-fgColor-disabled: var(--fgColor-onEmphasis);
    --control-checked-fgColor-rest: var(--fgColor-onEmphasis);
    --controlKnob-bgColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-checked: var(--control-checked-bgColor-rest);
    --controlKnob-borderColor-disabled: var(--control-bgColor-disabled);
    --controlKnob-borderColor-rest: var(--control-borderColor-emphasis);
    --controlTrack-fgColor-disabled: var(--fgColor-onEmphasis);
    --diffBlob-additionLine-fgColor: var(--fgColor-default);
    --diffBlob-additionNum-fgColor: var(--fgColor-default);
    --diffBlob-additionWord-fgColor: var(--fgColor-default);
    --diffBlob-deletionLine-fgColor: var(--fgColor-default);
    --diffBlob-deletionNum-fgColor: var(--fgColor-default);
    --diffBlob-deletionWord-fgColor: var(--fgColor-default);
    --diffBlob-hunkNum-fgColor-hover: var(--fgColor-onEmphasis);
    --diffBlob-hunkNum-fgColor-rest: var(--fgColor-default);
    --focus-outline: 2px solid #0969da;
    --overlay-borderColor: #d1d9e080;
    --reactionButton-selected-fgColor-rest: var(--fgColor-link);
    --tooltip-fgColor: var(--fgColor-onEmphasis);
    --underlineNav-borderColor-hover: var(--borderColor-muted);
    --border-neutral-muted: 0.0625rem solid #d1d9e0b3;
    --button-danger-borderColor-active: var(--button-danger-borderColor-hover);
    --button-default-borderColor-hover: var(--button-default-borderColor-rest);
    --button-outline-borderColor-hover: var(--button-primary-borderColor-hover);
    --shadow-floating-large: 0px 0px 0px 1px #d1d9e0, 0px 40px 80px 0px #25292e3d;
    --shadow-floating-medium: 0px 0px 0px 1px #d1d9e0, 0px 8px 16px -4px #25292e14, 0px 4px 32px -4px #25292e14, 0px 24px 48px -12px #25292e14, 0px 48px 96px -24px #25292e14;
    --shadow-floating-small: 0px 0px 0px 1px #d1d9e080, 0px 6px 12px -3px #25292e0a, 0px 6px 18px 0px #25292e1f;
    --shadow-floating-xlarge: 0px 0px 0px 1px #d1d9e0, 0px 56px 112px 0px #25292e52;
    --button-outline-borderColor-active: var(--button-outline-borderColor-hover);
  }
}

:root,[data-color-mode=light][data-light-theme*=light],[data-color-mode=dark][data-dark-theme*=light]{--csstools-color-scheme--light:initial;color-scheme:light}

@media(prefers-color-scheme: light){[data-color-mode=auto][data-light-theme*=light]{--csstools-color-scheme--light:initial;color-scheme:light}}

@media(prefers-color-scheme: dark){[data-color-mode=auto][data-dark-theme*=light]{--csstools-color-scheme--light:initial;color-scheme:light}}

[data-color-mode=light][data-light-theme*=dark],[data-color-mode=dark][data-dark-theme*=dark]{--csstools-color-scheme--light: ;color-scheme:dark}

@media(prefers-color-scheme: light){[data-color-mode=auto][data-light-theme*=dark]{--csstools-color-scheme--light: ;color-scheme:dark}}

@media(prefers-color-scheme: dark){[data-color-mode=auto][data-dark-theme*=dark]{--csstools-color-scheme--light: ;color-scheme:dark}}

[data-color-mode]{color:var(--fgColor-default, var(--color-fg-default));background-color:var(--bgColor-default, var(--color-canvas-default))}

@media(forced-colors: active){body{--color-accent-emphasis: Highlight;--color-fg-on-emphasis: LinkText;--fgColor-onEmphasis: LinkText;--fgColor-accent: Highlight}}

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */

html{font-size:16px;font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}

body{margin:0}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}

summary{display:list-item}

audio,canvas,progress,video{display:inline-block}

audio:not([controls]){display:none;height:0}

progress{vertical-align:baseline}

template,[hidden]{display:none !important}

a{background-color:rgba(0,0,0,0)}

abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline;text-decoration:underline dotted}

b,strong{font-weight:inherit}

b,strong{font-weight:bolder}

dfn{font-style:italic}

h1{font-size:2em;margin:.67em 0}

mark{background-color:var(--bgColor-attention-muted, var(--color-attention-subtle));color:var(--fgColor-default, var(--color-fg-default))}

small{font-size:80%}

sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}

sub{bottom:-0.25em}

sup{top:-0.5em}

img{border-style:none}

svg:not(:root){overflow:hidden}

code,kbd,pre,samp{font-family:monospace;font-size:1em}

figure{margin:1em var(--base-size-40)}

hr{box-sizing:content-box;height:0;overflow:visible}

button,input,select,textarea{font:inherit;margin:0}

optgroup{font-weight:var(--base-text-weight-semibold, 600)}

button,input{overflow:visible}

button,select{text-transform:none}

button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}

fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}

legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}

textarea{overflow:auto}

[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}

[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}

::-webkit-input-placeholder{color:inherit;opacity:.54}

::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

*{box-sizing:border-box}

input,select,textarea,button{font-family:inherit;font-size:inherit;line-height:inherit}

body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:var(--body-font-size, 14px);line-height:1.5;color:var(--fgColor-default, var(--color-fg-default));background-color:var(--bgColor-default, var(--color-canvas-default))}

a{color:var(--fgColor-accent, var(--color-accent-fg));-webkit-text-decoration:none;text-decoration:none}

a:hover{-webkit-text-decoration:underline;text-decoration:underline}

b,strong{font-weight:var(--base-text-weight-semibold, 600)}

fieldset{padding:0;margin:0;border:0}

label{font-weight:var(--base-text-weight-semibold, 600)}

::placeholder{color:var(--fgColor-muted, var(--color-fg-subtle));opacity:1}

hr,.rule{height:0;margin:15px 0;overflow:hidden;background:rgba(0,0,0,0);border:0;border-bottom:1px solid var(--borderColor-muted, var(--color-border-muted))}

hr::before,.rule::before{display:table;content:""}

hr::after,.rule::after{display:table;clear:both;content:""}

table{border-spacing:0;border-collapse:collapse}

td,th{padding:0}

button{cursor:pointer;border-radius:0}

[hidden][hidden]{display:none !important}

details summary{cursor:pointer}

a:focus,button:focus,[role=button]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

a:focus:not(:focus-visible),button:focus:not(:focus-visible),[role=button]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0)}

a:focus-visible,button:focus-visible,[role=button]:focus-visible,input[type=radio]:focus-visible,input[type=checkbox]:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

a:not([class]):focus,a:not([class]):focus-visible,input[type=radio]:focus,input[type=radio]:focus-visible,input[type=checkbox]:focus,input[type=checkbox]:focus-visible{outline-offset:0}

.focus{border-color:var(--focus-outlineColor, var(--color-accent-fg));outline:none;box-shadow:inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg))}

@media(forced-colors: active){*:focus,*:focus-visible{outline:solid 1px rgba(0,0,0,0)}input:not([type=radio],[type=checkbox]):focus,input:not([type=radio],[type=checkbox]):focus-visible,textarea:focus,textarea:focus-visible,select:focus,select:focus-visible{outline-offset:2px}}

kbd{display:inline-block;padding:var(--base-size-4);font:11px var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);line-height:10px;color:var(--fgColor-default, var(--color-fg-default));vertical-align:middle;background-color:var(--bgColor-muted, var(--color-canvas-subtle));border:solid 1px var(--borderColor-neutral-muted, var(--color-neutral-muted));border-bottom-color:var(--borderColor-neutral-muted, var(--color-neutral-muted));border-radius:6px;box-shadow:inset 0 -1px 0 var(--borderColor-neutral-muted, var(--color-neutral-muted))}

h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0}

h1{font-size:var(--h1-size, 32px);font-weight:var(--base-text-weight-semibold, 600)}

h2{font-size:var(--h2-size, 24px);font-weight:var(--base-text-weight-semibold, 600)}

h3{font-size:var(--h3-size, 20px);font-weight:var(--base-text-weight-semibold, 600)}

h4{font-size:var(--h4-size, 16px);font-weight:var(--base-text-weight-semibold, 600)}

h5{font-size:var(--h5-size, 14px);font-weight:var(--base-text-weight-semibold, 600)}

h6{font-size:var(--h6-size, 12px);font-weight:var(--base-text-weight-semibold, 600)}

p{margin-top:0;margin-bottom:10px}

small{font-size:90%}

blockquote{margin:0}

ul,ol{padding-left:0;margin-top:0;margin-bottom:0}

ol ol,ul ol{list-style-type:lower-roman}

ul ul ol,ul ol ol,ol ul ol,ol ol ol{list-style-type:lower-alpha}

dd{margin-left:0}

tt,code,samp{font-family:var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);font-size:12px}

pre{margin-top:0;margin-bottom:0;font-family:var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);font-size:12px}

.octicon{vertical-align:text-bottom}

.octicon{display:inline-block;overflow:visible !important;vertical-align:text-bottom;fill:currentColor}

/*# sourceMappingURL=base.css.map */

.btn{position:relative;display:inline-block;padding:5px var(--base-size-16);font-size:14px;font-weight:var(--base-text-weight-medium, 500);line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;border:1px solid;border-radius:6px;appearance:none}

.btn:hover{-webkit-text-decoration:none;text-decoration:none}

.btn:disabled,.btn.disabled,.btn[aria-disabled=true]{cursor:default}

.btn i{font-style:normal;font-weight:var(--base-text-weight-medium, 500);opacity:.75}

.btn .octicon{margin-right:var(--base-size-4);color:var(--fgColor-muted, var(--color-fg-muted));vertical-align:text-bottom}

.btn .octicon:only-child{margin-right:0}

.btn .Counter{margin-left:2px;color:inherit;text-shadow:none;vertical-align:top;background-color:var(--buttonCounter-default-bgColor-rest, var(--color-btn-counter-bg))}

.btn .dropdown-caret{margin-left:var(--base-size-4);opacity:.8}

.btn{color:var(--button-default-fgColor-rest, var(--color-btn-text));background-color:var(--button-default-bgColor-rest, var(--color-btn-bg));border-color:var(--button-default-borderColor-rest, var(--color-btn-border));box-shadow:var(--button-default-shadow-resting, var(--color-btn-shadow)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow));transition:80ms cubic-bezier(0.33, 1, 0.68, 1);transition-property:color,background-color,box-shadow,border-color}

.btn:hover,.btn.hover,[open]>.btn{background-color:var(--button-default-bgColor-hover, var(--color-btn-hover-bg));border-color:var(--button-default-borderColor-hover, var(--color-btn-hover-border));transition-duration:.1s}

.btn:active{background-color:var(--button-default-bgColor-active, var(--color-btn-active-bg));border-color:var(--button-default-borderColor-active, var(--color-btn-active-border));transition:none}

.btn.selected,.btn[aria-selected=true]{background-color:var(--button-default-bgColor-selected, var(--color-btn-selected-bg));box-shadow:var(--shadow-inset, var(--color-primer-shadow-inset))}

.btn:disabled,.btn.disabled,.btn[aria-disabled=true]{color:var(--fgColor-disabled, var(--color-primer-fg-disabled));background-color:var(--button-default-bgColor-disabled, var(--color-btn-bg));border-color:var(--button-default-borderColor-disabled, var(--color-btn-border))}

.btn:disabled .octicon,.btn.disabled .octicon,.btn[aria-disabled=true] .octicon{color:var(--fgColor-disabled, var(--color-primer-fg-disabled))}

.btn-primary{color:var(--button-primary-fgColor-rest, var(--color-btn-primary-text));background-color:var(--button-primary-bgColor-rest, var(--color-btn-primary-bg));border-color:var(--button-primary-borderColor-rest, var(--color-btn-primary-border));box-shadow:var(--shadow-resting-small, var(--color-btn-primary-shadow)),var(--shadow-highlight, var(--color-btn-primary-inset-shadow))}

.btn-primary:hover,.btn-primary.hover,[open]>.btn-primary{background-color:var(--button-primary-bgColor-hover, var(--color-btn-primary-hover-bg));border-color:var(--button-primary-borderColor-hover, var(--color-btn-primary-hover-border))}

.btn-primary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.btn-primary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0);box-shadow:none}

.btn-primary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.btn-primary:active,.btn-primary.selected,.btn-primary[aria-selected=true]{background-color:var(--button-primary-bgColor-active, var(--color-btn-primary-selected-bg));box-shadow:var(--button-primary-shadow-selected, var(--color-btn-primary-selected-shadow))}

.btn-primary:disabled,.btn-primary.disabled,.btn-primary[aria-disabled=true]{color:var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text));background-color:var(--button-primary-bgColor-disabled, var(--color-btn-primary-disabled-bg));border-color:var(--button-primary-borderColor-disabled, var(--color-btn-primary-disabled-border))}

.btn-primary:disabled .octicon,.btn-primary.disabled .octicon,.btn-primary[aria-disabled=true] .octicon{color:var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text))}

.btn-primary .Counter{color:inherit;background-color:var(--buttonCounter-primary-bgColor-rest, var(--color-btn-primary-counter-bg))}

.btn-primary .octicon{color:var(--button-primary-iconColor-rest, var(--color-btn-primary-icon))}

a.btn-primary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

a.btn-primary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0);box-shadow:none}

a.btn-primary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.btn-outline{color:var(--button-outline-fgColor-rest, var(--color-btn-outline-text))}

.btn-outline:hover,[open]>.btn-outline{color:var(--button-outline-fgColor-hover, var(--color-btn-outline-hover-text));background-color:var(--button-outline-bgColor-hover, var(--color-btn-outline-hover-bg));border-color:var(--button-outline-borderColor-hover, var(--color-btn-outline-hover-border));box-shadow:var(--shadow-resting-small, var(--color-btn-outline-hover-shadow)),var(--shadow-highlight, var(--color-btn-outline-hover-inset-shadow))}

.btn-outline:hover .Counter,[open]>.btn-outline .Counter{background-color:var(--buttonCounter-outline-bgColor-hover, var(--color-btn-outline-hover-counter-bg))}

.btn-outline:hover .octicon,[open]>.btn-outline .octicon{color:inherit}

.btn-outline:active,.btn-outline.selected,.btn-outline[aria-selected=true]{color:var(--button-outline-fgColor-active, var(--color-btn-outline-selected-text));background-color:var(--button-outline-bgColor-active, var(--color-btn-outline-selected-bg));border-color:var(--button-outline-borderColor-active, var(--color-btn-outline-selected-border));box-shadow:var(--button-outline-shadow-selected, var(--color-btn-outline-selected-shadow))}

.btn-outline:active:focus,.btn-outline.selected:focus,.btn-outline[aria-selected=true]:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.btn-outline:active:focus:not(:focus-visible),.btn-outline.selected:focus:not(:focus-visible),.btn-outline[aria-selected=true]:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0);box-shadow:none}

.btn-outline:active:focus-visible,.btn-outline.selected:focus-visible,.btn-outline[aria-selected=true]:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.btn-outline:disabled,.btn-outline.disabled,.btn-outline[aria-disabled=true]{color:var(--button-outline-fgColor-disabled, var(--color-btn-outline-disabled-text));background-color:var(--button-outline-bgColor-disabled, var(--color-btn-outline-disabled-bg));border-color:var(--button-default-borderColor-rest, var(--color-btn-border));box-shadow:none}

.btn-outline:disabled .Counter,.btn-outline.disabled .Counter,.btn-outline[aria-disabled=true] .Counter{background-color:var(--buttonCounter-outline-bgColor-disabled, var(--color-btn-outline-disabled-counter-bg))}

.btn-outline .Counter{color:inherit;background-color:var(--buttonCounter-outline-bgColor-rest, var(--color-btn-outline-counter-bg))}

.btn-danger{color:var(--button-danger-fgColor-rest, var(--color-btn-danger-text))}

.btn-danger .octicon{color:var(--button-danger-iconColor-rest, var(--color-btn-danger-icon))}

.btn-danger:hover,[open]>.btn-danger{color:var(--button-danger-fgColor-hover, var(--color-btn-danger-hover-text));background-color:var(--button-danger-bgColor-hover, var(--color-btn-danger-hover-bg));border-color:var(--button-danger-borderColor-hover, var(--color-btn-danger-hover-border));box-shadow:var(--shadow-resting-small, var(--color-btn-danger-hover-shadow)),var(--shadow-highlight, var(--color-btn-danger-hover-inset-shadow))}

.btn-danger:hover .Counter,[open]>.btn-danger .Counter{background-color:var(--buttonCounter-danger-bgColor-hover, var(--color-btn-danger-hover-counter-bg))}

.btn-danger:hover .octicon,[open]>.btn-danger .octicon{color:var(--button-danger-iconColor-hover, var(--color-btn-danger-hover-icon))}

.btn-danger:active,.btn-danger.selected,.btn-danger[aria-selected=true]{color:var(--button-danger-fgColor-active, var(--color-btn-danger-selected-text));background-color:var(--button-danger-bgColor-active, var(--color-btn-danger-selected-bg));border-color:var(--button-danger-borderColor-active, var(--color-btn-danger-selected-border));box-shadow:var(--button-danger-shadow-selected, var(--color-btn-danger-selected-shadow))}

.btn-danger:disabled,.btn-danger.disabled,.btn-danger[aria-disabled=true]{color:var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text));background-color:var(--button-danger-bgColor-disabled, var(--color-btn-danger-disabled-bg));border-color:var(--button-default-borderColor-rest, var(--color-btn-border));box-shadow:none}

.btn-danger:disabled .Counter,.btn-danger.disabled .Counter,.btn-danger[aria-disabled=true] .Counter{background-color:var(--buttonCounter-danger-bgColor-disabled, var(--color-btn-danger-disabled-counter-bg))}

.btn-danger:disabled .octicon,.btn-danger.disabled .octicon,.btn-danger[aria-disabled=true] .octicon{color:var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text))}

.btn-danger .Counter{color:inherit;background-color:var(--buttonCounter-danger-bgColor-rest, var(--color-btn-danger-counter-bg))}

.btn-sm{padding:3px 12px;font-size:12px;line-height:20px}

.btn-sm .octicon{vertical-align:text-top}

.btn-large{padding:.75em 1.5em;font-size:inherit;line-height:1.5;border-radius:.5em}

.btn-block{display:block;width:100%;text-align:center}

.BtnGroup{display:inline-block;vertical-align:middle}

.BtnGroup::before{display:table;content:""}

.BtnGroup::after{display:table;clear:both;content:""}

.BtnGroup+.BtnGroup,.BtnGroup+.btn{margin-left:var(--base-size-4)}

.BtnGroup-item{position:relative;float:left;border-right-width:0;border-radius:0}

.BtnGroup-item:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px}

.BtnGroup-item:last-child{border-right-width:1px;border-top-right-radius:6px;border-bottom-right-radius:6px}

.BtnGroup-item.selected,.BtnGroup-item[aria-selected=true],.BtnGroup-item:focus,.BtnGroup-item:active,.BtnGroup-item:hover{border-right-width:1px}

.BtnGroup-item.selected+.BtnGroup-item,.BtnGroup-item.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item[aria-selected=true]+.BtnGroup-item,.BtnGroup-item[aria-selected=true]+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:active+.BtnGroup-item,.BtnGroup-item:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-parent .BtnGroup-item{border-left-width:0}

.BtnGroup-parent{float:left}

.BtnGroup-parent:first-child .BtnGroup-item{border-top-left-radius:6px;border-bottom-left-radius:6px}

.BtnGroup-parent:last-child .BtnGroup-item{border-right-width:1px;border-top-right-radius:6px;border-bottom-right-radius:6px}

.BtnGroup-parent .BtnGroup-item{border-right-width:0;border-radius:0}

.BtnGroup-parent.selected .BtnGroup-item,.BtnGroup-parent[aria-selected=true] .BtnGroup-item,.BtnGroup-parent:focus .BtnGroup-item,.BtnGroup-parent:active .BtnGroup-item,.BtnGroup-parent:hover .BtnGroup-item{border-right-width:1px}

.BtnGroup-parent.selected+.BtnGroup-item,.BtnGroup-parent.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent[aria-selected=true]+.BtnGroup-item,.BtnGroup-parent[aria-selected=true]+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-parent .BtnGroup-item{border-left-width:0}

.BtnGroup-item:focus,.BtnGroup-item:active,.BtnGroup-parent:focus,.BtnGroup-parent:active{z-index:1}

.btn-link{display:inline-block;padding:0;font-size:inherit;color:var(--fgColor-accent, var(--color-accent-fg));-webkit-text-decoration:none;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:0;appearance:none}

.btn-link:hover{-webkit-text-decoration:underline;text-decoration:underline}

.btn-link:disabled,.btn-link:disabled:hover,.btn-link[aria-disabled=true],.btn-link[aria-disabled=true]:hover{color:var(--fgColor-disabled, var(--color-primer-fg-disabled));cursor:default}

.btn-link:not(.dropdown-item):focus,.btn-link:not(.dropdown-item):focus-visible{border-radius:6px;outline-offset:0}

.btn-invisible{color:var(--fgColor-accent, var(--color-accent-fg));background-color:rgba(0,0,0,0);border:0;border-radius:6px;box-shadow:none}

.btn-invisible:hover,.btn-invisible.zeroclipboard-is-hover{color:var(--fgColor-accent, var(--color-accent-fg));background-color:var(--button-default-bgColor-hover, var(--color-btn-hover-bg));outline:none;box-shadow:none}

.btn-invisible:active,.btn-invisible.selected,.btn-invisible[aria-selected=true],.btn-invisible.zeroclipboard-is-active{color:var(--fgColor-accent, var(--color-accent-fg));background:none;border-color:var(--button-default-borderColor-active, var(--color-btn-active-border));outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.btn-invisible:active .btn-invisible.zeroclipboard-is-active{background-color:var(--button-default-bgColor-selected, var(--color-btn-selected-bg))}

.btn-invisible:disabled,.btn-invisible.disabled,.btn-invisible[aria-disabled=true]{color:var(--fgColor-disabled, var(--color-primer-fg-disabled));background-color:rgba(0,0,0,0)}

.btn-octicon{display:inline-block;padding:5px;margin-left:5px;line-height:1;color:var(--fgColor-muted, var(--color-fg-muted));vertical-align:middle;background:rgba(0,0,0,0);border:0;box-shadow:none}

.btn-octicon:hover{color:var(--fgColor-accent, var(--color-accent-fg))}

.btn-octicon:focus,.btn-octicon:focus-visible{border-radius:6px}

.btn-octicon.disabled,.btn-octicon[aria-disabled=true]{color:var(--fgColor-disabled, var(--color-primer-fg-disabled));cursor:default}

.btn-octicon.disabled:hover,.btn-octicon[aria-disabled=true]:hover{color:var(--fgColor-disabled, var(--color-primer-fg-disabled))}

.btn-octicon-danger:hover{color:var(--fgColor-danger, var(--color-danger-fg))}

.close-button{padding:0;color:var(--fgColor-muted, var(--color-fg-muted));background:rgba(0,0,0,0);border:0}

.close-button:hover{color:var(--fgColor-default, var(--color-fg-default))}

.close-button:active{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.hidden-text-expander{display:block}

.hidden-text-expander.inline{position:relative;top:-1px;display:inline-block;margin-left:5px;line-height:0}

.hidden-text-expander a,.ellipsis-expander{display:inline-block;height:12px;padding:0 5px 5px;font-size:12px;font-weight:var(--base-text-weight-semibold, 600);line-height:6px;color:var(--fgColor-default, var(--color-fg-default));-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;background:var(--bgColor-neutral-muted, var(--color-neutral-muted));border:0;border-radius:1px}

.hidden-text-expander a:hover,.ellipsis-expander:hover{-webkit-text-decoration:none;text-decoration:none;background-color:var(--bgColor-accent-muted, var(--color-accent-muted))}

.hidden-text-expander a:active,.ellipsis-expander:active{color:var(--fgColor-onEmphasis, var(--color-fg-on-emphasis));background-color:var(--bgColor-accent-emphasis, var(--color-accent-emphasis))}

.btn-with-count{float:left;border-top-right-radius:0;border-bottom-right-radius:0}

.btn-with-count:focus{z-index:1}

.social-count{position:relative;float:left;padding:3px 12px;font-size:12px;font-weight:var(--base-text-weight-semibold, 600);line-height:20px;color:var(--fgColor-default, var(--color-fg-default));vertical-align:middle;background-color:var(--bgColor-default, var(--color-canvas-default));border:1px solid var(--button-default-borderColor-rest, var(--color-btn-border));border-left:0;border-top-right-radius:6px;border-bottom-right-radius:6px;box-shadow:var(--shadow-resting-small, var(--color-shadow-small)),var(--shadow-highlight, var(--color-primer-shadow-highlight))}

.social-count:hover,.social-count:active{-webkit-text-decoration:none;text-decoration:none}

.social-count:hover{color:var(--fgColor-accent, var(--color-accent-fg));cursor:pointer}

/*# sourceMappingURL=buttons.css.map */

.AppFrame .AppFrame-a11yNav{position:absolute;z-index:1000;display:flex;width:100%;padding:var(--base-size-16, 16px);background:var(--bgColor-inset, var(--color-canvas-inset));padding-block-end:calc(var(--base-size-16, 16px) - var(--borderWidth-thin, 1px));isolation:isolate;align-items:center;gap:var(--base-size-8, 8px)}

.AppFrame .AppFrame-a11yNav:not(:focus-within){width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);border:0}

.AppFrame .AppFrame-a11yNav:focus-within{top:0;left:0}

@media(max-width: 767.98px){.AppFrame .AppFrame-a11yNav:focus-within{justify-content:center}}

.AppFrame .AppFrame-a11yLink{transition:none}

.AppFrame .AppFrame-a11yLink:not(:focus){display:block;width:var(--base-size-8, 8px);height:var(--base-size-8, 8px);overflow:hidden;text-indent:var(--base-size-128, 128px);pointer-events:none;background:var(--borderColor-default, var(--color-border-default));border-radius:var(--borderRadius-full, 100vh)}

.AppFrame .AppFrame-a11yLink:focus{z-index:20;display:grid;width:auto;height:auto;min-height:var(--control-medium-size, 32px);padding:0 var(--control-medium-paddingInline-spacious, 16px);overflow:auto;color:var(--fgColor-onEmphasis, var(--color-fg-on-emphasis));background:var(--bgColor-accent-emphasis, var(--color-accent-emphasis));border-radius:var(--borderRadius-full, 100vh);align-items:center}

@media(pointer: coarse){.AppFrame .AppFrame-a11yLink:focus::after{position:absolute;top:50%;left:50%;width:100%;height:100%;min-height:var(--control-minTarget-coarse, 44px);content:"";transform:translateX(-50%) translateY(-50%)}}

@media(prefers-reduced-motion: no-preference){.AppFrame .AppFrame-a11yLink:focus{animation:AppFrame-a11yLink-focus 200ms ease-out}}

@keyframes AppFrame-a11yLink-focus{0%{color:var(--fgColor-accent, var(--color-accent-emphasis));transform:scale(0.3, 0.25)}50%{color:var(--fgColor-accent, var(--color-accent-emphasis));transform:scale(1, 1)}55%{color:var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}100%{transform:scaleX(1)}}

.AppFrame .AppFrame-main{display:flex;min-height:100vh;flex-direction:column}

@supports(height: 100dvh){.AppFrame .AppFrame-main{min-height:100dvh}}

.AppFrame .AppFrame-header-wrapper{position:relative;height:min-content;overflow:visible}

.AppFrame .AppFrame-header-wrapper .AppFrame-header{position:sticky;top:0;z-index:1}

.AppFrame .AppFrame-header{flex:0 0 auto}

.AppFrame .AppFrame-subheader{flex:0 0 auto}

.AppFrame .AppFrame-body{flex:1 0;height:100%}

.AppFrame .AppFrame-footer{flex:0 0 auto}

.container-sm{max-width:544px;margin-right:auto;margin-left:auto}

.container-md{max-width:768px;margin-right:auto;margin-left:auto}

.container-lg{max-width:1012px;margin-right:auto;margin-left:auto}

.container-xl{max-width:1280px;margin-right:auto;margin-left:auto}

.col-1{width:8.33333333%}

.col-2{width:16.66666666%}

.col-3{width:24.99999999%}

.col-4{width:33.33333332%}

.col-5{width:41.66666665%}

.col-6{width:49.99999998%}

.col-7{width:58.33333331%}

.col-8{width:66.66666664%}

.col-9{width:74.99999997%}

.col-10{width:83.3333333%}

.col-11{width:91.66666663%}

.col-12{width:100%}

@media(min-width: 544px){.col-sm-1{width:8.33333333%}.col-sm-2{width:16.66666666%}.col-sm-3{width:24.99999999%}.col-sm-4{width:33.33333332%}.col-sm-5{width:41.66666665%}.col-sm-6{width:49.99999998%}.col-sm-7{width:58.33333331%}.col-sm-8{width:66.66666664%}.col-sm-9{width:74.99999997%}.col-sm-10{width:83.3333333%}.col-sm-11{width:91.66666663%}.col-sm-12{width:100%}}

@media(min-width: 768px){.col-md-1{width:8.33333333%}.col-md-2{width:16.66666666%}.col-md-3{width:24.99999999%}.col-md-4{width:33.33333332%}.col-md-5{width:41.66666665%}.col-md-6{width:49.99999998%}.col-md-7{width:58.33333331%}.col-md-8{width:66.66666664%}.col-md-9{width:74.99999997%}.col-md-10{width:83.3333333%}.col-md-11{width:91.66666663%}.col-md-12{width:100%}}

@media(min-width: 1012px){.col-lg-1{width:8.33333333%}.col-lg-2{width:16.66666666%}.col-lg-3{width:24.99999999%}.col-lg-4{width:33.33333332%}.col-lg-5{width:41.66666665%}.col-lg-6{width:49.99999998%}.col-lg-7{width:58.33333331%}.col-lg-8{width:66.66666664%}.col-lg-9{width:74.99999997%}.col-lg-10{width:83.3333333%}.col-lg-11{width:91.66666663%}.col-lg-12{width:100%}}

@media(min-width: 1280px){.col-xl-1{width:8.33333333%}.col-xl-2{width:16.66666666%}.col-xl-3{width:24.99999999%}.col-xl-4{width:33.33333332%}.col-xl-5{width:41.66666665%}.col-xl-6{width:49.99999998%}.col-xl-7{width:58.33333331%}.col-xl-8{width:66.66666664%}.col-xl-9{width:74.99999997%}.col-xl-10{width:83.3333333%}.col-xl-11{width:91.66666663%}.col-xl-12{width:100%}}

.gutter{margin-right:calc(var(--base-size-16)*-1);margin-left:calc(var(--base-size-16)*-1)}

.gutter>[class*=col-]{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}

.gutter-condensed{margin-right:calc(var(--base-size-8)*-1);margin-left:calc(var(--base-size-8)*-1)}

.gutter-condensed>[class*=col-]{padding-right:var(--base-size-8) !important;padding-left:var(--base-size-8) !important}

.gutter-spacious{margin-right:calc(var(--base-size-24)*-1);margin-left:calc(var(--base-size-24)*-1)}

.gutter-spacious>[class*=col-]{padding-right:var(--base-size-24) !important;padding-left:var(--base-size-24) !important}

@media(min-width: 544px){.gutter-sm{margin-right:calc(var(--base-size-16)*-1);margin-left:calc(var(--base-size-16)*-1)}.gutter-sm>[class*=col-]{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}.gutter-sm-condensed{margin-right:calc(var(--base-size-8)*-1);margin-left:calc(var(--base-size-8)*-1)}.gutter-sm-condensed>[class*=col-]{padding-right:var(--base-size-8) !important;padding-left:var(--base-size-8) !important}.gutter-sm-spacious{margin-right:calc(var(--base-size-24)*-1);margin-left:calc(var(--base-size-24)*-1)}.gutter-sm-spacious>[class*=col-]{padding-right:var(--base-size-24) !important;padding-left:var(--base-size-24) !important}}

@media(min-width: 768px){.gutter-md{margin-right:calc(var(--base-size-16)*-1);margin-left:calc(var(--base-size-16)*-1)}.gutter-md>[class*=col-]{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}.gutter-md-condensed{margin-right:calc(var(--base-size-8)*-1);margin-left:calc(var(--base-size-8)*-1)}.gutter-md-condensed>[class*=col-]{padding-right:var(--base-size-8) !important;padding-left:var(--base-size-8) !important}.gutter-md-spacious{margin-right:calc(var(--base-size-24)*-1);margin-left:calc(var(--base-size-24)*-1)}.gutter-md-spacious>[class*=col-]{padding-right:var(--base-size-24) !important;padding-left:var(--base-size-24) !important}}

@media(min-width: 1012px){.gutter-lg{margin-right:calc(var(--base-size-16)*-1);margin-left:calc(var(--base-size-16)*-1)}.gutter-lg>[class*=col-]{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}.gutter-lg-condensed{margin-right:calc(var(--base-size-8)*-1);margin-left:calc(var(--base-size-8)*-1)}.gutter-lg-condensed>[class*=col-]{padding-right:var(--base-size-8) !important;padding-left:var(--base-size-8) !important}.gutter-lg-spacious{margin-right:calc(var(--base-size-24)*-1);margin-left:calc(var(--base-size-24)*-1)}.gutter-lg-spacious>[class*=col-]{padding-right:var(--base-size-24) !important;padding-left:var(--base-size-24) !important}}

@media(min-width: 1280px){.gutter-xl{margin-right:calc(var(--base-size-16)*-1);margin-left:calc(var(--base-size-16)*-1)}.gutter-xl>[class*=col-]{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}.gutter-xl-condensed{margin-right:calc(var(--base-size-8)*-1);margin-left:calc(var(--base-size-8)*-1)}.gutter-xl-condensed>[class*=col-]{padding-right:var(--base-size-8) !important;padding-left:var(--base-size-8) !important}.gutter-xl-spacious{margin-right:calc(var(--base-size-24)*-1);margin-left:calc(var(--base-size-24)*-1)}.gutter-xl-spacious>[class*=col-]{padding-right:var(--base-size-24) !important;padding-left:var(--base-size-24) !important}}

.offset-1{margin-left:8.33333333% !important}

.offset-2{margin-left:16.66666666% !important}

.offset-3{margin-left:24.99999999% !important}

.offset-4{margin-left:33.33333332% !important}

.offset-5{margin-left:41.66666665% !important}

.offset-6{margin-left:49.99999998% !important}

.offset-7{margin-left:58.33333331% !important}

.offset-8{margin-left:66.66666664% !important}

.offset-9{margin-left:74.99999997% !important}

.offset-10{margin-left:83.3333333% !important}

.offset-11{margin-left:91.66666663% !important}

@media(min-width: 544px){.offset-sm-1{margin-left:8.33333333% !important}.offset-sm-2{margin-left:16.66666666% !important}.offset-sm-3{margin-left:24.99999999% !important}.offset-sm-4{margin-left:33.33333332% !important}.offset-sm-5{margin-left:41.66666665% !important}.offset-sm-6{margin-left:49.99999998% !important}.offset-sm-7{margin-left:58.33333331% !important}.offset-sm-8{margin-left:66.66666664% !important}.offset-sm-9{margin-left:74.99999997% !important}.offset-sm-10{margin-left:83.3333333% !important}.offset-sm-11{margin-left:91.66666663% !important}}

@media(min-width: 768px){.offset-md-1{margin-left:8.33333333% !important}.offset-md-2{margin-left:16.66666666% !important}.offset-md-3{margin-left:24.99999999% !important}.offset-md-4{margin-left:33.33333332% !important}.offset-md-5{margin-left:41.66666665% !important}.offset-md-6{margin-left:49.99999998% !important}.offset-md-7{margin-left:58.33333331% !important}.offset-md-8{margin-left:66.66666664% !important}.offset-md-9{margin-left:74.99999997% !important}.offset-md-10{margin-left:83.3333333% !important}.offset-md-11{margin-left:91.66666663% !important}}

@media(min-width: 1012px){.offset-lg-1{margin-left:8.33333333% !important}.offset-lg-2{margin-left:16.66666666% !important}.offset-lg-3{margin-left:24.99999999% !important}.offset-lg-4{margin-left:33.33333332% !important}.offset-lg-5{margin-left:41.66666665% !important}.offset-lg-6{margin-left:49.99999998% !important}.offset-lg-7{margin-left:58.33333331% !important}.offset-lg-8{margin-left:66.66666664% !important}.offset-lg-9{margin-left:74.99999997% !important}.offset-lg-10{margin-left:83.3333333% !important}.offset-lg-11{margin-left:91.66666663% !important}}

@media(min-width: 1280px){.offset-xl-1{margin-left:8.33333333% !important}.offset-xl-2{margin-left:16.66666666% !important}.offset-xl-3{margin-left:24.99999999% !important}.offset-xl-4{margin-left:33.33333332% !important}.offset-xl-5{margin-left:41.66666665% !important}.offset-xl-6{margin-left:49.99999998% !important}.offset-xl-7{margin-left:58.33333331% !important}.offset-xl-8{margin-left:66.66666664% !important}.offset-xl-9{margin-left:74.99999997% !important}.offset-xl-10{margin-left:83.3333333% !important}.offset-xl-11{margin-left:91.66666663% !important}}

:root{--Layout-pane-width: 220px;--Layout-content-width: 100%;--Layout-template-columns: 1fr var(--Layout-pane-width);--Layout-template-areas: "content pane";--Layout-column-gap: var(--base-size-16);--Layout-row-gap: var(--base-size-16);--Layout-outer-spacing-x: 0px;--Layout-outer-spacing-y: 0px;--Layout-inner-spacing-min: 0px;--Layout-inner-spacing-max: 0px}

.PageLayout{display:block;margin:var(--Layout-outer-spacing-y) var(--Layout-outer-spacing-x)}

@media(min-width: 768px){.PageLayout.PageLayout--panePos-start{--Layout-template-columns: var(--Layout-pane-width) minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap)));--Layout-template-areas: "pane content"}.PageLayout.PageLayout--panePos-end{--Layout-template-columns: minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap))) var(--Layout-pane-width);--Layout-template-areas: "content pane"}.PageLayout .PageLayout-header--hasDivider{padding-bottom:max(var(--Layout-row-gap),var(--Layout-inner-spacing-min));border-bottom:1px solid var(--borderColor-default, var(--color-border-default))}.PageLayout .PageLayout-footer--hasDivider{padding-top:max(var(--Layout-row-gap),var(--Layout-inner-spacing-min));border-top:1px solid var(--borderColor-default, var(--color-border-default))}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start .PageLayout-pane{border-right:1px solid var(--borderColor-default, var(--color-border-default))}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-pane{padding-right:calc(var(--Layout-column-gap) - 1px);margin-right:calc(var(--Layout-column-gap)*-1)}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-content{margin-left:var(--Layout-column-gap)}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end .PageLayout-pane{border-left:1px solid var(--borderColor-default, var(--color-border-default))}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-pane{padding-left:calc(var(--Layout-column-gap) - 1px);margin-left:calc(var(--Layout-column-gap)*-1)}.PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-content{margin-right:var(--Layout-column-gap)}.PageLayout .PageLayout-pane--sticky{position:sticky;top:0;max-height:100vh;overflow:auto;scrollbar-width:thin}@supports(max-height: 100dvh){.PageLayout .PageLayout-pane--sticky{max-height:100dvh}}.PageLayout [class^=PageLayout-content-centered-]{max-width:calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap));margin-right:auto;margin-left:auto}.PageLayout.PageLayout--hasPaneDivider [class^=PageLayout-content-centered-]{max-width:calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap)*2)}.PageLayout.PageLayout--panePos-start [class^=PageLayout-content-centered-]>[class^=container-]{margin-left:0}.PageLayout.PageLayout--panePos-end [class^=PageLayout-content-centered-]>[class^=container-]{margin-right:0}.PageLayout .PageLayout-content-centered-sm{--Layout-content-width: 544px}.PageLayout .PageLayout-content-centered-md{--Layout-content-width: 768px}.PageLayout .PageLayout-content-centered-lg{--Layout-content-width: 1012px}.PageLayout .PageLayout-content-centered-xl{--Layout-content-width: 1280px}}

@media(min-width: 768px)and (min-width: 544px){.PageLayout{--Layout-pane-width: 220px}}

@media(min-width: 768px)and (min-width: 768px){.PageLayout{--Layout-pane-width: 256px}}

@media(min-width: 768px)and (min-width: 1012px){.PageLayout{--Layout-pane-width: 296px}}

@media(min-width: 768px)and (min-width: 768px){.PageLayout.PageLayout--paneWidth-narrow{--Layout-pane-width: 240px}}

@media(min-width: 768px)and (min-width: 1012px){.PageLayout.PageLayout--paneWidth-narrow{--Layout-pane-width: 256px}}

@media(min-width: 768px)and (min-width: 1012px){.PageLayout.PageLayout--paneWidth-wide{--Layout-pane-width: 320px}}

@media(min-width: 768px)and (min-width: 1280px){.PageLayout.PageLayout--paneWidth-wide{--Layout-pane-width: 336px}}

@media(max-width: 767.98px){.PageLayout.PageLayout--responsive-stackRegions{--Layout-template-columns: 1fr;--Layout-template-areas: "content" "pane"}.PageLayout.PageLayout--responsive-stackRegions.PageLayout--responsive-panePos-start{--Layout-template-areas: "pane" "content"}.PageLayout.PageLayout--responsive-separateRegions{--Layout-template-columns: 1fr;--Layout-template-areas: "content"}.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content{--Layout-template-areas: "content"}.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content .PageLayout-pane{display:none}.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane{--Layout-template-areas: "pane"}.PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .PageLayout-content{display:none}.PageLayout .PageLayout-region--dividerNarrow-line-before{position:relative;margin-top:var(--Layout-row-gap)}.PageLayout .PageLayout-region--dividerNarrow-line-before::before{position:absolute;left:calc(var(--Layout-outer-spacing-x)*-1);display:block;width:calc(100% + var(--Layout-outer-spacing-x)*2);height:1px;content:"";background-color:var(--borderColor-default, var(--color-border-default));top:calc(-1px - var(--Layout-row-gap))}.PageLayout .PageLayout-region--dividerNarrow-line-after{position:relative;margin-bottom:var(--Layout-row-gap)}.PageLayout .PageLayout-region--dividerNarrow-line-after::after{position:absolute;left:calc(var(--Layout-outer-spacing-x)*-1);display:block;width:calc(100% + var(--Layout-outer-spacing-x)*2);height:1px;content:"";background-color:var(--borderColor-default, var(--color-border-default));bottom:calc(-1px - var(--Layout-row-gap))}.PageLayout .PageLayout-region--dividerNarrow-filled-before{position:relative;margin-top:calc(var(--base-size-8) + var(--Layout-row-gap))}.PageLayout .PageLayout-region--dividerNarrow-filled-before::after{position:absolute;bottom:calc(var(--base-size-8)*-1);left:calc(var(--Layout-outer-spacing-x)*-1);display:block;width:calc(100% + var(--Layout-outer-spacing-x)*2);height:var(--base-size-8);content:"";background-color:var(--bgColor-inset, var(--color-canvas-inset));box-shadow:inset 0 1px var(--borderColor-default, var(--color-border-default)),inset 0 -1px var(--borderColor-default, var(--color-border-default));top:calc(var(--base-size-8)*-1 - var(--Layout-row-gap))}.PageLayout .PageLayout-region--dividerNarrow-filled-after{position:relative;margin-bottom:calc(var(--base-size-8) + var(--Layout-row-gap))}.PageLayout .PageLayout-region--dividerNarrow-filled-after::before{position:absolute;bottom:calc(var(--base-size-8)*-1);left:calc(var(--Layout-outer-spacing-x)*-1);display:block;width:calc(100% + var(--Layout-outer-spacing-x)*2);height:var(--base-size-8);content:"";background-color:var(--bgColor-inset, var(--color-canvas-inset));box-shadow:inset 0 1px var(--borderColor-default, var(--color-border-default)),inset 0 -1px var(--borderColor-default, var(--color-border-default));bottom:calc(var(--base-size-8)*-1 - var(--Layout-row-gap))}}

.PageLayout-wrapper{display:grid;grid:auto-flow/1fr;row-gap:var(--Layout-row-gap)}

.PageLayout-columns{display:grid;column-gap:var(--Layout-column-gap);row-gap:var(--Layout-row-gap);grid-template-columns:var(--Layout-template-columns);grid-template-rows:1fr;grid-template-areas:var(--Layout-template-areas)}

.PageLayout-columns .PageLayout-content{padding-right:var(--Layout-inner-spacing-max);padding-left:var(--Layout-inner-spacing-max);grid-area:content}

.PageLayout-columns .PageLayout-pane{grid-area:pane}

.PageLayout--outerSpacing-normal{--Layout-outer-spacing-x: var(--base-size-16);--Layout-outer-spacing-y: var(--base-size-16)}

@media(min-width: 1012px){.PageLayout--outerSpacing-normal{--Layout-outer-spacing-x: var(--base-size-24);--Layout-outer-spacing-y: var(--base-size-24)}}

.PageLayout--outerSpacing-condensed{--Layout-outer-spacing-x: var(--base-size-16);--Layout-outer-spacing-y: var(--base-size-16)}

.PageLayout--innerSpacing-normal{--Layout-inner-spacing-min: var(--base-size-16);--Layout-inner-spacing-max: var(--base-size-16)}

@media(min-width: 1012px){.PageLayout--innerSpacing-normal{--Layout-inner-spacing-max: var(--base-size-24)}}

.PageLayout--innerSpacing-condensed{--Layout-inner-spacing-min: var(--base-size-16);--Layout-inner-spacing-max: var(--base-size-16)}

.PageLayout--columnGap-normal{--Layout-column-gap: var(--base-size-16)}

@media(min-width: 1012px){.PageLayout--columnGap-normal{--Layout-column-gap: var(--base-size-24)}}

.PageLayout--columnGap-condensed{--Layout-column-gap: var(--base-size-16)}

.PageLayout--columnGap-none{--Layout-column-gap: 0px}

.PageLayout--rowGap-normal{--Layout-row-gap: var(--base-size-16)}

@media(min-width: 1012px){.PageLayout--rowGap-normal{--Layout-row-gap: var(--base-size-24)}}

.PageLayout--rowGap-none{--Layout-row-gap: 0px}

.PageLayout--rowGap-condensed{--Layout-row-gap: var(--base-size-16)}

.PageLayout-header,.PageLayout-content,.PageLayout-pane,.PageLayout-footer{padding:var(--Layout-inner-spacing-min)}

.Stack{--Stack-gap-whenRegular: var(--stack-gap-normal, 16px);--Stack-gap-whenNarrow: var(--stack-gap-normal, 16px);--Stack-gap-whenWide: var(--Stack-gap-whenRegular);--Stack-divider-color: var(--borderColor-default, var(--color-border-default));display:flex;flex-flow:column;align-items:stretch;align-content:flex-start;gap:var(--Stack-gap-whenRegular)}

@media(max-width: 767.98px){.Stack{gap:var(--Stack-gap-whenNarrow)}}

@media(min-width: 1400px){.Stack{gap:var(--Stack-gap-whenWide)}}

.Stack-divider{display:none;padding:0;margin:0;border:0;align-self:stretch}

.Stack-item{flex:0 1 auto;min-inline-size:0}

@media(max-width: 767.98px){.Stack--dir-inline-whenNarrow{flex-flow:row}.Stack--dir-block-whenNarrow{flex-flow:column}.Stack--gap-none-whenNarrow{--Stack-gap-whenNarrow: 0}.Stack--gap-condensed-whenNarrow{--Stack-gap-whenNarrow: var(--stack-gap-condensed, 8px)}.Stack--gap-normal-whenNarrow{--Stack-gap-whenNarrow: var(--stack-gap-normal, 16px)}.Stack--align-start-whenNarrow{align-items:flex-start}.Stack--align-center-whenNarrow{align-items:center}.Stack--align-end-whenNarrow{align-items:flex-end}.Stack--align-baseline-whenNarrow{align-items:baseline}.Stack--alignWrap-start-whenNarrow{align-content:flex-start}.Stack--alignWrap-center-whenNarrow{align-content:center}.Stack--alignWrap-end-whenNarrow{align-content:flex-end}.Stack--alignWrap-distribute-whenNarrow{align-content:space-between}.Stack--alignWrap-distributeEvenly-whenNarrow{align-content:space-evenly}.Stack--spread-start-whenNarrow{justify-content:flex-start}.Stack--spread-center-whenNarrow{justify-content:center}.Stack--spread-end-whenNarrow{justify-content:flex-end}.Stack--spread-distribute-whenNarrow{justify-content:space-between}.Stack--spread-distributeEvenly-whenNarrow{justify-content:space-evenly}.Stack--wrap-whenNarrow{flex-wrap:wrap}.Stack--nowrap-whenNarrow{flex-wrap:nowrap}.Stack--showDividers-whenNarrow>.Stack-divider,.Stack--showDividers-whenNarrow>.Stack-item>.Stack-divider{display:block}:not(.Stack--dir-inline-whenNarrow)>.Stack-divider,:not(.Stack--dir-inline-whenNarrow)>.Stack-item>.Stack-divider{border-block-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:auto;block-size:0}.Stack--dir-inline-whenNarrow>.Stack-divider,.Stack--dir-inline-whenNarrow>.Stack-item>.Stack-divider{border-inline-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:0;block-size:auto}.Stack-item--expand-whenNarrow{flex-grow:1}.Stack-item--keepSize-whenNarrow{flex-shrink:0}}

@media(min-width: 768px){.Stack--dir-inline-whenRegular{flex-flow:row}.Stack--dir-block-whenRegular{flex-flow:column}.Stack--gap-none-whenRegular{--Stack-gap-whenRegular: 0}.Stack--gap-condensed-whenRegular{--Stack-gap-whenRegular: var(--stack-gap-condensed, 8px)}.Stack--gap-normal-whenRegular{--Stack-gap-whenRegular: var(--stack-gap-normal, 16px)}.Stack--gap-spacious-whenRegular{--Stack-gap-whenRegular: var(--stack-gap-spacious, 24px)}.Stack--align-start-whenRegular{align-items:flex-start}.Stack--align-center-whenRegular{align-items:center}.Stack--align-end-whenRegular{align-items:flex-end}.Stack--align-baseline-whenRegular{align-items:baseline}.Stack--alignWrap-start-whenRegular{align-content:flex-start}.Stack--alignWrap-center-whenRegular{align-content:center}.Stack--alignWrap-end-whenRegular{align-content:flex-end}.Stack--alignWrap-distribute-whenRegular{align-content:space-between}.Stack--alignWrap-distributeEvenly-whenRegular{align-content:space-evenly}.Stack--spread-start-whenRegular{justify-content:flex-start}.Stack--spread-center-whenRegular{justify-content:center}.Stack--spread-end-whenRegular{justify-content:flex-end}.Stack--spread-distribute-whenRegular{justify-content:space-between}.Stack--spread-distributeEvenly-whenRegular{justify-content:space-evenly}.Stack--wrap-whenRegular{flex-wrap:wrap}.Stack--nowrap-whenRegular{flex-wrap:nowrap}.Stack--showDividers-whenRegular>.Stack-divider,.Stack--showDividers-whenRegular>.Stack-item>.Stack-divider{display:block}:not(.Stack--dir-inline-whenRegular)>.Stack-divider,:not(.Stack--dir-inline-whenRegular)>.Stack-item>.Stack-divider{border-block-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:auto;block-size:0}.Stack--dir-inline-whenRegular>.Stack-divider,.Stack--dir-inline-whenRegular>.Stack-item>.Stack-divider{border-inline-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:0;block-size:auto}.Stack-item--expand-whenRegular{flex-grow:1}.Stack-item--keepSize-whenRegular{flex-shrink:0}}

@media(min-width: 1400px){.Stack--dir-inline-whenWide{flex-flow:row}.Stack--dir-block-whenWide{flex-flow:column}.Stack--gap-none-whenWide{--Stack-gap-whenWide: 0}.Stack--gap-condensed-whenWide{--Stack-gap-whenWide: var(--stack-gap-condensed, 8px)}.Stack--gap-normal-whenWide{--Stack-gap-whenWide: var(--stack-gap-normal, 16px)}.Stack--gap-spacious-whenWide{--Stack-gap-whenWide: var(--stack-gap-spacious, 24px)}.Stack--align-start-whenWide{align-items:flex-start}.Stack--align-center-whenWide{align-items:center}.Stack--align-end-whenWide{align-items:flex-end}.Stack--align-baseline-whenWide{align-items:baseline}.Stack--alignWrap-start-whenWide{align-content:flex-start}.Stack--alignWrap-center-whenWide{align-content:center}.Stack--alignWrap-end-whenWide{align-content:flex-end}.Stack--alignWrap-distribute-whenWide{align-content:space-between}.Stack--alignWrap-distributeEvenly-whenWide{align-content:space-evenly}.Stack--spread-start-whenWide{justify-content:flex-start}.Stack--spread-center-whenWide{justify-content:center}.Stack--spread-end-whenWide{justify-content:flex-end}.Stack--spread-distribute-whenWide{justify-content:space-between}.Stack--spread-distributeEvenly-whenWide{justify-content:space-evenly}.Stack--wrap-whenWide{flex-wrap:wrap}.Stack--nowrap-whenWide{flex-wrap:nowrap}.Stack--showDividers-whenWide>.Stack-divider,.Stack--showDividers-whenWide>.Stack-item>.Stack-divider{display:block}:not(.Stack--dir-inline-whenWide)>.Stack-divider,:not(.Stack--dir-inline-whenWide)>.Stack-item>.Stack-divider{border-block-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:auto;block-size:0}.Stack--dir-inline-whenWide>.Stack-divider,.Stack--dir-inline-whenWide>.Stack-item>.Stack-divider{border-inline-end:var(--borderWidth-thin, var(--borderWidth-thin)) solid var(--Stack-divider-color);inline-size:0;block-size:auto}.Stack-item--expand-whenWide{flex-grow:1}.Stack-item--keepSize-whenWide{flex-shrink:0}}

/*# sourceMappingURL=layout.css.map */

.anim-fade-in{animation-name:fade-in;animation-duration:1s;animation-timing-function:ease-in-out}

.anim-fade-in.fast{animation-duration:300ms}

@keyframes fade-in{0%{opacity:0}100%{opacity:1}}

.anim-fade-out{animation-name:fade-out;animation-duration:1s;animation-fill-mode:forwards;animation-timing-function:ease-out}

.anim-fade-out.fast{animation-duration:.3s}

@keyframes fade-out{0%{opacity:1}100%{opacity:0}}

.anim-fade-up{opacity:0;animation-name:fade-up;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-out;animation-delay:1s}

@keyframes fade-up{0%{opacity:.8;transform:translateY(100%)}100%{opacity:1;transform:translateY(0)}}

.anim-fade-down{animation-name:fade-down;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in}

@keyframes fade-down{0%{opacity:1;transform:translateY(0)}100%{opacity:.5;transform:translateY(100%)}}

.anim-grow-x{width:0%;animation-name:grow-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease;animation-delay:.5s}

@keyframes grow-x{to{width:100%}}

.anim-shrink-x{animation-name:shrink-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in-out;animation-delay:.5s}

@keyframes shrink-x{to{width:0%}}

.anim-scale-in{animation-name:scale-in;animation-duration:.15s;animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5)}

@keyframes scale-in{0%{opacity:0;transform:scale(0.5)}100%{opacity:1;transform:scale(1)}}

.anim-pulse{animation-name:pulse;animation-duration:2s;animation-timing-function:linear;animation-iteration-count:infinite}

@keyframes pulse{0%{opacity:.3}10%{opacity:1}100%{opacity:.3}}

.anim-pulse-in{animation-name:pulse-in;animation-duration:.5s}

@keyframes pulse-in{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.1, 1.1, 1.1)}100%{transform:scale3d(1, 1, 1)}}

.hover-grow,.anim-hover-grow{transition:transform .3s;backface-visibility:hidden}

.hover-grow:hover,.anim-hover-grow:hover{transform:scale(1.025)}

.anim-rotate{animation:rotate-keyframes 1s linear infinite}

@keyframes rotate-keyframes{100%{transform:rotate(360deg)}}

.border-x{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important;border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-y{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important;border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border{border:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-0{border:0 !important}

.border-top{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-right{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-bottom{border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-left{border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}

.border-top-0{border-top:0 !important}

.border-right-0{border-right:0 !important}

.border-bottom-0{border-bottom:0 !important}

.border-left-0{border-left:0 !important}

.rounded{border-radius:var(--borderRadius-medium, 6px) !important}

.rounded-0{border-radius:0 !important}

.rounded-1{border-radius:var(--borderRadius-small, 4px) !important}

.rounded-2{border-radius:var(--borderRadius-medium, 6px) !important}

.rounded-3{border-radius:var(--borderRadius-large, 8px) !important}

.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}

.rounded-top-1{border-top-left-radius:var(--borderRadius-small, 4px) !important;border-top-right-radius:var(--borderRadius-small, 4px) !important}

.rounded-top-2{border-top-left-radius:var(--borderRadius-medium, 6px) !important;border-top-right-radius:var(--borderRadius-medium, 6px) !important}

.rounded-top-3{border-top-left-radius:var(--borderRadius-medium, 8px) !important;border-top-right-radius:var(--borderRadius-medium, 8px) !important}

.rounded-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}

.rounded-right-1{border-top-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-right-radius:var(--borderRadius-small, 4px) !important}

.rounded-right-2{border-top-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-right-radius:var(--borderRadius-medium, 6px) !important}

.rounded-right-3{border-top-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-right-radius:var(--borderRadius-medium, 8px) !important}

.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}

.rounded-bottom-1{border-bottom-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-left-radius:var(--borderRadius-small, 4px) !important}

.rounded-bottom-2{border-bottom-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-left-radius:var(--borderRadius-medium, 6px) !important}

.rounded-bottom-3{border-bottom-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-left-radius:var(--borderRadius-medium, 8px) !important}

.rounded-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}

.rounded-left-1{border-bottom-left-radius:var(--borderRadius-small, 4px) !important;border-top-left-radius:var(--borderRadius-small, 4px) !important}

.rounded-left-2{border-bottom-left-radius:var(--borderRadius-medium, 6px) !important;border-top-left-radius:var(--borderRadius-medium, 6px) !important}

.rounded-left-3{border-bottom-left-radius:var(--borderRadius-medium, 8px) !important;border-top-left-radius:var(--borderRadius-medium, 8px) !important}

@media(min-width: 544px){.border-sm{border:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-sm-0{border:0 !important}.border-sm-top{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-sm-right{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-sm-bottom{border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-sm-left{border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-sm-top-0{border-top:0 !important}.border-sm-right-0{border-right:0 !important}.border-sm-bottom-0{border-bottom:0 !important}.border-sm-left-0{border-left:0 !important}.rounded-sm{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-0{border-radius:0 !important}.rounded-sm-1{border-radius:var(--borderRadius-small, 4px) !important}.rounded-sm-2{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-3{border-radius:var(--borderRadius-large, 8px) !important}.rounded-sm-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-sm-top-1{border-top-left-radius:var(--borderRadius-small, 4px) !important;border-top-right-radius:var(--borderRadius-small, 4px) !important}.rounded-sm-top-2{border-top-left-radius:var(--borderRadius-medium, 6px) !important;border-top-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-top-3{border-top-left-radius:var(--borderRadius-medium, 8px) !important;border-top-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-sm-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-sm-right-1{border-top-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-right-radius:var(--borderRadius-small, 4px) !important}.rounded-sm-right-2{border-top-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-right-3{border-top-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-sm-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-sm-bottom-1{border-bottom-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-left-radius:var(--borderRadius-small, 4px) !important}.rounded-sm-bottom-2{border-bottom-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-bottom-3{border-bottom-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-left-radius:var(--borderRadius-medium, 8px) !important}.rounded-sm-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-sm-left-1{border-bottom-left-radius:var(--borderRadius-small, 4px) !important;border-top-left-radius:var(--borderRadius-small, 4px) !important}.rounded-sm-left-2{border-bottom-left-radius:var(--borderRadius-medium, 6px) !important;border-top-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-sm-left-3{border-bottom-left-radius:var(--borderRadius-medium, 8px) !important;border-top-left-radius:var(--borderRadius-medium, 8px) !important}}

@media(min-width: 768px){.border-md{border:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-md-0{border:0 !important}.border-md-top{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-md-right{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-md-bottom{border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-md-left{border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-md-top-0{border-top:0 !important}.border-md-right-0{border-right:0 !important}.border-md-bottom-0{border-bottom:0 !important}.border-md-left-0{border-left:0 !important}.rounded-md{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-0{border-radius:0 !important}.rounded-md-1{border-radius:var(--borderRadius-small, 4px) !important}.rounded-md-2{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-3{border-radius:var(--borderRadius-large, 8px) !important}.rounded-md-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-md-top-1{border-top-left-radius:var(--borderRadius-small, 4px) !important;border-top-right-radius:var(--borderRadius-small, 4px) !important}.rounded-md-top-2{border-top-left-radius:var(--borderRadius-medium, 6px) !important;border-top-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-top-3{border-top-left-radius:var(--borderRadius-medium, 8px) !important;border-top-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-md-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-md-right-1{border-top-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-right-radius:var(--borderRadius-small, 4px) !important}.rounded-md-right-2{border-top-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-right-3{border-top-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-md-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-md-bottom-1{border-bottom-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-left-radius:var(--borderRadius-small, 4px) !important}.rounded-md-bottom-2{border-bottom-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-bottom-3{border-bottom-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-left-radius:var(--borderRadius-medium, 8px) !important}.rounded-md-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-md-left-1{border-bottom-left-radius:var(--borderRadius-small, 4px) !important;border-top-left-radius:var(--borderRadius-small, 4px) !important}.rounded-md-left-2{border-bottom-left-radius:var(--borderRadius-medium, 6px) !important;border-top-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-md-left-3{border-bottom-left-radius:var(--borderRadius-medium, 8px) !important;border-top-left-radius:var(--borderRadius-medium, 8px) !important}}

@media(min-width: 1012px){.border-lg{border:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-lg-0{border:0 !important}.border-lg-top{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-lg-right{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-lg-bottom{border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-lg-left{border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-lg-top-0{border-top:0 !important}.border-lg-right-0{border-right:0 !important}.border-lg-bottom-0{border-bottom:0 !important}.border-lg-left-0{border-left:0 !important}.rounded-lg{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-0{border-radius:0 !important}.rounded-lg-1{border-radius:var(--borderRadius-small, 4px) !important}.rounded-lg-2{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-3{border-radius:var(--borderRadius-large, 8px) !important}.rounded-lg-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-lg-top-1{border-top-left-radius:var(--borderRadius-small, 4px) !important;border-top-right-radius:var(--borderRadius-small, 4px) !important}.rounded-lg-top-2{border-top-left-radius:var(--borderRadius-medium, 6px) !important;border-top-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-top-3{border-top-left-radius:var(--borderRadius-medium, 8px) !important;border-top-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-lg-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-lg-right-1{border-top-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-right-radius:var(--borderRadius-small, 4px) !important}.rounded-lg-right-2{border-top-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-right-3{border-top-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-lg-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-lg-bottom-1{border-bottom-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-left-radius:var(--borderRadius-small, 4px) !important}.rounded-lg-bottom-2{border-bottom-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-bottom-3{border-bottom-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-left-radius:var(--borderRadius-medium, 8px) !important}.rounded-lg-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-lg-left-1{border-bottom-left-radius:var(--borderRadius-small, 4px) !important;border-top-left-radius:var(--borderRadius-small, 4px) !important}.rounded-lg-left-2{border-bottom-left-radius:var(--borderRadius-medium, 6px) !important;border-top-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-lg-left-3{border-bottom-left-radius:var(--borderRadius-medium, 8px) !important;border-top-left-radius:var(--borderRadius-medium, 8px) !important}}

@media(min-width: 1280px){.border-xl{border:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-xl-0{border:0 !important}.border-xl-top{border-top:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-xl-right{border-right:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-xl-bottom{border-bottom:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-xl-left{border-left:var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important}.border-xl-top-0{border-top:0 !important}.border-xl-right-0{border-right:0 !important}.border-xl-bottom-0{border-bottom:0 !important}.border-xl-left-0{border-left:0 !important}.rounded-xl{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-0{border-radius:0 !important}.rounded-xl-1{border-radius:var(--borderRadius-small, 4px) !important}.rounded-xl-2{border-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-3{border-radius:var(--borderRadius-large, 8px) !important}.rounded-xl-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-xl-top-1{border-top-left-radius:var(--borderRadius-small, 4px) !important;border-top-right-radius:var(--borderRadius-small, 4px) !important}.rounded-xl-top-2{border-top-left-radius:var(--borderRadius-medium, 6px) !important;border-top-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-top-3{border-top-left-radius:var(--borderRadius-medium, 8px) !important;border-top-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-xl-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-xl-right-1{border-top-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-right-radius:var(--borderRadius-small, 4px) !important}.rounded-xl-right-2{border-top-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-right-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-right-3{border-top-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-right-radius:var(--borderRadius-medium, 8px) !important}.rounded-xl-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-xl-bottom-1{border-bottom-right-radius:var(--borderRadius-small, 4px) !important;border-bottom-left-radius:var(--borderRadius-small, 4px) !important}.rounded-xl-bottom-2{border-bottom-right-radius:var(--borderRadius-medium, 6px) !important;border-bottom-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-bottom-3{border-bottom-right-radius:var(--borderRadius-medium, 8px) !important;border-bottom-left-radius:var(--borderRadius-medium, 8px) !important}.rounded-xl-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-xl-left-1{border-bottom-left-radius:var(--borderRadius-small, 4px) !important;border-top-left-radius:var(--borderRadius-small, 4px) !important}.rounded-xl-left-2{border-bottom-left-radius:var(--borderRadius-medium, 6px) !important;border-top-left-radius:var(--borderRadius-medium, 6px) !important}.rounded-xl-left-3{border-bottom-left-radius:var(--borderRadius-medium, 8px) !important;border-top-left-radius:var(--borderRadius-medium, 8px) !important}}

.circle{border-radius:var(--borderRadius-full, 50%) !important}

.border-dashed{border-style:dashed !important}

.color-shadow-small{box-shadow:var(--shadow-resting-small, var(--color-shadow-small)) !important}

.color-shadow-medium{box-shadow:var(--shadow-resting-medium, var(--color-shadow-medium)) !important}

.color-shadow-large{box-shadow:var(--shadow-floating-large, var(--color-shadow-large)) !important}

.color-shadow-extra-large{box-shadow:var(--shadow-floating-xlarge, var(--color-shadow-extra-large)) !important}

.shadow-floating-small{box-shadow:var(--shadow-floating-small, var(--color-overlay-shadow)) !important}

.box-shadow-none{box-shadow:none !important}

.color-fg-default,.fgColor-default{color:var(--fgColor-default, var(--color-fg-default)) !important}

.color-fg-muted,.fgColor-muted{color:var(--fgColor-muted, var(--color-fg-muted)) !important}

.color-fg-subtle{color:var(--fgColor-muted, var(--color-fg-subtle)) !important}

.color-fg-accent,.fgColor-accent{color:var(--fgColor-accent, var(--color-accent-fg)) !important}

.color-fg-success,.fgColor-success{color:var(--fgColor-success, var(--color-success-fg)) !important}

.color-fg-attention,.fgColor-attention{color:var(--fgColor-attention, var(--color-attention-fg)) !important}

.color-fg-severe,.fgColor-severe{color:var(--fgColor-severe, var(--color-severe-fg)) !important}

.color-fg-danger,.fgColor-danger{color:var(--fgColor-danger, var(--color-danger-fg)) !important}

.color-fg-open,.fgColor-open{color:var(--fgColor-open, var(--color-open-fg)) !important}

.color-fg-closed,.fgColor-closed{color:var(--fgColor-closed, var(--color-closed-fg)) !important}

.color-fg-done,.fgColor-done{color:var(--fgColor-done, var(--color-done-fg)) !important}

.color-fg-sponsors,.fgColor-sponsors{color:var(--fgColor-sponsors, var(--color-sponsors-fg)) !important}

.color-fg-on-emphasis,.fgColor-onEmphasis{color:var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)) !important}

.color-bg-default,.bgColor-default{background-color:var(--bgColor-default, var(--color-canvas-default)) !important}

.color-bg-overlay{background-color:var(--overlay-bgColor, var(--color-canvas-overlay)) !important}

.color-bg-inset,.bgColor-inset{background-color:var(--bgColor-inset, var(--color-canvas-inset)) !important}

.color-bg-subtle,.bgColor-muted{background-color:var(--bgColor-muted, var(--color-canvas-subtle)) !important}

.color-bg-emphasis,.bgColor-emphasis{background-color:var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)) !important}

.color-bg-accent,.bgColor-accent-muted{background-color:var(--bgColor-accent-muted, var(--color-accent-subtle)) !important}

.color-bg-accent-emphasis,.bgColor-accent-emphasis{background-color:var(--bgColor-accent-emphasis, var(--color-accent-emphasis)) !important}

.color-bg-success,.bgColor-success-muted{background-color:var(--bgColor-success-muted, var(--color-success-subtle)) !important}

.color-bg-success-emphasis,.bgColor-success-emphasis{background-color:var(--bgColor-success-emphasis, var(--color-success-emphasis)) !important}

.color-bg-attention,.bgColor-attention-muted{background-color:var(--bgColor-attention-muted, var(--color-attention-subtle)) !important}

.color-bg-attention-emphasis,.bgColor-attention-emphasis{background-color:var(--bgColor-attention-emphasis, var(--color-attention-emphasis)) !important}

.color-bg-severe,.bgColor-severe-muted{background-color:var(--bgColor-severe-muted, var(--color-severe-subtle)) !important}

.color-bg-severe-emphasis,.bgColor-severe-emphasis{background-color:var(--bgColor-severe-emphasis, var(--color-severe-emphasis)) !important}

.color-bg-danger,.bgColor-danger-muted{background-color:var(--bgColor-danger-muted, var(--color-danger-subtle)) !important}

.color-bg-danger-emphasis,.bgColor-danger-emphasis{background-color:var(--bgColor-danger-emphasis, var(--color-danger-emphasis)) !important}

.color-bg-open,.bgColor-open-muted{background-color:var(--bgColor-open-muted, var(--color-open-subtle)) !important}

.color-bg-open-emphasis,.bgColor-open-emphasis{background-color:var(--bgColor-open-emphasis, var(--color-open-emphasis)) !important}

.color-bg-closed,.bgColor-closed-muted{background-color:var(--bgColor-closed-muted, var(--color-closed-subtle)) !important}

.color-bg-closed-emphasis,.bgColor-closed-emphasis{background-color:var(--bgColor-closed-emphasis, var(--color-closed-emphasis)) !important}

.color-bg-done,.bgColor-done-muted{background-color:var(--bgColor-done-muted, var(--color-done-subtle)) !important}

.color-bg-done-emphasis,.bgColor-done-emphasis{background-color:var(--bgColor-done-emphasis, var(--color-done-emphasis)) !important}

.color-bg-sponsors,.bgColor-sponsors-muted{background-color:var(--bgColor-sponsors-muted, var(--color-sponsors-subtle)) !important}

.color-bg-sponsors-emphasis,.bgColor-sponsors-emphasis{background-color:var(--bgColor-sponsors-emphasis, var(--color-sponsors-emphasis)) !important}

.color-bg-transparent,.bgColor-transparent{background-color:rgba(0,0,0,0) !important}

.color-border-default,.borderColor-default{border-color:var(--borderColor-default, var(--color-border-default)) !important}

.color-border-muted,.borderColor-muted{border-color:var(--borderColor-muted, var(--color-border-muted)) !important}

.color-border-subtle{border-color:var(--borderColor-muted, var(--color-border-subtle)) !important}

.color-border-accent,.borderColor-accent-muted{border-color:var(--borderColor-accent-muted, var(--color-accent-muted)) !important}

.color-border-accent-emphasis,.borderColor-accent-emphasis{border-color:var(--borderColor-accent-emphasis, var(--color-accent-emphasis)) !important}

.color-border-success,.borderColor-success-muted{border-color:var(--borderColor-success-muted, var(--color-success-muted)) !important}

.color-border-success-emphasis,.borderColor-success-emphasis{border-color:var(--borderColor-success-emphasis, var(--color-success-emphasis)) !important}

.color-border-attention,.borderColor-attention-muted{border-color:var(--borderColor-attention-muted, var(--color-attention-muted)) !important}

.color-border-attention-emphasis,.borderColor-attention-emphasis{border-color:var(--borderColor-attention-emphasis, var(--color-attention-emphasis)) !important}

.color-border-severe,.borderColor-severe-muted{border-color:var(--borderColor-severe-muted, var(--color-severe-muted)) !important}

.color-border-severe-emphasis,.borderColor-severe-emphasis{border-color:var(--borderColor-severe-emphasis, var(--color-severe-emphasis)) !important}

.color-border-danger,.borderColor-danger-muted{border-color:var(--borderColor-danger-muted, var(--color-danger-muted)) !important}

.color-border-danger-emphasis,.borderColor-danger-emphasis{border-color:var(--borderColor-danger-emphasis, var(--color-danger-emphasis)) !important}

.color-border-open,.borderColor-open-muted{border-color:var(--borderColor-open-muted, var(--color-open-muted)) !important}

.color-border-open-emphasis,.borderColor-open-emphasis{border-color:var(--borderColor-open-emphasis, var(--color-open-emphasis)) !important}

.color-border-closed,.borderColor-closed-muted{border-color:var(--borderColor-closed-muted, var(--color-closed-muted)) !important}

.color-border-closed-emphasis,.borderColor-closed-emphasis{border-color:var(--borderColor-closed-emphasis, var(--color-closed-emphasis)) !important}

.color-border-done,.borderColor-done-muted{border-color:var(--borderColor-done-muted, var(--color-done-muted)) !important}

.color-border-done-emphasis,.borderColor-done-emphasis{border-color:var(--borderColor-done-emphasis, var(--color-done-emphasis)) !important}

.color-border-sponsors,.borderColor-sponsors-muted{border-color:var(--borderColor-sponsors-muted, var(--color-sponsors-muted)) !important}

.color-border-sponsors-emphasis,.borderColor-sponsors-emphasis{border-color:var(--borderColor-sponsors-emphasis, var(--color-sponsors-emphasis)) !important}

.color-fg-inherit,.fgColor-inherit{color:inherit !important}

.details-overlay[open]>summary::before{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:rgba(0,0,0,0)}

.details-overlay-dark[open]>summary::before{z-index:111;background:var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop))}

.details-reset>summary{list-style:none;transition:80ms cubic-bezier(0.33, 1, 0.68, 1);transition-property:color,background-color,box-shadow,border-color}

.details-reset>summary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.details-reset>summary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0)}

.details-reset>summary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.details-reset>summary.btn-primary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.details-reset>summary.btn-primary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0);box-shadow:none}

.details-reset>summary.btn-primary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.details-reset>summary::before{display:none}

.details-reset>summary::-webkit-details-marker{display:none}

.details-overlay>summary{transition:80ms cubic-bezier(0.33, 1, 0.68, 1);transition-property:color,background-color,box-shadow,border-color}

.details-overlay>summary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.details-overlay>summary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0)}

.details-overlay>summary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:none}

.details-overlay>summary.btn-primary:focus{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.details-overlay>summary.btn-primary:focus:not(:focus-visible){outline:solid 1px rgba(0,0,0,0);box-shadow:none}

.details-overlay>summary.btn-primary:focus-visible{outline:2px solid var(--focus-outlineColor, var(--color-accent-fg));outline-offset:-2px;box-shadow:inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))}

.flex-row{flex-direction:row !important}

.flex-row-reverse{flex-direction:row-reverse !important}

.flex-column{flex-direction:column !important}

.flex-column-reverse{flex-direction:column-reverse !important}

.flex-wrap{flex-wrap:wrap !important}

.flex-nowrap{flex-wrap:nowrap !important}

.flex-wrap-reverse{flex-wrap:wrap-reverse !important}

.flex-justify-start{justify-content:flex-start !important}

.flex-justify-end{justify-content:flex-end !important}

.flex-justify-center{justify-content:center !important}

.flex-justify-between{justify-content:space-between !important}

.flex-justify-around{justify-content:space-around !important}

.flex-items-start{align-items:flex-start !important}

.flex-items-end{align-items:flex-end !important}

.flex-items-center{align-items:center !important}

.flex-items-baseline{align-items:baseline !important}

.flex-items-stretch{align-items:stretch !important}

.flex-content-start{align-content:flex-start !important}

.flex-content-end{align-content:flex-end !important}

.flex-content-center{align-content:center !important}

.flex-content-between{align-content:space-between !important}

.flex-content-around{align-content:space-around !important}

.flex-content-stretch{align-content:stretch !important}

.flex-1{flex:1 !important}

.flex-auto{flex:auto !important}

.flex-grow-0{flex-grow:0 !important}

.flex-shrink-0{flex-shrink:0 !important}

.flex-self-auto{align-self:auto !important}

.flex-self-start{align-self:flex-start !important}

.flex-self-end{align-self:flex-end !important}

.flex-self-center{align-self:center !important}

.flex-self-baseline{align-self:baseline !important}

.flex-self-stretch{align-self:stretch !important}

.flex-order-1{order:1 !important}

.flex-order-2{order:2 !important}

.flex-order-none{order:inherit !important}

@media(min-width: 544px){.flex-sm-row{flex-direction:row !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column{flex-direction:column !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-justify-start{justify-content:flex-start !important}.flex-sm-justify-end{justify-content:flex-end !important}.flex-sm-justify-center{justify-content:center !important}.flex-sm-justify-between{justify-content:space-between !important}.flex-sm-justify-around{justify-content:space-around !important}.flex-sm-items-start{align-items:flex-start !important}.flex-sm-items-end{align-items:flex-end !important}.flex-sm-items-center{align-items:center !important}.flex-sm-items-baseline{align-items:baseline !important}.flex-sm-items-stretch{align-items:stretch !important}.flex-sm-content-start{align-content:flex-start !important}.flex-sm-content-end{align-content:flex-end !important}.flex-sm-content-center{align-content:center !important}.flex-sm-content-between{align-content:space-between !important}.flex-sm-content-around{align-content:space-around !important}.flex-sm-content-stretch{align-content:stretch !important}.flex-sm-1{flex:1 !important}.flex-sm-auto{flex:auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-self-auto{align-self:auto !important}.flex-sm-self-start{align-self:flex-start !important}.flex-sm-self-end{align-self:flex-end !important}.flex-sm-self-center{align-self:center !important}.flex-sm-self-baseline{align-self:baseline !important}.flex-sm-self-stretch{align-self:stretch !important}.flex-sm-order-1{order:1 !important}.flex-sm-order-2{order:2 !important}.flex-sm-order-none{order:inherit !important}}

@media(min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column{flex-direction:column !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-justify-start{justify-content:flex-start !important}.flex-md-justify-end{justify-content:flex-end !important}.flex-md-justify-center{justify-content:center !important}.flex-md-justify-between{justify-content:space-between !important}.flex-md-justify-around{justify-content:space-around !important}.flex-md-items-start{align-items:flex-start !important}.flex-md-items-end{align-items:flex-end !important}.flex-md-items-center{align-items:center !important}.flex-md-items-baseline{align-items:baseline !important}.flex-md-items-stretch{align-items:stretch !important}.flex-md-content-start{align-content:flex-start !important}.flex-md-content-end{align-content:flex-end !important}.flex-md-content-center{align-content:center !important}.flex-md-content-between{align-content:space-between !important}.flex-md-content-around{align-content:space-around !important}.flex-md-content-stretch{align-content:stretch !important}.flex-md-1{flex:1 !important}.flex-md-auto{flex:auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-self-auto{align-self:auto !important}.flex-md-self-start{align-self:flex-start !important}.flex-md-self-end{align-self:flex-end !important}.flex-md-self-center{align-self:center !important}.flex-md-self-baseline{align-self:baseline !important}.flex-md-self-stretch{align-self:stretch !important}.flex-md-order-1{order:1 !important}.flex-md-order-2{order:2 !important}.flex-md-order-none{order:inherit !important}}

@media(min-width: 1012px){.flex-lg-row{flex-direction:row !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column{flex-direction:column !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-justify-start{justify-content:flex-start !important}.flex-lg-justify-end{justify-content:flex-end !important}.flex-lg-justify-center{justify-content:center !important}.flex-lg-justify-between{justify-content:space-between !important}.flex-lg-justify-around{justify-content:space-around !important}.flex-lg-items-start{align-items:flex-start !important}.flex-lg-items-end{align-items:flex-end !important}.flex-lg-items-center{align-items:center !important}.flex-lg-items-baseline{align-items:baseline !important}.flex-lg-items-stretch{align-items:stretch !important}.flex-lg-content-start{align-content:flex-start !important}.flex-lg-content-end{align-content:flex-end !important}.flex-lg-content-center{align-content:center !important}.flex-lg-content-between{align-content:space-between !important}.flex-lg-content-around{align-content:space-around !important}.flex-lg-content-stretch{align-content:stretch !important}.flex-lg-1{flex:1 !important}.flex-lg-auto{flex:auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-self-auto{align-self:auto !important}.flex-lg-self-start{align-self:flex-start !important}.flex-lg-self-end{align-self:flex-end !important}.flex-lg-self-center{align-self:center !important}.flex-lg-self-baseline{align-self:baseline !important}.flex-lg-self-stretch{align-self:stretch !important}.flex-lg-order-1{order:1 !important}.flex-lg-order-2{order:2 !important}.flex-lg-order-none{order:inherit !important}}

@media(min-width: 1280px){.flex-xl-row{flex-direction:row !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column{flex-direction:column !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-justify-start{justify-content:flex-start !important}.flex-xl-justify-end{justify-content:flex-end !important}.flex-xl-justify-center{justify-content:center !important}.flex-xl-justify-between{justify-content:space-between !important}.flex-xl-justify-around{justify-content:space-around !important}.flex-xl-items-start{align-items:flex-start !important}.flex-xl-items-end{align-items:flex-end !important}.flex-xl-items-center{align-items:center !important}.flex-xl-items-baseline{align-items:baseline !important}.flex-xl-items-stretch{align-items:stretch !important}.flex-xl-content-start{align-content:flex-start !important}.flex-xl-content-end{align-content:flex-end !important}.flex-xl-content-center{align-content:center !important}.flex-xl-content-between{align-content:space-between !important}.flex-xl-content-around{align-content:space-around !important}.flex-xl-content-stretch{align-content:stretch !important}.flex-xl-1{flex:1 !important}.flex-xl-auto{flex:auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-self-auto{align-self:auto !important}.flex-xl-self-start{align-self:flex-start !important}.flex-xl-self-end{align-self:flex-end !important}.flex-xl-self-center{align-self:center !important}.flex-xl-self-baseline{align-self:baseline !important}.flex-xl-self-stretch{align-self:stretch !important}.flex-xl-order-1{order:1 !important}.flex-xl-order-2{order:2 !important}.flex-xl-order-none{order:inherit !important}}

.position-static{position:static !important}

.position-relative{position:relative !important}

.position-absolute{position:absolute !important}

.position-fixed{position:fixed !important}

.position-sticky{position:sticky !important}

@media(min-width: 544px){.position-sm-static{position:static !important}.position-sm-relative{position:relative !important}.position-sm-absolute{position:absolute !important}.position-sm-fixed{position:fixed !important}.position-sm-sticky{position:sticky !important}}

@media(min-width: 768px){.position-md-static{position:static !important}.position-md-relative{position:relative !important}.position-md-absolute{position:absolute !important}.position-md-fixed{position:fixed !important}.position-md-sticky{position:sticky !important}}

@media(min-width: 1012px){.position-lg-static{position:static !important}.position-lg-relative{position:relative !important}.position-lg-absolute{position:absolute !important}.position-lg-fixed{position:fixed !important}.position-lg-sticky{position:sticky !important}}

@media(min-width: 1280px){.position-xl-static{position:static !important}.position-xl-relative{position:relative !important}.position-xl-absolute{position:absolute !important}.position-xl-fixed{position:fixed !important}.position-xl-sticky{position:sticky !important}}

.top-0{top:0 !important}

.right-0{right:0 !important}

.bottom-0{bottom:0 !important}

.left-0{left:0 !important}

.top-auto{top:auto !important}

.right-auto{right:auto !important}

.bottom-auto{bottom:auto !important}

.left-auto{left:auto !important}

@media(min-width: 544px){.top-sm-0{top:0 !important}.right-sm-0{right:0 !important}.bottom-sm-0{bottom:0 !important}.left-sm-0{left:0 !important}.top-sm-auto{top:auto !important}.right-sm-auto{right:auto !important}.bottom-sm-auto{bottom:auto !important}.left-sm-auto{left:auto !important}}

@media(min-width: 768px){.top-md-0{top:0 !important}.right-md-0{right:0 !important}.bottom-md-0{bottom:0 !important}.left-md-0{left:0 !important}.top-md-auto{top:auto !important}.right-md-auto{right:auto !important}.bottom-md-auto{bottom:auto !important}.left-md-auto{left:auto !important}}

@media(min-width: 1012px){.top-lg-0{top:0 !important}.right-lg-0{right:0 !important}.bottom-lg-0{bottom:0 !important}.left-lg-0{left:0 !important}.top-lg-auto{top:auto !important}.right-lg-auto{right:auto !important}.bottom-lg-auto{bottom:auto !important}.left-lg-auto{left:auto !important}}

@media(min-width: 1280px){.top-xl-0{top:0 !important}.right-xl-0{right:0 !important}.bottom-xl-0{bottom:0 !important}.left-xl-0{left:0 !important}.top-xl-auto{top:auto !important}.right-xl-auto{right:auto !important}.bottom-xl-auto{bottom:auto !important}.left-xl-auto{left:auto !important}}

.v-align-middle{vertical-align:middle !important}

.v-align-top{vertical-align:top !important}

.v-align-bottom{vertical-align:bottom !important}

.v-align-text-top{vertical-align:text-top !important}

.v-align-text-bottom{vertical-align:text-bottom !important}

.v-align-baseline{vertical-align:baseline !important}

.overflow-visible{overflow:visible !important}

.overflow-x-visible{overflow-x:visible !important}

.overflow-y-visible{overflow-y:visible !important}

.overflow-hidden{overflow:hidden !important}

.overflow-x-hidden{overflow-x:hidden !important}

.overflow-y-hidden{overflow-y:hidden !important}

.overflow-auto{overflow:auto !important}

.overflow-x-auto{overflow-x:auto !important}

.overflow-y-auto{overflow-y:auto !important}

.overflow-scroll{overflow:scroll !important}

.overflow-x-scroll{overflow-x:scroll !important}

.overflow-y-scroll{overflow-y:scroll !important}

@media(min-width: 544px){.overflow-sm-visible{overflow:visible !important}.overflow-sm-x-visible{overflow-x:visible !important}.overflow-sm-y-visible{overflow-y:visible !important}.overflow-sm-hidden{overflow:hidden !important}.overflow-sm-x-hidden{overflow-x:hidden !important}.overflow-sm-y-hidden{overflow-y:hidden !important}.overflow-sm-auto{overflow:auto !important}.overflow-sm-x-auto{overflow-x:auto !important}.overflow-sm-y-auto{overflow-y:auto !important}.overflow-sm-scroll{overflow:scroll !important}.overflow-sm-x-scroll{overflow-x:scroll !important}.overflow-sm-y-scroll{overflow-y:scroll !important}}

@media(min-width: 768px){.overflow-md-visible{overflow:visible !important}.overflow-md-x-visible{overflow-x:visible !important}.overflow-md-y-visible{overflow-y:visible !important}.overflow-md-hidden{overflow:hidden !important}.overflow-md-x-hidden{overflow-x:hidden !important}.overflow-md-y-hidden{overflow-y:hidden !important}.overflow-md-auto{overflow:auto !important}.overflow-md-x-auto{overflow-x:auto !important}.overflow-md-y-auto{overflow-y:auto !important}.overflow-md-scroll{overflow:scroll !important}.overflow-md-x-scroll{overflow-x:scroll !important}.overflow-md-y-scroll{overflow-y:scroll !important}}

@media(min-width: 1012px){.overflow-lg-visible{overflow:visible !important}.overflow-lg-x-visible{overflow-x:visible !important}.overflow-lg-y-visible{overflow-y:visible !important}.overflow-lg-hidden{overflow:hidden !important}.overflow-lg-x-hidden{overflow-x:hidden !important}.overflow-lg-y-hidden{overflow-y:hidden !important}.overflow-lg-auto{overflow:auto !important}.overflow-lg-x-auto{overflow-x:auto !important}.overflow-lg-y-auto{overflow-y:auto !important}.overflow-lg-scroll{overflow:scroll !important}.overflow-lg-x-scroll{overflow-x:scroll !important}.overflow-lg-y-scroll{overflow-y:scroll !important}}

@media(min-width: 1280px){.overflow-xl-visible{overflow:visible !important}.overflow-xl-x-visible{overflow-x:visible !important}.overflow-xl-y-visible{overflow-y:visible !important}.overflow-xl-hidden{overflow:hidden !important}.overflow-xl-x-hidden{overflow-x:hidden !important}.overflow-xl-y-hidden{overflow-y:hidden !important}.overflow-xl-auto{overflow:auto !important}.overflow-xl-x-auto{overflow-x:auto !important}.overflow-xl-y-auto{overflow-y:auto !important}.overflow-xl-scroll{overflow:scroll !important}.overflow-xl-x-scroll{overflow-x:scroll !important}.overflow-xl-y-scroll{overflow-y:scroll !important}}

.clearfix::before{display:table;content:""}

.clearfix::after{display:table;clear:both;content:""}

.float-left{float:left !important}

.float-right{float:right !important}

.float-none{float:none !important}

@media(min-width: 544px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}

@media(min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}

@media(min-width: 1012px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}

@media(min-width: 1280px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}

.width-fit{max-width:100% !important}

.width-full{width:100% !important}

.width-comfortable{max-width:65ch !important}

.height-fit{max-height:100% !important}

.height-full{height:100% !important}

.min-width-0{min-width:0 !important}

.width-auto{width:auto !important}

.direction-rtl{direction:rtl !important}

.direction-ltr{direction:ltr !important}

@media(min-width: 544px){.width-sm-auto{width:auto !important}.direction-sm-rtl{direction:rtl !important}.direction-sm-ltr{direction:ltr !important}}

@media(min-width: 768px){.width-md-auto{width:auto !important}.direction-md-rtl{direction:rtl !important}.direction-md-ltr{direction:ltr !important}}

@media(min-width: 1012px){.width-lg-auto{width:auto !important}.direction-lg-rtl{direction:rtl !important}.direction-lg-ltr{direction:ltr !important}}

@media(min-width: 1280px){.width-xl-auto{width:auto !important}.direction-xl-rtl{direction:rtl !important}.direction-xl-ltr{direction:ltr !important}}

.m-0{margin:0 !important}

.mt-0{margin-top:0 !important}

.mb-0{margin-bottom:0 !important}

.mr-0{margin-right:0 !important}

.ml-0{margin-left:0 !important}

.mx-0{margin-right:0 !important;margin-left:0 !important}

.my-0{margin-top:0 !important;margin-bottom:0 !important}

.m-1{margin:var(--base-size-4, 4px) !important}

.mt-1{margin-top:var(--base-size-4, 4px) !important}

.mb-1{margin-bottom:var(--base-size-4, 4px) !important}

.mr-1{margin-right:var(--base-size-4, 4px) !important}

.ml-1{margin-left:var(--base-size-4, 4px) !important}

.mt-n1{margin-top:calc(-1*var(--base-size-4, 4px)) !important}

.mb-n1{margin-bottom:calc(-1*var(--base-size-4, 4px)) !important}

.mr-n1{margin-right:calc(-1*var(--base-size-4, 4px)) !important}

.ml-n1{margin-left:calc(-1*var(--base-size-4, 4px)) !important}

.mx-1{margin-right:var(--base-size-4, 4px) !important;margin-left:var(--base-size-4, 4px) !important}

.my-1{margin-top:var(--base-size-4, 4px) !important;margin-bottom:var(--base-size-4, 4px) !important}

.m-2{margin:var(--base-size-8, 8px) !important}

.mt-2{margin-top:var(--base-size-8, 8px) !important}

.mb-2{margin-bottom:var(--base-size-8, 8px) !important}

.mr-2{margin-right:var(--base-size-8, 8px) !important}

.ml-2{margin-left:var(--base-size-8, 8px) !important}

.mt-n2{margin-top:calc(-1*var(--base-size-8, 8px)) !important}

.mb-n2{margin-bottom:calc(-1*var(--base-size-8, 8px)) !important}

.mr-n2{margin-right:calc(-1*var(--base-size-8, 8px)) !important}

.ml-n2{margin-left:calc(-1*var(--base-size-8, 8px)) !important}

.mx-2{margin-right:var(--base-size-8, 8px) !important;margin-left:var(--base-size-8, 8px) !important}

.my-2{margin-top:var(--base-size-8, 8px) !important;margin-bottom:var(--base-size-8, 8px) !important}

.m-3{margin:var(--base-size-16, 16px) !important}

.mt-3{margin-top:var(--base-size-16, 16px) !important}

.mb-3{margin-bottom:var(--base-size-16, 16px) !important}

.mr-3{margin-right:var(--base-size-16, 16px) !important}

.ml-3{margin-left:var(--base-size-16, 16px) !important}

.mt-n3{margin-top:calc(-1*var(--base-size-16, 16px)) !important}

.mb-n3{margin-bottom:calc(-1*var(--base-size-16, 16px)) !important}

.mr-n3{margin-right:calc(-1*var(--base-size-16, 16px)) !important}

.ml-n3{margin-left:calc(-1*var(--base-size-16, 16px)) !important}

.mx-3{margin-right:var(--base-size-16, 16px) !important;margin-left:var(--base-size-16, 16px) !important}

.my-3{margin-top:var(--base-size-16, 16px) !important;margin-bottom:var(--base-size-16, 16px) !important}

.m-4{margin:var(--base-size-24, 24px) !important}

.mt-4{margin-top:var(--base-size-24, 24px) !important}

.mb-4{margin-bottom:var(--base-size-24, 24px) !important}

.mr-4{margin-right:var(--base-size-24, 24px) !important}

.ml-4{margin-left:var(--base-size-24, 24px) !important}

.mt-n4{margin-top:calc(-1*var(--base-size-24, 24px)) !important}

.mb-n4{margin-bottom:calc(-1*var(--base-size-24, 24px)) !important}

.mr-n4{margin-right:calc(-1*var(--base-size-24, 24px)) !important}

.ml-n4{margin-left:calc(-1*var(--base-size-24, 24px)) !important}

.mx-4{margin-right:var(--base-size-24, 24px) !important;margin-left:var(--base-size-24, 24px) !important}

.my-4{margin-top:var(--base-size-24, 24px) !important;margin-bottom:var(--base-size-24, 24px) !important}

.m-5{margin:var(--base-size-32, 32px) !important}

.mt-5{margin-top:var(--base-size-32, 32px) !important}

.mb-5{margin-bottom:var(--base-size-32, 32px) !important}

.mr-5{margin-right:var(--base-size-32, 32px) !important}

.ml-5{margin-left:var(--base-size-32, 32px) !important}

.mt-n5{margin-top:calc(-1*var(--base-size-32, 32px)) !important}

.mb-n5{margin-bottom:calc(-1*var(--base-size-32, 32px)) !important}

.mr-n5{margin-right:calc(-1*var(--base-size-32, 32px)) !important}

.ml-n5{margin-left:calc(-1*var(--base-size-32, 32px)) !important}

.mx-5{margin-right:var(--base-size-32, 32px) !important;margin-left:var(--base-size-32, 32px) !important}

.my-5{margin-top:var(--base-size-32, 32px) !important;margin-bottom:var(--base-size-32, 32px) !important}

.m-6{margin:var(--base-size-40, 40px) !important}

.mt-6{margin-top:var(--base-size-40, 40px) !important}

.mb-6{margin-bottom:var(--base-size-40, 40px) !important}

.mr-6{margin-right:var(--base-size-40, 40px) !important}

.ml-6{margin-left:var(--base-size-40, 40px) !important}

.mt-n6{margin-top:calc(-1*var(--base-size-40, 40px)) !important}

.mb-n6{margin-bottom:calc(-1*var(--base-size-40, 40px)) !important}

.mr-n6{margin-right:calc(-1*var(--base-size-40, 40px)) !important}

.ml-n6{margin-left:calc(-1*var(--base-size-40, 40px)) !important}

.mx-6{margin-right:var(--base-size-40, 40px) !important;margin-left:var(--base-size-40, 40px) !important}

.my-6{margin-top:var(--base-size-40, 40px) !important;margin-bottom:var(--base-size-40, 40px) !important}

.mt-7{margin-top:var(--base-size-48, 48px) !important}

.mb-7{margin-bottom:var(--base-size-48, 48px) !important}

.mt-n7{margin-top:calc(-1*var(--base-size-48, 48px)) !important}

.mb-n7{margin-bottom:calc(-1*var(--base-size-48, 48px)) !important}

.my-7{margin-top:var(--base-size-48, 48px) !important;margin-bottom:var(--base-size-48, 48px) !important}

.mt-8{margin-top:var(--base-size-64, 64px) !important}

.mb-8{margin-bottom:var(--base-size-64, 64px) !important}

.mt-n8{margin-top:calc(-1*var(--base-size-64, 64px)) !important}

.mb-n8{margin-bottom:calc(-1*var(--base-size-64, 64px)) !important}

.my-8{margin-top:var(--base-size-64, 64px) !important;margin-bottom:var(--base-size-64, 64px) !important}

.mt-9{margin-top:var(--base-size-80, 80px) !important}

.mb-9{margin-bottom:var(--base-size-80, 80px) !important}

.mt-n9{margin-top:calc(-1*var(--base-size-80, 80px)) !important}

.mb-n9{margin-bottom:calc(-1*var(--base-size-80, 80px)) !important}

.my-9{margin-top:var(--base-size-80, 80px) !important;margin-bottom:var(--base-size-80, 80px) !important}

.mt-10{margin-top:var(--base-size-96, 96px) !important}

.mb-10{margin-bottom:var(--base-size-96, 96px) !important}

.mt-n10{margin-top:calc(-1*var(--base-size-96, 96px)) !important}

.mb-n10{margin-bottom:calc(-1*var(--base-size-96, 96px)) !important}

.my-10{margin-top:var(--base-size-96, 96px) !important;margin-bottom:var(--base-size-96, 96px) !important}

.mt-11{margin-top:var(--base-size-112, 112px) !important}

.mb-11{margin-bottom:var(--base-size-112, 112px) !important}

.mt-n11{margin-top:calc(-1*var(--base-size-112, 112px)) !important}

.mb-n11{margin-bottom:calc(-1*var(--base-size-112, 112px)) !important}

.my-11{margin-top:var(--base-size-112, 112px) !important;margin-bottom:var(--base-size-112, 112px) !important}

.mt-12{margin-top:var(--base-size-128, 128px) !important}

.mb-12{margin-bottom:var(--base-size-128, 128px) !important}

.mt-n12{margin-top:calc(-1*var(--base-size-128, 128px)) !important}

.mb-n12{margin-bottom:calc(-1*var(--base-size-128, 128px)) !important}

.my-12{margin-top:var(--base-size-128, 128px) !important;margin-bottom:var(--base-size-128, 128px) !important}

.mx-auto{margin-right:auto !important;margin-left:auto !important}

@media(min-width: 544px){.m-sm-0{margin:0 !important}.mt-sm-0{margin-top:0 !important}.mb-sm-0{margin-bottom:0 !important}.mr-sm-0{margin-right:0 !important}.ml-sm-0{margin-left:0 !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.m-sm-1{margin:var(--base-size-4, 4px) !important}.mt-sm-1{margin-top:var(--base-size-4, 4px) !important}.mb-sm-1{margin-bottom:var(--base-size-4, 4px) !important}.mr-sm-1{margin-right:var(--base-size-4, 4px) !important}.ml-sm-1{margin-left:var(--base-size-4, 4px) !important}.mt-sm-n1{margin-top:calc(-1*var(--base-size-4, 4px)) !important}.mb-sm-n1{margin-bottom:calc(-1*var(--base-size-4, 4px)) !important}.mr-sm-n1{margin-right:calc(-1*var(--base-size-4, 4px)) !important}.ml-sm-n1{margin-left:calc(-1*var(--base-size-4, 4px)) !important}.mx-sm-1{margin-right:var(--base-size-4, 4px) !important;margin-left:var(--base-size-4, 4px) !important}.my-sm-1{margin-top:var(--base-size-4, 4px) !important;margin-bottom:var(--base-size-4, 4px) !important}.m-sm-2{margin:var(--base-size-8, 8px) !important}.mt-sm-2{margin-top:var(--base-size-8, 8px) !important}.mb-sm-2{margin-bottom:var(--base-size-8, 8px) !important}.mr-sm-2{margin-right:var(--base-size-8, 8px) !important}.ml-sm-2{margin-left:var(--base-size-8, 8px) !important}.mt-sm-n2{margin-top:calc(-1*var(--base-size-8, 8px)) !important}.mb-sm-n2{margin-bottom:calc(-1*var(--base-size-8, 8px)) !important}.mr-sm-n2{margin-right:calc(-1*var(--base-size-8, 8px)) !important}.ml-sm-n2{margin-left:calc(-1*var(--base-size-8, 8px)) !important}.mx-sm-2{margin-right:var(--base-size-8, 8px) !important;margin-left:var(--base-size-8, 8px) !important}.my-sm-2{margin-top:var(--base-size-8, 8px) !important;margin-bottom:var(--base-size-8, 8px) !important}.m-sm-3{margin:var(--base-size-16, 16px) !important}.mt-sm-3{margin-top:var(--base-size-16, 16px) !important}.mb-sm-3{margin-bottom:var(--base-size-16, 16px) !important}.mr-sm-3{margin-right:var(--base-size-16, 16px) !important}.ml-sm-3{margin-left:var(--base-size-16, 16px) !important}.mt-sm-n3{margin-top:calc(-1*var(--base-size-16, 16px)) !important}.mb-sm-n3{margin-bottom:calc(-1*var(--base-size-16, 16px)) !important}.mr-sm-n3{margin-right:calc(-1*var(--base-size-16, 16px)) !important}.ml-sm-n3{margin-left:calc(-1*var(--base-size-16, 16px)) !important}.mx-sm-3{margin-right:var(--base-size-16, 16px) !important;margin-left:var(--base-size-16, 16px) !important}.my-sm-3{margin-top:var(--base-size-16, 16px) !important;margin-bottom:var(--base-size-16, 16px) !important}.m-sm-4{margin:var(--base-size-24, 24px) !important}.mt-sm-4{margin-top:var(--base-size-24, 24px) !important}.mb-sm-4{margin-bottom:var(--base-size-24, 24px) !important}.mr-sm-4{margin-right:var(--base-size-24, 24px) !important}.ml-sm-4{margin-left:var(--base-size-24, 24px) !important}.mt-sm-n4{margin-top:calc(-1*var(--base-size-24, 24px)) !important}.mb-sm-n4{margin-bottom:calc(-1*var(--base-size-24, 24px)) !important}.mr-sm-n4{margin-right:calc(-1*var(--base-size-24, 24px)) !important}.ml-sm-n4{margin-left:calc(-1*var(--base-size-24, 24px)) !important}.mx-sm-4{margin-right:var(--base-size-24, 24px) !important;margin-left:var(--base-size-24, 24px) !important}.my-sm-4{margin-top:var(--base-size-24, 24px) !important;margin-bottom:var(--base-size-24, 24px) !important}.m-sm-5{margin:var(--base-size-32, 32px) !important}.mt-sm-5{margin-top:var(--base-size-32, 32px) !important}.mb-sm-5{margin-bottom:var(--base-size-32, 32px) !important}.mr-sm-5{margin-right:var(--base-size-32, 32px) !important}.ml-sm-5{margin-left:var(--base-size-32, 32px) !important}.mt-sm-n5{margin-top:calc(-1*var(--base-size-32, 32px)) !important}.mb-sm-n5{margin-bottom:calc(-1*var(--base-size-32, 32px)) !important}.mr-sm-n5{margin-right:calc(-1*var(--base-size-32, 32px)) !important}.ml-sm-n5{margin-left:calc(-1*var(--base-size-32, 32px)) !important}.mx-sm-5{margin-right:var(--base-size-32, 32px) !important;margin-left:var(--base-size-32, 32px) !important}.my-sm-5{margin-top:var(--base-size-32, 32px) !important;margin-bottom:var(--base-size-32, 32px) !important}.m-sm-6{margin:var(--base-size-40, 40px) !important}.mt-sm-6{margin-top:var(--base-size-40, 40px) !important}.mb-sm-6{margin-bottom:var(--base-size-40, 40px) !important}.mr-sm-6{margin-right:var(--base-size-40, 40px) !important}.ml-sm-6{margin-left:var(--base-size-40, 40px) !important}.mt-sm-n6{margin-top:calc(-1*var(--base-size-40, 40px)) !important}.mb-sm-n6{margin-bottom:calc(-1*var(--base-size-40, 40px)) !important}.mr-sm-n6{margin-right:calc(-1*var(--base-size-40, 40px)) !important}.ml-sm-n6{margin-left:calc(-1*var(--base-size-40, 40px)) !important}.mx-sm-6{margin-right:var(--base-size-40, 40px) !important;margin-left:var(--base-size-40, 40px) !important}.my-sm-6{margin-top:var(--base-size-40, 40px) !important;margin-bottom:var(--base-size-40, 40px) !important}.mt-sm-7{margin-top:var(--base-size-48, 48px) !important}.mb-sm-7{margin-bottom:var(--base-size-48, 48px) !important}.mt-sm-n7{margin-top:calc(-1*var(--base-size-48, 48px)) !important}.mb-sm-n7{margin-bottom:calc(-1*var(--base-size-48, 48px)) !important}.my-sm-7{margin-top:var(--base-size-48, 48px) !important;margin-bottom:var(--base-size-48, 48px) !important}.mt-sm-8{margin-top:var(--base-size-64, 64px) !important}.mb-sm-8{margin-bottom:var(--base-size-64, 64px) !important}.mt-sm-n8{margin-top:calc(-1*var(--base-size-64, 64px)) !important}.mb-sm-n8{margin-bottom:calc(-1*var(--base-size-64, 64px)) !important}.my-sm-8{margin-top:var(--base-size-64, 64px) !important;margin-bottom:var(--base-size-64, 64px) !important}.mt-sm-9{margin-top:var(--base-size-80, 80px) !important}.mb-sm-9{margin-bottom:var(--base-size-80, 80px) !important}.mt-sm-n9{margin-top:calc(-1*var(--base-size-80, 80px)) !important}.mb-sm-n9{margin-bottom:calc(-1*var(--base-size-80, 80px)) !important}.my-sm-9{margin-top:var(--base-size-80, 80px) !important;margin-bottom:var(--base-size-80, 80px) !important}.mt-sm-10{margin-top:var(--base-size-96, 96px) !important}.mb-sm-10{margin-bottom:var(--base-size-96, 96px) !important}.mt-sm-n10{margin-top:calc(-1*var(--base-size-96, 96px)) !important}.mb-sm-n10{margin-bottom:calc(-1*var(--base-size-96, 96px)) !important}.my-sm-10{margin-top:var(--base-size-96, 96px) !important;margin-bottom:var(--base-size-96, 96px) !important}.mt-sm-11{margin-top:var(--base-size-112, 112px) !important}.mb-sm-11{margin-bottom:var(--base-size-112, 112px) !important}.mt-sm-n11{margin-top:calc(-1*var(--base-size-112, 112px)) !important}.mb-sm-n11{margin-bottom:calc(-1*var(--base-size-112, 112px)) !important}.my-sm-11{margin-top:var(--base-size-112, 112px) !important;margin-bottom:var(--base-size-112, 112px) !important}.mt-sm-12{margin-top:var(--base-size-128, 128px) !important}.mb-sm-12{margin-bottom:var(--base-size-128, 128px) !important}.mt-sm-n12{margin-top:calc(-1*var(--base-size-128, 128px)) !important}.mb-sm-n12{margin-bottom:calc(-1*var(--base-size-128, 128px)) !important}.my-sm-12{margin-top:var(--base-size-128, 128px) !important;margin-bottom:var(--base-size-128, 128px) !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}}

@media(min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mb-md-0{margin-bottom:0 !important}.mr-md-0{margin-right:0 !important}.ml-md-0{margin-left:0 !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.m-md-1{margin:var(--base-size-4, 4px) !important}.mt-md-1{margin-top:var(--base-size-4, 4px) !important}.mb-md-1{margin-bottom:var(--base-size-4, 4px) !important}.mr-md-1{margin-right:var(--base-size-4, 4px) !important}.ml-md-1{margin-left:var(--base-size-4, 4px) !important}.mt-md-n1{margin-top:calc(-1*var(--base-size-4, 4px)) !important}.mb-md-n1{margin-bottom:calc(-1*var(--base-size-4, 4px)) !important}.mr-md-n1{margin-right:calc(-1*var(--base-size-4, 4px)) !important}.ml-md-n1{margin-left:calc(-1*var(--base-size-4, 4px)) !important}.mx-md-1{margin-right:var(--base-size-4, 4px) !important;margin-left:var(--base-size-4, 4px) !important}.my-md-1{margin-top:var(--base-size-4, 4px) !important;margin-bottom:var(--base-size-4, 4px) !important}.m-md-2{margin:var(--base-size-8, 8px) !important}.mt-md-2{margin-top:var(--base-size-8, 8px) !important}.mb-md-2{margin-bottom:var(--base-size-8, 8px) !important}.mr-md-2{margin-right:var(--base-size-8, 8px) !important}.ml-md-2{margin-left:var(--base-size-8, 8px) !important}.mt-md-n2{margin-top:calc(-1*var(--base-size-8, 8px)) !important}.mb-md-n2{margin-bottom:calc(-1*var(--base-size-8, 8px)) !important}.mr-md-n2{margin-right:calc(-1*var(--base-size-8, 8px)) !important}.ml-md-n2{margin-left:calc(-1*var(--base-size-8, 8px)) !important}.mx-md-2{margin-right:var(--base-size-8, 8px) !important;margin-left:var(--base-size-8, 8px) !important}.my-md-2{margin-top:var(--base-size-8, 8px) !important;margin-bottom:var(--base-size-8, 8px) !important}.m-md-3{margin:var(--base-size-16, 16px) !important}.mt-md-3{margin-top:var(--base-size-16, 16px) !important}.mb-md-3{margin-bottom:var(--base-size-16, 16px) !important}.mr-md-3{margin-right:var(--base-size-16, 16px) !important}.ml-md-3{margin-left:var(--base-size-16, 16px) !important}.mt-md-n3{margin-top:calc(-1*var(--base-size-16, 16px)) !important}.mb-md-n3{margin-bottom:calc(-1*var(--base-size-16, 16px)) !important}.mr-md-n3{margin-right:calc(-1*var(--base-size-16, 16px)) !important}.ml-md-n3{margin-left:calc(-1*var(--base-size-16, 16px)) !important}.mx-md-3{margin-right:var(--base-size-16, 16px) !important;margin-left:var(--base-size-16, 16px) !important}.my-md-3{margin-top:var(--base-size-16, 16px) !important;margin-bottom:var(--base-size-16, 16px) !important}.m-md-4{margin:var(--base-size-24, 24px) !important}.mt-md-4{margin-top:var(--base-size-24, 24px) !important}.mb-md-4{margin-bottom:var(--base-size-24, 24px) !important}.mr-md-4{margin-right:var(--base-size-24, 24px) !important}.ml-md-4{margin-left:var(--base-size-24, 24px) !important}.mt-md-n4{margin-top:calc(-1*var(--base-size-24, 24px)) !important}.mb-md-n4{margin-bottom:calc(-1*var(--base-size-24, 24px)) !important}.mr-md-n4{margin-right:calc(-1*var(--base-size-24, 24px)) !important}.ml-md-n4{margin-left:calc(-1*var(--base-size-24, 24px)) !important}.mx-md-4{margin-right:var(--base-size-24, 24px) !important;margin-left:var(--base-size-24, 24px) !important}.my-md-4{margin-top:var(--base-size-24, 24px) !important;margin-bottom:var(--base-size-24, 24px) !important}.m-md-5{margin:var(--base-size-32, 32px) !important}.mt-md-5{margin-top:var(--base-size-32, 32px) !important}.mb-md-5{margin-bottom:var(--base-size-32, 32px) !important}.mr-md-5{margin-right:var(--base-size-32, 32px) !important}.ml-md-5{margin-left:var(--base-size-32, 32px) !important}.mt-md-n5{margin-top:calc(-1*var(--base-size-32, 32px)) !important}.mb-md-n5{margin-bottom:calc(-1*var(--base-size-32, 32px)) !important}.mr-md-n5{margin-right:calc(-1*var(--base-size-32, 32px)) !important}.ml-md-n5{margin-left:calc(-1*var(--base-size-32, 32px)) !important}.mx-md-5{margin-right:var(--base-size-32, 32px) !important;margin-left:var(--base-size-32, 32px) !important}.my-md-5{margin-top:var(--base-size-32, 32px) !important;margin-bottom:var(--base-size-32, 32px) !important}.m-md-6{margin:var(--base-size-40, 40px) !important}.mt-md-6{margin-top:var(--base-size-40, 40px) !important}.mb-md-6{margin-bottom:var(--base-size-40, 40px) !important}.mr-md-6{margin-right:var(--base-size-40, 40px) !important}.ml-md-6{margin-left:var(--base-size-40, 40px) !important}.mt-md-n6{margin-top:calc(-1*var(--base-size-40, 40px)) !important}.mb-md-n6{margin-bottom:calc(-1*var(--base-size-40, 40px)) !important}.mr-md-n6{margin-right:calc(-1*var(--base-size-40, 40px)) !important}.ml-md-n6{margin-left:calc(-1*var(--base-size-40, 40px)) !important}.mx-md-6{margin-right:var(--base-size-40, 40px) !important;margin-left:var(--base-size-40, 40px) !important}.my-md-6{margin-top:var(--base-size-40, 40px) !important;margin-bottom:var(--base-size-40, 40px) !important}.mt-md-7{margin-top:var(--base-size-48, 48px) !important}.mb-md-7{margin-bottom:var(--base-size-48, 48px) !important}.mt-md-n7{margin-top:calc(-1*var(--base-size-48, 48px)) !important}.mb-md-n7{margin-bottom:calc(-1*var(--base-size-48, 48px)) !important}.my-md-7{margin-top:var(--base-size-48, 48px) !important;margin-bottom:var(--base-size-48, 48px) !important}.mt-md-8{margin-top:var(--base-size-64, 64px) !important}.mb-md-8{margin-bottom:var(--base-size-64, 64px) !important}.mt-md-n8{margin-top:calc(-1*var(--base-size-64, 64px)) !important}.mb-md-n8{margin-bottom:calc(-1*var(--base-size-64, 64px)) !important}.my-md-8{margin-top:var(--base-size-64, 64px) !important;margin-bottom:var(--base-size-64, 64px) !important}.mt-md-9{margin-top:var(--base-size-80, 80px) !important}.mb-md-9{margin-bottom:var(--base-size-80, 80px) !important}.mt-md-n9{margin-top:calc(-1*var(--base-size-80, 80px)) !important}.mb-md-n9{margin-bottom:calc(-1*var(--base-size-80, 80px)) !important}.my-md-9{margin-top:var(--base-size-80, 80px) !important;margin-bottom:var(--base-size-80, 80px) !important}.mt-md-10{margin-top:var(--base-size-96, 96px) !important}.mb-md-10{margin-bottom:var(--base-size-96, 96px) !important}.mt-md-n10{margin-top:calc(-1*var(--base-size-96, 96px)) !important}.mb-md-n10{margin-bottom:calc(-1*var(--base-size-96, 96px)) !important}.my-md-10{margin-top:var(--base-size-96, 96px) !important;margin-bottom:var(--base-size-96, 96px) !important}.mt-md-11{margin-top:var(--base-size-112, 112px) !important}.mb-md-11{margin-bottom:var(--base-size-112, 112px) !important}.mt-md-n11{margin-top:calc(-1*var(--base-size-112, 112px)) !important}.mb-md-n11{margin-bottom:calc(-1*var(--base-size-112, 112px)) !important}.my-md-11{margin-top:var(--base-size-112, 112px) !important;margin-bottom:var(--base-size-112, 112px) !important}.mt-md-12{margin-top:var(--base-size-128, 128px) !important}.mb-md-12{margin-bottom:var(--base-size-128, 128px) !important}.mt-md-n12{margin-top:calc(-1*var(--base-size-128, 128px)) !important}.mb-md-n12{margin-bottom:calc(-1*var(--base-size-128, 128px)) !important}.my-md-12{margin-top:var(--base-size-128, 128px) !important;margin-bottom:var(--base-size-128, 128px) !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}}

@media(min-width: 1012px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mb-lg-0{margin-bottom:0 !important}.mr-lg-0{margin-right:0 !important}.ml-lg-0{margin-left:0 !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.m-lg-1{margin:var(--base-size-4, 4px) !important}.mt-lg-1{margin-top:var(--base-size-4, 4px) !important}.mb-lg-1{margin-bottom:var(--base-size-4, 4px) !important}.mr-lg-1{margin-right:var(--base-size-4, 4px) !important}.ml-lg-1{margin-left:var(--base-size-4, 4px) !important}.mt-lg-n1{margin-top:calc(-1*var(--base-size-4, 4px)) !important}.mb-lg-n1{margin-bottom:calc(-1*var(--base-size-4, 4px)) !important}.mr-lg-n1{margin-right:calc(-1*var(--base-size-4, 4px)) !important}.ml-lg-n1{margin-left:calc(-1*var(--base-size-4, 4px)) !important}.mx-lg-1{margin-right:var(--base-size-4, 4px) !important;margin-left:var(--base-size-4, 4px) !important}.my-lg-1{margin-top:var(--base-size-4, 4px) !important;margin-bottom:var(--base-size-4, 4px) !important}.m-lg-2{margin:var(--base-size-8, 8px) !important}.mt-lg-2{margin-top:var(--base-size-8, 8px) !important}.mb-lg-2{margin-bottom:var(--base-size-8, 8px) !important}.mr-lg-2{margin-right:var(--base-size-8, 8px) !important}.ml-lg-2{margin-left:var(--base-size-8, 8px) !important}.mt-lg-n2{margin-top:calc(-1*var(--base-size-8, 8px)) !important}.mb-lg-n2{margin-bottom:calc(-1*var(--base-size-8, 8px)) !important}.mr-lg-n2{margin-right:calc(-1*var(--base-size-8, 8px)) !important}.ml-lg-n2{margin-left:calc(-1*var(--base-size-8, 8px)) !important}.mx-lg-2{margin-right:var(--base-size-8, 8px) !important;margin-left:var(--base-size-8, 8px) !important}.my-lg-2{margin-top:var(--base-size-8, 8px) !important;margin-bottom:var(--base-size-8, 8px) !important}.m-lg-3{margin:var(--base-size-16, 16px) !important}.mt-lg-3{margin-top:var(--base-size-16, 16px) !important}.mb-lg-3{margin-bottom:var(--base-size-16, 16px) !important}.mr-lg-3{margin-right:var(--base-size-16, 16px) !important}.ml-lg-3{margin-left:var(--base-size-16, 16px) !important}.mt-lg-n3{margin-top:calc(-1*var(--base-size-16, 16px)) !important}.mb-lg-n3{margin-bottom:calc(-1*var(--base-size-16, 16px)) !important}.mr-lg-n3{margin-right:calc(-1*var(--base-size-16, 16px)) !important}.ml-lg-n3{margin-left:calc(-1*var(--base-size-16, 16px)) !important}.mx-lg-3{margin-right:var(--base-size-16, 16px) !important;margin-left:var(--base-size-16, 16px) !important}.my-lg-3{margin-top:var(--base-size-16, 16px) !important;margin-bottom:var(--base-size-16, 16px) !important}.m-lg-4{margin:var(--base-size-24, 24px) !important}.mt-lg-4{margin-top:var(--base-size-24, 24px) !important}.mb-lg-4{margin-bottom:var(--base-size-24, 24px) !important}.mr-lg-4{margin-right:var(--base-size-24, 24px) !important}.ml-lg-4{margin-left:var(--base-size-24, 24px) !important}.mt-lg-n4{margin-top:calc(-1*var(--base-size-24, 24px)) !important}.mb-lg-n4{margin-bottom:calc(-1*var(--base-size-24, 24px)) !important}.mr-lg-n4{margin-right:calc(-1*var(--base-size-24, 24px)) !important}.ml-lg-n4{margin-left:calc(-1*var(--base-size-24, 24px)) !important}.mx-lg-4{margin-right:var(--base-size-24, 24px) !important;margin-left:var(--base-size-24, 24px) !important}.my-lg-4{margin-top:var(--base-size-24, 24px) !important;margin-bottom:var(--base-size-24, 24px) !important}.m-lg-5{margin:var(--base-size-32, 32px) !important}.mt-lg-5{margin-top:var(--base-size-32, 32px) !important}.mb-lg-5{margin-bottom:var(--base-size-32, 32px) !important}.mr-lg-5{margin-right:var(--base-size-32, 32px) !important}.ml-lg-5{margin-left:var(--base-size-32, 32px) !important}.mt-lg-n5{margin-top:calc(-1*var(--base-size-32, 32px)) !important}.mb-lg-n5{margin-bottom:calc(-1*var(--base-size-32, 32px)) !important}.mr-lg-n5{margin-right:calc(-1*var(--base-size-32, 32px)) !important}.ml-lg-n5{margin-left:calc(-1*var(--base-size-32, 32px)) !important}.mx-lg-5{margin-right:var(--base-size-32, 32px) !important;margin-left:var(--base-size-32, 32px) !important}.my-lg-5{margin-top:var(--base-size-32, 32px) !important;margin-bottom:var(--base-size-32, 32px) !important}.m-lg-6{margin:var(--base-size-40, 40px) !important}.mt-lg-6{margin-top:var(--base-size-40, 40px) !important}.mb-lg-6{margin-bottom:var(--base-size-40, 40px) !important}.mr-lg-6{margin-right:var(--base-size-40, 40px) !important}.ml-lg-6{margin-left:var(--base-size-40, 40px) !important}.mt-lg-n6{margin-top:calc(-1*var(--base-size-40, 40px)) !important}.mb-lg-n6{margin-bottom:calc(-1*var(--base-size-40, 40px)) !important}.mr-lg-n6{margin-right:calc(-1*var(--base-size-40, 40px)) !important}.ml-lg-n6{margin-left:calc(-1*var(--base-size-40, 40px)) !important}.mx-lg-6{margin-right:var(--base-size-40, 40px) !important;margin-left:var(--base-size-40, 40px) !important}.my-lg-6{margin-top:var(--base-size-40, 40px) !important;margin-bottom:var(--base-size-40, 40px) !important}.mt-lg-7{margin-top:var(--base-size-48, 48px) !important}.mb-lg-7{margin-bottom:var(--base-size-48, 48px) !important}.mt-lg-n7{margin-top:calc(-1*var(--base-size-48, 48px)) !important}.mb-lg-n7{margin-bottom:calc(-1*var(--base-size-48, 48px)) !important}.my-lg-7{margin-top:var(--base-size-48, 48px) !important;margin-bottom:var(--base-size-48, 48px) !important}.mt-lg-8{margin-top:var(--base-size-64, 64px) !important}.mb-lg-8{margin-bottom:var(--base-size-64, 64px) !important}.mt-lg-n8{margin-top:calc(-1*var(--base-size-64, 64px)) !important}.mb-lg-n8{margin-bottom:calc(-1*var(--base-size-64, 64px)) !important}.my-lg-8{margin-top:var(--base-size-64, 64px) !important;margin-bottom:var(--base-size-64, 64px) !important}.mt-lg-9{margin-top:var(--base-size-80, 80px) !important}.mb-lg-9{margin-bottom:var(--base-size-80, 80px) !important}.mt-lg-n9{margin-top:calc(-1*var(--base-size-80, 80px)) !important}.mb-lg-n9{margin-bottom:calc(-1*var(--base-size-80, 80px)) !important}.my-lg-9{margin-top:var(--base-size-80, 80px) !important;margin-bottom:var(--base-size-80, 80px) !important}.mt-lg-10{margin-top:var(--base-size-96, 96px) !important}.mb-lg-10{margin-bottom:var(--base-size-96, 96px) !important}.mt-lg-n10{margin-top:calc(-1*var(--base-size-96, 96px)) !important}.mb-lg-n10{margin-bottom:calc(-1*var(--base-size-96, 96px)) !important}.my-lg-10{margin-top:var(--base-size-96, 96px) !important;margin-bottom:var(--base-size-96, 96px) !important}.mt-lg-11{margin-top:var(--base-size-112, 112px) !important}.mb-lg-11{margin-bottom:var(--base-size-112, 112px) !important}.mt-lg-n11{margin-top:calc(-1*var(--base-size-112, 112px)) !important}.mb-lg-n11{margin-bottom:calc(-1*var(--base-size-112, 112px)) !important}.my-lg-11{margin-top:var(--base-size-112, 112px) !important;margin-bottom:var(--base-size-112, 112px) !important}.mt-lg-12{margin-top:var(--base-size-128, 128px) !important}.mb-lg-12{margin-bottom:var(--base-size-128, 128px) !important}.mt-lg-n12{margin-top:calc(-1*var(--base-size-128, 128px)) !important}.mb-lg-n12{margin-bottom:calc(-1*var(--base-size-128, 128px)) !important}.my-lg-12{margin-top:var(--base-size-128, 128px) !important;margin-bottom:var(--base-size-128, 128px) !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}}

@media(min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mb-xl-0{margin-bottom:0 !important}.mr-xl-0{margin-right:0 !important}.ml-xl-0{margin-left:0 !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.m-xl-1{margin:var(--base-size-4, 4px) !important}.mt-xl-1{margin-top:var(--base-size-4, 4px) !important}.mb-xl-1{margin-bottom:var(--base-size-4, 4px) !important}.mr-xl-1{margin-right:var(--base-size-4, 4px) !important}.ml-xl-1{margin-left:var(--base-size-4, 4px) !important}.mt-xl-n1{margin-top:calc(-1*var(--base-size-4, 4px)) !important}.mb-xl-n1{margin-bottom:calc(-1*var(--base-size-4, 4px)) !important}.mr-xl-n1{margin-right:calc(-1*var(--base-size-4, 4px)) !important}.ml-xl-n1{margin-left:calc(-1*var(--base-size-4, 4px)) !important}.mx-xl-1{margin-right:var(--base-size-4, 4px) !important;margin-left:var(--base-size-4, 4px) !important}.my-xl-1{margin-top:var(--base-size-4, 4px) !important;margin-bottom:var(--base-size-4, 4px) !important}.m-xl-2{margin:var(--base-size-8, 8px) !important}.mt-xl-2{margin-top:var(--base-size-8, 8px) !important}.mb-xl-2{margin-bottom:var(--base-size-8, 8px) !important}.mr-xl-2{margin-right:var(--base-size-8, 8px) !important}.ml-xl-2{margin-left:var(--base-size-8, 8px) !important}.mt-xl-n2{margin-top:calc(-1*var(--base-size-8, 8px)) !important}.mb-xl-n2{margin-bottom:calc(-1*var(--base-size-8, 8px)) !important}.mr-xl-n2{margin-right:calc(-1*var(--base-size-8, 8px)) !important}.ml-xl-n2{margin-left:calc(-1*var(--base-size-8, 8px)) !important}.mx-xl-2{margin-right:var(--base-size-8, 8px) !important;margin-left:var(--base-size-8, 8px) !important}.my-xl-2{margin-top:var(--base-size-8, 8px) !important;margin-bottom:var(--base-size-8, 8px) !important}.m-xl-3{margin:var(--base-size-16, 16px) !important}.mt-xl-3{margin-top:var(--base-size-16, 16px) !important}.mb-xl-3{margin-bottom:var(--base-size-16, 16px) !important}.mr-xl-3{margin-right:var(--base-size-16, 16px) !important}.ml-xl-3{margin-left:var(--base-size-16, 16px) !important}.mt-xl-n3{margin-top:calc(-1*var(--base-size-16, 16px)) !important}.mb-xl-n3{margin-bottom:calc(-1*var(--base-size-16, 16px)) !important}.mr-xl-n3{margin-right:calc(-1*var(--base-size-16, 16px)) !important}.ml-xl-n3{margin-left:calc(-1*var(--base-size-16, 16px)) !important}.mx-xl-3{margin-right:var(--base-size-16, 16px) !important;margin-left:var(--base-size-16, 16px) !important}.my-xl-3{margin-top:var(--base-size-16, 16px) !important;margin-bottom:var(--base-size-16, 16px) !important}.m-xl-4{margin:var(--base-size-24, 24px) !important}.mt-xl-4{margin-top:var(--base-size-24, 24px) !important}.mb-xl-4{margin-bottom:var(--base-size-24, 24px) !important}.mr-xl-4{margin-right:var(--base-size-24, 24px) !important}.ml-xl-4{margin-left:var(--base-size-24, 24px) !important}.mt-xl-n4{margin-top:calc(-1*var(--base-size-24, 24px)) !important}.mb-xl-n4{margin-bottom:calc(-1*var(--base-size-24, 24px)) !important}.mr-xl-n4{margin-right:calc(-1*var(--base-size-24, 24px)) !important}.ml-xl-n4{margin-left:calc(-1*var(--base-size-24, 24px)) !important}.mx-xl-4{margin-right:var(--base-size-24, 24px) !important;margin-left:var(--base-size-24, 24px) !important}.my-xl-4{margin-top:var(--base-size-24, 24px) !important;margin-bottom:var(--base-size-24, 24px) !important}.m-xl-5{margin:var(--base-size-32, 32px) !important}.mt-xl-5{margin-top:var(--base-size-32, 32px) !important}.mb-xl-5{margin-bottom:var(--base-size-32, 32px) !important}.mr-xl-5{margin-right:var(--base-size-32, 32px) !important}.ml-xl-5{margin-left:var(--base-size-32, 32px) !important}.mt-xl-n5{margin-top:calc(-1*var(--base-size-32, 32px)) !important}.mb-xl-n5{margin-bottom:calc(-1*var(--base-size-32, 32px)) !important}.mr-xl-n5{margin-right:calc(-1*var(--base-size-32, 32px)) !important}.ml-xl-n5{margin-left:calc(-1*var(--base-size-32, 32px)) !important}.mx-xl-5{margin-right:var(--base-size-32, 32px) !important;margin-left:var(--base-size-32, 32px) !important}.my-xl-5{margin-top:var(--base-size-32, 32px) !important;margin-bottom:var(--base-size-32, 32px) !important}.m-xl-6{margin:var(--base-size-40, 40px) !important}.mt-xl-6{margin-top:var(--base-size-40, 40px) !important}.mb-xl-6{margin-bottom:var(--base-size-40, 40px) !important}.mr-xl-6{margin-right:var(--base-size-40, 40px) !important}.ml-xl-6{margin-left:var(--base-size-40, 40px) !important}.mt-xl-n6{margin-top:calc(-1*var(--base-size-40, 40px)) !important}.mb-xl-n6{margin-bottom:calc(-1*var(--base-size-40, 40px)) !important}.mr-xl-n6{margin-right:calc(-1*var(--base-size-40, 40px)) !important}.ml-xl-n6{margin-left:calc(-1*var(--base-size-40, 40px)) !important}.mx-xl-6{margin-right:var(--base-size-40, 40px) !important;margin-left:var(--base-size-40, 40px) !important}.my-xl-6{margin-top:var(--base-size-40, 40px) !important;margin-bottom:var(--base-size-40, 40px) !important}.mt-xl-7{margin-top:var(--base-size-48, 48px) !important}.mb-xl-7{margin-bottom:var(--base-size-48, 48px) !important}.mt-xl-n7{margin-top:calc(-1*var(--base-size-48, 48px)) !important}.mb-xl-n7{margin-bottom:calc(-1*var(--base-size-48, 48px)) !important}.my-xl-7{margin-top:var(--base-size-48, 48px) !important;margin-bottom:var(--base-size-48, 48px) !important}.mt-xl-8{margin-top:var(--base-size-64, 64px) !important}.mb-xl-8{margin-bottom:var(--base-size-64, 64px) !important}.mt-xl-n8{margin-top:calc(-1*var(--base-size-64, 64px)) !important}.mb-xl-n8{margin-bottom:calc(-1*var(--base-size-64, 64px)) !important}.my-xl-8{margin-top:var(--base-size-64, 64px) !important;margin-bottom:var(--base-size-64, 64px) !important}.mt-xl-9{margin-top:var(--base-size-80, 80px) !important}.mb-xl-9{margin-bottom:var(--base-size-80, 80px) !important}.mt-xl-n9{margin-top:calc(-1*var(--base-size-80, 80px)) !important}.mb-xl-n9{margin-bottom:calc(-1*var(--base-size-80, 80px)) !important}.my-xl-9{margin-top:var(--base-size-80, 80px) !important;margin-bottom:var(--base-size-80, 80px) !important}.mt-xl-10{margin-top:var(--base-size-96, 96px) !important}.mb-xl-10{margin-bottom:var(--base-size-96, 96px) !important}.mt-xl-n10{margin-top:calc(-1*var(--base-size-96, 96px)) !important}.mb-xl-n10{margin-bottom:calc(-1*var(--base-size-96, 96px)) !important}.my-xl-10{margin-top:var(--base-size-96, 96px) !important;margin-bottom:var(--base-size-96, 96px) !important}.mt-xl-11{margin-top:var(--base-size-112, 112px) !important}.mb-xl-11{margin-bottom:var(--base-size-112, 112px) !important}.mt-xl-n11{margin-top:calc(-1*var(--base-size-112, 112px)) !important}.mb-xl-n11{margin-bottom:calc(-1*var(--base-size-112, 112px)) !important}.my-xl-11{margin-top:var(--base-size-112, 112px) !important;margin-bottom:var(--base-size-112, 112px) !important}.mt-xl-12{margin-top:var(--base-size-128, 128px) !important}.mb-xl-12{margin-bottom:var(--base-size-128, 128px) !important}.mt-xl-n12{margin-top:calc(-1*var(--base-size-128, 128px)) !important}.mb-xl-n12{margin-bottom:calc(-1*var(--base-size-128, 128px)) !important}.my-xl-12{margin-top:var(--base-size-128, 128px) !important;margin-bottom:var(--base-size-128, 128px) !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}}

.m-auto{margin:auto !important}

.mt-auto{margin-top:auto !important}

.mr-auto{margin-right:auto !important}

.mb-auto{margin-bottom:auto !important}

.ml-auto{margin-left:auto !important}

.p-0{padding:0 !important}

.pt-0{padding-top:0 !important}

.pr-0{padding-right:0 !important}

.pb-0{padding-bottom:0 !important}

.pl-0{padding-left:0 !important}

.px-0{padding-right:0 !important;padding-left:0 !important}

.py-0{padding-top:0 !important;padding-bottom:0 !important}

.p-1{padding:var(--base-size-4, 4px) !important}

.pt-1{padding-top:var(--base-size-4, 4px) !important}

.pr-1{padding-right:var(--base-size-4, 4px) !important}

.pb-1{padding-bottom:var(--base-size-4, 4px) !important}

.pl-1{padding-left:var(--base-size-4, 4px) !important}

.px-1{padding-right:var(--base-size-4, 4px) !important;padding-left:var(--base-size-4, 4px) !important}

.py-1{padding-top:var(--base-size-4, 4px) !important;padding-bottom:var(--base-size-4, 4px) !important}

.p-2{padding:var(--base-size-8, 8px) !important}

.pt-2{padding-top:var(--base-size-8, 8px) !important}

.pr-2{padding-right:var(--base-size-8, 8px) !important}

.pb-2{padding-bottom:var(--base-size-8, 8px) !important}

.pl-2{padding-left:var(--base-size-8, 8px) !important}

.px-2{padding-right:var(--base-size-8, 8px) !important;padding-left:var(--base-size-8, 8px) !important}

.py-2{padding-top:var(--base-size-8, 8px) !important;padding-bottom:var(--base-size-8, 8px) !important}

.p-3{padding:var(--base-size-16, 16px) !important}

.pt-3{padding-top:var(--base-size-16, 16px) !important}

.pr-3{padding-right:var(--base-size-16, 16px) !important}

.pb-3{padding-bottom:var(--base-size-16, 16px) !important}

.pl-3{padding-left:var(--base-size-16, 16px) !important}

.px-3{padding-right:var(--base-size-16, 16px) !important;padding-left:var(--base-size-16, 16px) !important}

.py-3{padding-top:var(--base-size-16, 16px) !important;padding-bottom:var(--base-size-16, 16px) !important}

.p-4{padding:var(--base-size-24, 24px) !important}

.pt-4{padding-top:var(--base-size-24, 24px) !important}

.pr-4{padding-right:var(--base-size-24, 24px) !important}

.pb-4{padding-bottom:var(--base-size-24, 24px) !important}

.pl-4{padding-left:var(--base-size-24, 24px) !important}

.px-4{padding-right:var(--base-size-24, 24px) !important;padding-left:var(--base-size-24, 24px) !important}

.py-4{padding-top:var(--base-size-24, 24px) !important;padding-bottom:var(--base-size-24, 24px) !important}

.p-5{padding:var(--base-size-32, 32px) !important}

.pt-5{padding-top:var(--base-size-32, 32px) !important}

.pr-5{padding-right:var(--base-size-32, 32px) !important}

.pb-5{padding-bottom:var(--base-size-32, 32px) !important}

.pl-5{padding-left:var(--base-size-32, 32px) !important}

.px-5{padding-right:var(--base-size-32, 32px) !important;padding-left:var(--base-size-32, 32px) !important}

.py-5{padding-top:var(--base-size-32, 32px) !important;padding-bottom:var(--base-size-32, 32px) !important}

.p-6{padding:var(--base-size-40, 40px) !important}

.pt-6{padding-top:var(--base-size-40, 40px) !important}

.pr-6{padding-right:var(--base-size-40, 40px) !important}

.pb-6{padding-bottom:var(--base-size-40, 40px) !important}

.pl-6{padding-left:var(--base-size-40, 40px) !important}

.px-6{padding-right:var(--base-size-40, 40px) !important;padding-left:var(--base-size-40, 40px) !important}

.py-6{padding-top:var(--base-size-40, 40px) !important;padding-bottom:var(--base-size-40, 40px) !important}

.pt-7{padding-top:var(--base-size-48, 48px) !important}

.pr-7{padding-right:var(--base-size-48, 48px) !important}

.pb-7{padding-bottom:var(--base-size-48, 48px) !important}

.pl-7{padding-left:var(--base-size-48, 48px) !important}

.py-7{padding-top:var(--base-size-48, 48px) !important;padding-bottom:var(--base-size-48, 48px) !important}

.pt-8{padding-top:var(--base-size-64, 64px) !important}

.pr-8{padding-right:var(--base-size-64, 64px) !important}

.pb-8{padding-bottom:var(--base-size-64, 64px) !important}

.pl-8{padding-left:var(--base-size-64, 64px) !important}

.py-8{padding-top:var(--base-size-64, 64px) !important;padding-bottom:var(--base-size-64, 64px) !important}

.pt-9{padding-top:var(--base-size-80, 80px) !important}

.pr-9{padding-right:var(--base-size-80, 80px) !important}

.pb-9{padding-bottom:var(--base-size-80, 80px) !important}

.pl-9{padding-left:var(--base-size-80, 80px) !important}

.py-9{padding-top:var(--base-size-80, 80px) !important;padding-bottom:var(--base-size-80, 80px) !important}

.pt-10{padding-top:var(--base-size-96, 96px) !important}

.pr-10{padding-right:var(--base-size-96, 96px) !important}

.pb-10{padding-bottom:var(--base-size-96, 96px) !important}

.pl-10{padding-left:var(--base-size-96, 96px) !important}

.py-10{padding-top:var(--base-size-96, 96px) !important;padding-bottom:var(--base-size-96, 96px) !important}

.pt-11{padding-top:var(--base-size-112, 112px) !important}

.pr-11{padding-right:var(--base-size-112, 112px) !important}

.pb-11{padding-bottom:var(--base-size-112, 112px) !important}

.pl-11{padding-left:var(--base-size-112, 112px) !important}

.py-11{padding-top:var(--base-size-112, 112px) !important;padding-bottom:var(--base-size-112, 112px) !important}

.pt-12{padding-top:var(--base-size-128, 128px) !important}

.pr-12{padding-right:var(--base-size-128, 128px) !important}

.pb-12{padding-bottom:var(--base-size-128, 128px) !important}

.pl-12{padding-left:var(--base-size-128, 128px) !important}

.py-12{padding-top:var(--base-size-128, 128px) !important;padding-bottom:var(--base-size-128, 128px) !important}

@media(min-width: 544px){.p-sm-0{padding:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.p-sm-1{padding:var(--base-size-4, 4px) !important}.pt-sm-1{padding-top:var(--base-size-4, 4px) !important}.pr-sm-1{padding-right:var(--base-size-4, 4px) !important}.pb-sm-1{padding-bottom:var(--base-size-4, 4px) !important}.pl-sm-1{padding-left:var(--base-size-4, 4px) !important}.px-sm-1{padding-right:var(--base-size-4, 4px) !important;padding-left:var(--base-size-4, 4px) !important}.py-sm-1{padding-top:var(--base-size-4, 4px) !important;padding-bottom:var(--base-size-4, 4px) !important}.p-sm-2{padding:var(--base-size-8, 8px) !important}.pt-sm-2{padding-top:var(--base-size-8, 8px) !important}.pr-sm-2{padding-right:var(--base-size-8, 8px) !important}.pb-sm-2{padding-bottom:var(--base-size-8, 8px) !important}.pl-sm-2{padding-left:var(--base-size-8, 8px) !important}.px-sm-2{padding-right:var(--base-size-8, 8px) !important;padding-left:var(--base-size-8, 8px) !important}.py-sm-2{padding-top:var(--base-size-8, 8px) !important;padding-bottom:var(--base-size-8, 8px) !important}.p-sm-3{padding:var(--base-size-16, 16px) !important}.pt-sm-3{padding-top:var(--base-size-16, 16px) !important}.pr-sm-3{padding-right:var(--base-size-16, 16px) !important}.pb-sm-3{padding-bottom:var(--base-size-16, 16px) !important}.pl-sm-3{padding-left:var(--base-size-16, 16px) !important}.px-sm-3{padding-right:var(--base-size-16, 16px) !important;padding-left:var(--base-size-16, 16px) !important}.py-sm-3{padding-top:var(--base-size-16, 16px) !important;padding-bottom:var(--base-size-16, 16px) !important}.p-sm-4{padding:var(--base-size-24, 24px) !important}.pt-sm-4{padding-top:var(--base-size-24, 24px) !important}.pr-sm-4{padding-right:var(--base-size-24, 24px) !important}.pb-sm-4{padding-bottom:var(--base-size-24, 24px) !important}.pl-sm-4{padding-left:var(--base-size-24, 24px) !important}.px-sm-4{padding-right:var(--base-size-24, 24px) !important;padding-left:var(--base-size-24, 24px) !important}.py-sm-4{padding-top:var(--base-size-24, 24px) !important;padding-bottom:var(--base-size-24, 24px) !important}.p-sm-5{padding:var(--base-size-32, 32px) !important}.pt-sm-5{padding-top:var(--base-size-32, 32px) !important}.pr-sm-5{padding-right:var(--base-size-32, 32px) !important}.pb-sm-5{padding-bottom:var(--base-size-32, 32px) !important}.pl-sm-5{padding-left:var(--base-size-32, 32px) !important}.px-sm-5{padding-right:var(--base-size-32, 32px) !important;padding-left:var(--base-size-32, 32px) !important}.py-sm-5{padding-top:var(--base-size-32, 32px) !important;padding-bottom:var(--base-size-32, 32px) !important}.p-sm-6{padding:var(--base-size-40, 40px) !important}.pt-sm-6{padding-top:var(--base-size-40, 40px) !important}.pr-sm-6{padding-right:var(--base-size-40, 40px) !important}.pb-sm-6{padding-bottom:var(--base-size-40, 40px) !important}.pl-sm-6{padding-left:var(--base-size-40, 40px) !important}.px-sm-6{padding-right:var(--base-size-40, 40px) !important;padding-left:var(--base-size-40, 40px) !important}.py-sm-6{padding-top:var(--base-size-40, 40px) !important;padding-bottom:var(--base-size-40, 40px) !important}.pt-sm-7{padding-top:var(--base-size-48, 48px) !important}.pr-sm-7{padding-right:var(--base-size-48, 48px) !important}.pb-sm-7{padding-bottom:var(--base-size-48, 48px) !important}.pl-sm-7{padding-left:var(--base-size-48, 48px) !important}.py-sm-7{padding-top:var(--base-size-48, 48px) !important;padding-bottom:var(--base-size-48, 48px) !important}.pt-sm-8{padding-top:var(--base-size-64, 64px) !important}.pr-sm-8{padding-right:var(--base-size-64, 64px) !important}.pb-sm-8{padding-bottom:var(--base-size-64, 64px) !important}.pl-sm-8{padding-left:var(--base-size-64, 64px) !important}.py-sm-8{padding-top:var(--base-size-64, 64px) !important;padding-bottom:var(--base-size-64, 64px) !important}.pt-sm-9{padding-top:var(--base-size-80, 80px) !important}.pr-sm-9{padding-right:var(--base-size-80, 80px) !important}.pb-sm-9{padding-bottom:var(--base-size-80, 80px) !important}.pl-sm-9{padding-left:var(--base-size-80, 80px) !important}.py-sm-9{padding-top:var(--base-size-80, 80px) !important;padding-bottom:var(--base-size-80, 80px) !important}.pt-sm-10{padding-top:var(--base-size-96, 96px) !important}.pr-sm-10{padding-right:var(--base-size-96, 96px) !important}.pb-sm-10{padding-bottom:var(--base-size-96, 96px) !important}.pl-sm-10{padding-left:var(--base-size-96, 96px) !important}.py-sm-10{padding-top:var(--base-size-96, 96px) !important;padding-bottom:var(--base-size-96, 96px) !important}.pt-sm-11{padding-top:var(--base-size-112, 112px) !important}.pr-sm-11{padding-right:var(--base-size-112, 112px) !important}.pb-sm-11{padding-bottom:var(--base-size-112, 112px) !important}.pl-sm-11{padding-left:var(--base-size-112, 112px) !important}.py-sm-11{padding-top:var(--base-size-112, 112px) !important;padding-bottom:var(--base-size-112, 112px) !important}.pt-sm-12{padding-top:var(--base-size-128, 128px) !important}.pr-sm-12{padding-right:var(--base-size-128, 128px) !important}.pb-sm-12{padding-bottom:var(--base-size-128, 128px) !important}.pl-sm-12{padding-left:var(--base-size-128, 128px) !important}.py-sm-12{padding-top:var(--base-size-128, 128px) !important;padding-bottom:var(--base-size-128, 128px) !important}}

@media(min-width: 768px){.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.p-md-1{padding:var(--base-size-4, 4px) !important}.pt-md-1{padding-top:var(--base-size-4, 4px) !important}.pr-md-1{padding-right:var(--base-size-4, 4px) !important}.pb-md-1{padding-bottom:var(--base-size-4, 4px) !important}.pl-md-1{padding-left:var(--base-size-4, 4px) !important}.px-md-1{padding-right:var(--base-size-4, 4px) !important;padding-left:var(--base-size-4, 4px) !important}.py-md-1{padding-top:var(--base-size-4, 4px) !important;padding-bottom:var(--base-size-4, 4px) !important}.p-md-2{padding:var(--base-size-8, 8px) !important}.pt-md-2{padding-top:var(--base-size-8, 8px) !important}.pr-md-2{padding-right:var(--base-size-8, 8px) !important}.pb-md-2{padding-bottom:var(--base-size-8, 8px) !important}.pl-md-2{padding-left:var(--base-size-8, 8px) !important}.px-md-2{padding-right:var(--base-size-8, 8px) !important;padding-left:var(--base-size-8, 8px) !important}.py-md-2{padding-top:var(--base-size-8, 8px) !important;padding-bottom:var(--base-size-8, 8px) !important}.p-md-3{padding:var(--base-size-16, 16px) !important}.pt-md-3{padding-top:var(--base-size-16, 16px) !important}.pr-md-3{padding-right:var(--base-size-16, 16px) !important}.pb-md-3{padding-bottom:var(--base-size-16, 16px) !important}.pl-md-3{padding-left:var(--base-size-16, 16px) !important}.px-md-3{padding-right:var(--base-size-16, 16px) !important;padding-left:var(--base-size-16, 16px) !important}.py-md-3{padding-top:var(--base-size-16, 16px) !important;padding-bottom:var(--base-size-16, 16px) !important}.p-md-4{padding:var(--base-size-24, 24px) !important}.pt-md-4{padding-top:var(--base-size-24, 24px) !important}.pr-md-4{padding-right:var(--base-size-24, 24px) !important}.pb-md-4{padding-bottom:var(--base-size-24, 24px) !important}.pl-md-4{padding-left:var(--base-size-24, 24px) !important}.px-md-4{padding-right:var(--base-size-24, 24px) !important;padding-left:var(--base-size-24, 24px) !important}.py-md-4{padding-top:var(--base-size-24, 24px) !important;padding-bottom:var(--base-size-24, 24px) !important}.p-md-5{padding:var(--base-size-32, 32px) !important}.pt-md-5{padding-top:var(--base-size-32, 32px) !important}.pr-md-5{padding-right:var(--base-size-32, 32px) !important}.pb-md-5{padding-bottom:var(--base-size-32, 32px) !important}.pl-md-5{padding-left:var(--base-size-32, 32px) !important}.px-md-5{padding-right:var(--base-size-32, 32px) !important;padding-left:var(--base-size-32, 32px) !important}.py-md-5{padding-top:var(--base-size-32, 32px) !important;padding-bottom:var(--base-size-32, 32px) !important}.p-md-6{padding:var(--base-size-40, 40px) !important}.pt-md-6{padding-top:var(--base-size-40, 40px) !important}.pr-md-6{padding-right:var(--base-size-40, 40px) !important}.pb-md-6{padding-bottom:var(--base-size-40, 40px) !important}.pl-md-6{padding-left:var(--base-size-40, 40px) !important}.px-md-6{padding-right:var(--base-size-40, 40px) !important;padding-left:var(--base-size-40, 40px) !important}.py-md-6{padding-top:var(--base-size-40, 40px) !important;padding-bottom:var(--base-size-40, 40px) !important}.pt-md-7{padding-top:var(--base-size-48, 48px) !important}.pr-md-7{padding-right:var(--base-size-48, 48px) !important}.pb-md-7{padding-bottom:var(--base-size-48, 48px) !important}.pl-md-7{padding-left:var(--base-size-48, 48px) !important}.py-md-7{padding-top:var(--base-size-48, 48px) !important;padding-bottom:var(--base-size-48, 48px) !important}.pt-md-8{padding-top:var(--base-size-64, 64px) !important}.pr-md-8{padding-right:var(--base-size-64, 64px) !important}.pb-md-8{padding-bottom:var(--base-size-64, 64px) !important}.pl-md-8{padding-left:var(--base-size-64, 64px) !important}.py-md-8{padding-top:var(--base-size-64, 64px) !important;padding-bottom:var(--base-size-64, 64px) !important}.pt-md-9{padding-top:var(--base-size-80, 80px) !important}.pr-md-9{padding-right:var(--base-size-80, 80px) !important}.pb-md-9{padding-bottom:var(--base-size-80, 80px) !important}.pl-md-9{padding-left:var(--base-size-80, 80px) !important}.py-md-9{padding-top:var(--base-size-80, 80px) !important;padding-bottom:var(--base-size-80, 80px) !important}.pt-md-10{padding-top:var(--base-size-96, 96px) !important}.pr-md-10{padding-right:var(--base-size-96, 96px) !important}.pb-md-10{padding-bottom:var(--base-size-96, 96px) !important}.pl-md-10{padding-left:var(--base-size-96, 96px) !important}.py-md-10{padding-top:var(--base-size-96, 96px) !important;padding-bottom:var(--base-size-96, 96px) !important}.pt-md-11{padding-top:var(--base-size-112, 112px) !important}.pr-md-11{padding-right:var(--base-size-112, 112px) !important}.pb-md-11{padding-bottom:var(--base-size-112, 112px) !important}.pl-md-11{padding-left:var(--base-size-112, 112px) !important}.py-md-11{padding-top:var(--base-size-112, 112px) !important;padding-bottom:var(--base-size-112, 112px) !important}.pt-md-12{padding-top:var(--base-size-128, 128px) !important}.pr-md-12{padding-right:var(--base-size-128, 128px) !important}.pb-md-12{padding-bottom:var(--base-size-128, 128px) !important}.pl-md-12{padding-left:var(--base-size-128, 128px) !important}.py-md-12{padding-top:var(--base-size-128, 128px) !important;padding-bottom:var(--base-size-128, 128px) !important}}

@media(min-width: 1012px){.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.p-lg-1{padding:var(--base-size-4, 4px) !important}.pt-lg-1{padding-top:var(--base-size-4, 4px) !important}.pr-lg-1{padding-right:var(--base-size-4, 4px) !important}.pb-lg-1{padding-bottom:var(--base-size-4, 4px) !important}.pl-lg-1{padding-left:var(--base-size-4, 4px) !important}.px-lg-1{padding-right:var(--base-size-4, 4px) !important;padding-left:var(--base-size-4, 4px) !important}.py-lg-1{padding-top:var(--base-size-4, 4px) !important;padding-bottom:var(--base-size-4, 4px) !important}.p-lg-2{padding:var(--base-size-8, 8px) !important}.pt-lg-2{padding-top:var(--base-size-8, 8px) !important}.pr-lg-2{padding-right:var(--base-size-8, 8px) !important}.pb-lg-2{padding-bottom:var(--base-size-8, 8px) !important}.pl-lg-2{padding-left:var(--base-size-8, 8px) !important}.px-lg-2{padding-right:var(--base-size-8, 8px) !important;padding-left:var(--base-size-8, 8px) !important}.py-lg-2{padding-top:var(--base-size-8, 8px) !important;padding-bottom:var(--base-size-8, 8px) !important}.p-lg-3{padding:var(--base-size-16, 16px) !important}.pt-lg-3{padding-top:var(--base-size-16, 16px) !important}.pr-lg-3{padding-right:var(--base-size-16, 16px) !important}.pb-lg-3{padding-bottom:var(--base-size-16, 16px) !important}.pl-lg-3{padding-left:var(--base-size-16, 16px) !important}.px-lg-3{padding-right:var(--base-size-16, 16px) !important;padding-left:var(--base-size-16, 16px) !important}.py-lg-3{padding-top:var(--base-size-16, 16px) !important;padding-bottom:var(--base-size-16, 16px) !important}.p-lg-4{padding:var(--base-size-24, 24px) !important}.pt-lg-4{padding-top:var(--base-size-24, 24px) !important}.pr-lg-4{padding-right:var(--base-size-24, 24px) !important}.pb-lg-4{padding-bottom:var(--base-size-24, 24px) !important}.pl-lg-4{padding-left:var(--base-size-24, 24px) !important}.px-lg-4{padding-right:var(--base-size-24, 24px) !important;padding-left:var(--base-size-24, 24px) !important}.py-lg-4{padding-top:var(--base-size-24, 24px) !important;padding-bottom:var(--base-size-24, 24px) !important}.p-lg-5{padding:var(--base-size-32, 32px) !important}.pt-lg-5{padding-top:var(--base-size-32, 32px) !important}.pr-lg-5{padding-right:var(--base-size-32, 32px) !important}.pb-lg-5{padding-bottom:var(--base-size-32, 32px) !important}.pl-lg-5{padding-left:var(--base-size-32, 32px) !important}.px-lg-5{padding-right:var(--base-size-32, 32px) !important;padding-left:var(--base-size-32, 32px) !important}.py-lg-5{padding-top:var(--base-size-32, 32px) !important;padding-bottom:var(--base-size-32, 32px) !important}.p-lg-6{padding:var(--base-size-40, 40px) !important}.pt-lg-6{padding-top:var(--base-size-40, 40px) !important}.pr-lg-6{padding-right:var(--base-size-40, 40px) !important}.pb-lg-6{padding-bottom:var(--base-size-40, 40px) !important}.pl-lg-6{padding-left:var(--base-size-40, 40px) !important}.px-lg-6{padding-right:var(--base-size-40, 40px) !important;padding-left:var(--base-size-40, 40px) !important}.py-lg-6{padding-top:var(--base-size-40, 40px) !important;padding-bottom:var(--base-size-40, 40px) !important}.pt-lg-7{padding-top:var(--base-size-48, 48px) !important}.pr-lg-7{padding-right:var(--base-size-48, 48px) !important}.pb-lg-7{padding-bottom:var(--base-size-48, 48px) !important}.pl-lg-7{padding-left:var(--base-size-48, 48px) !important}.py-lg-7{padding-top:var(--base-size-48, 48px) !important;padding-bottom:var(--base-size-48, 48px) !important}.pt-lg-8{padding-top:var(--base-size-64, 64px) !important}.pr-lg-8{padding-right:var(--base-size-64, 64px) !important}.pb-lg-8{padding-bottom:var(--base-size-64, 64px) !important}.pl-lg-8{padding-left:var(--base-size-64, 64px) !important}.py-lg-8{padding-top:var(--base-size-64, 64px) !important;padding-bottom:var(--base-size-64, 64px) !important}.pt-lg-9{padding-top:var(--base-size-80, 80px) !important}.pr-lg-9{padding-right:var(--base-size-80, 80px) !important}.pb-lg-9{padding-bottom:var(--base-size-80, 80px) !important}.pl-lg-9{padding-left:var(--base-size-80, 80px) !important}.py-lg-9{padding-top:var(--base-size-80, 80px) !important;padding-bottom:var(--base-size-80, 80px) !important}.pt-lg-10{padding-top:var(--base-size-96, 96px) !important}.pr-lg-10{padding-right:var(--base-size-96, 96px) !important}.pb-lg-10{padding-bottom:var(--base-size-96, 96px) !important}.pl-lg-10{padding-left:var(--base-size-96, 96px) !important}.py-lg-10{padding-top:var(--base-size-96, 96px) !important;padding-bottom:var(--base-size-96, 96px) !important}.pt-lg-11{padding-top:var(--base-size-112, 112px) !important}.pr-lg-11{padding-right:var(--base-size-112, 112px) !important}.pb-lg-11{padding-bottom:var(--base-size-112, 112px) !important}.pl-lg-11{padding-left:var(--base-size-112, 112px) !important}.py-lg-11{padding-top:var(--base-size-112, 112px) !important;padding-bottom:var(--base-size-112, 112px) !important}.pt-lg-12{padding-top:var(--base-size-128, 128px) !important}.pr-lg-12{padding-right:var(--base-size-128, 128px) !important}.pb-lg-12{padding-bottom:var(--base-size-128, 128px) !important}.pl-lg-12{padding-left:var(--base-size-128, 128px) !important}.py-lg-12{padding-top:var(--base-size-128, 128px) !important;padding-bottom:var(--base-size-128, 128px) !important}}

@media(min-width: 1280px){.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.p-xl-1{padding:var(--base-size-4, 4px) !important}.pt-xl-1{padding-top:var(--base-size-4, 4px) !important}.pr-xl-1{padding-right:var(--base-size-4, 4px) !important}.pb-xl-1{padding-bottom:var(--base-size-4, 4px) !important}.pl-xl-1{padding-left:var(--base-size-4, 4px) !important}.px-xl-1{padding-right:var(--base-size-4, 4px) !important;padding-left:var(--base-size-4, 4px) !important}.py-xl-1{padding-top:var(--base-size-4, 4px) !important;padding-bottom:var(--base-size-4, 4px) !important}.p-xl-2{padding:var(--base-size-8, 8px) !important}.pt-xl-2{padding-top:var(--base-size-8, 8px) !important}.pr-xl-2{padding-right:var(--base-size-8, 8px) !important}.pb-xl-2{padding-bottom:var(--base-size-8, 8px) !important}.pl-xl-2{padding-left:var(--base-size-8, 8px) !important}.px-xl-2{padding-right:var(--base-size-8, 8px) !important;padding-left:var(--base-size-8, 8px) !important}.py-xl-2{padding-top:var(--base-size-8, 8px) !important;padding-bottom:var(--base-size-8, 8px) !important}.p-xl-3{padding:var(--base-size-16, 16px) !important}.pt-xl-3{padding-top:var(--base-size-16, 16px) !important}.pr-xl-3{padding-right:var(--base-size-16, 16px) !important}.pb-xl-3{padding-bottom:var(--base-size-16, 16px) !important}.pl-xl-3{padding-left:var(--base-size-16, 16px) !important}.px-xl-3{padding-right:var(--base-size-16, 16px) !important;padding-left:var(--base-size-16, 16px) !important}.py-xl-3{padding-top:var(--base-size-16, 16px) !important;padding-bottom:var(--base-size-16, 16px) !important}.p-xl-4{padding:var(--base-size-24, 24px) !important}.pt-xl-4{padding-top:var(--base-size-24, 24px) !important}.pr-xl-4{padding-right:var(--base-size-24, 24px) !important}.pb-xl-4{padding-bottom:var(--base-size-24, 24px) !important}.pl-xl-4{padding-left:var(--base-size-24, 24px) !important}.px-xl-4{padding-right:var(--base-size-24, 24px) !important;padding-left:var(--base-size-24, 24px) !important}.py-xl-4{padding-top:var(--base-size-24, 24px) !important;padding-bottom:var(--base-size-24, 24px) !important}.p-xl-5{padding:var(--base-size-32, 32px) !important}.pt-xl-5{padding-top:var(--base-size-32, 32px) !important}.pr-xl-5{padding-right:var(--base-size-32, 32px) !important}.pb-xl-5{padding-bottom:var(--base-size-32, 32px) !important}.pl-xl-5{padding-left:var(--base-size-32, 32px) !important}.px-xl-5{padding-right:var(--base-size-32, 32px) !important;padding-left:var(--base-size-32, 32px) !important}.py-xl-5{padding-top:var(--base-size-32, 32px) !important;padding-bottom:var(--base-size-32, 32px) !important}.p-xl-6{padding:var(--base-size-40, 40px) !important}.pt-xl-6{padding-top:var(--base-size-40, 40px) !important}.pr-xl-6{padding-right:var(--base-size-40, 40px) !important}.pb-xl-6{padding-bottom:var(--base-size-40, 40px) !important}.pl-xl-6{padding-left:var(--base-size-40, 40px) !important}.px-xl-6{padding-right:var(--base-size-40, 40px) !important;padding-left:var(--base-size-40, 40px) !important}.py-xl-6{padding-top:var(--base-size-40, 40px) !important;padding-bottom:var(--base-size-40, 40px) !important}.pt-xl-7{padding-top:var(--base-size-48, 48px) !important}.pr-xl-7{padding-right:var(--base-size-48, 48px) !important}.pb-xl-7{padding-bottom:var(--base-size-48, 48px) !important}.pl-xl-7{padding-left:var(--base-size-48, 48px) !important}.py-xl-7{padding-top:var(--base-size-48, 48px) !important;padding-bottom:var(--base-size-48, 48px) !important}.pt-xl-8{padding-top:var(--base-size-64, 64px) !important}.pr-xl-8{padding-right:var(--base-size-64, 64px) !important}.pb-xl-8{padding-bottom:var(--base-size-64, 64px) !important}.pl-xl-8{padding-left:var(--base-size-64, 64px) !important}.py-xl-8{padding-top:var(--base-size-64, 64px) !important;padding-bottom:var(--base-size-64, 64px) !important}.pt-xl-9{padding-top:var(--base-size-80, 80px) !important}.pr-xl-9{padding-right:var(--base-size-80, 80px) !important}.pb-xl-9{padding-bottom:var(--base-size-80, 80px) !important}.pl-xl-9{padding-left:var(--base-size-80, 80px) !important}.py-xl-9{padding-top:var(--base-size-80, 80px) !important;padding-bottom:var(--base-size-80, 80px) !important}.pt-xl-10{padding-top:var(--base-size-96, 96px) !important}.pr-xl-10{padding-right:var(--base-size-96, 96px) !important}.pb-xl-10{padding-bottom:var(--base-size-96, 96px) !important}.pl-xl-10{padding-left:var(--base-size-96, 96px) !important}.py-xl-10{padding-top:var(--base-size-96, 96px) !important;padding-bottom:var(--base-size-96, 96px) !important}.pt-xl-11{padding-top:var(--base-size-112, 112px) !important}.pr-xl-11{padding-right:var(--base-size-112, 112px) !important}.pb-xl-11{padding-bottom:var(--base-size-112, 112px) !important}.pl-xl-11{padding-left:var(--base-size-112, 112px) !important}.py-xl-11{padding-top:var(--base-size-112, 112px) !important;padding-bottom:var(--base-size-112, 112px) !important}.pt-xl-12{padding-top:var(--base-size-128, 128px) !important}.pr-xl-12{padding-right:var(--base-size-128, 128px) !important}.pb-xl-12{padding-bottom:var(--base-size-128, 128px) !important}.pl-xl-12{padding-left:var(--base-size-128, 128px) !important}.py-xl-12{padding-top:var(--base-size-128, 128px) !important;padding-bottom:var(--base-size-128, 128px) !important}}

.p-responsive{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}

@media(min-width: 544px){.p-responsive{padding-right:var(--base-size-40) !important;padding-left:var(--base-size-40) !important}}

@media(min-width: 1012px){.p-responsive{padding-right:var(--base-size-16) !important;padding-left:var(--base-size-16) !important}}

.h1{font-size:var(--h1-size-mobile, 26px) !important}

@media(min-width: 768px){.h1{font-size:var(--h1-size, 32px) !important}}

.h2{font-size:var(--h2-size-mobile, 22px) !important}

@media(min-width: 768px){.h2{font-size:var(--h2-size, 24px) !important}}

.h3{font-size:var(--h3-size-mobile, 18px) !important}

@media(min-width: 768px){.h3{font-size:var(--h3-size, 20px) !important}}

.h4{font-size:var(--h4-size, 16px) !important}

.h5{font-size:var(--h5-size, 14px) !important}

.h6{font-size:var(--h6-size, 12px) !important}

.h1,.h2,.h3,.h4,.h5,.h6{font-weight:var(--base-text-weight-semibold, 600) !important}

.f1{font-size:var(--h1-size-mobile, 26px) !important}

@media(min-width: 768px){.f1{font-size:var(--h1-size, 32px) !important}}

.f2{font-size:var(--h2-size-mobile, 22px) !important}

@media(min-width: 768px){.f2{font-size:var(--h2-size, 24px) !important}}

.f3{font-size:var(--h3-size-mobile, 18px) !important}

@media(min-width: 768px){.f3{font-size:var(--h3-size, 20px) !important}}

.f4{font-size:var(--h4-size, 16px) !important}

@media(min-width: 768px){.f4{font-size:var(--h4-size, 16px) !important}}

.f5{font-size:var(--h5-size, 14px) !important}

.f6{font-size:var(--h6-size, 12px) !important}

.f00-light{font-size:var(--h00-size-mobile, 40px) !important;font-weight:var(--base-text-weight-light, 300) !important}

@media(min-width: 768px){.f00-light{font-size:var(--h00-size, 48px) !important}}

.f0-light{font-size:var(--h0-size-mobile, 32px) !important;font-weight:var(--base-text-weight-light, 300) !important}

@media(min-width: 768px){.f0-light{font-size:var(--h0-size, 40px) !important}}

.f1-light{font-size:var(--h1-size-mobile, 26px) !important;font-weight:var(--base-text-weight-light, 300) !important}

@media(min-width: 768px){.f1-light{font-size:var(--h1-size, 32px) !important}}

.f2-light{font-size:var(--h2-size-mobile, 22px) !important;font-weight:var(--base-text-weight-light, 300) !important}

@media(min-width: 768px){.f2-light{font-size:var(--h2-size, 24px) !important}}

.f3-light{font-size:var(--h3-size-mobile, 18px) !important;font-weight:var(--base-text-weight-light, 300) !important}

@media(min-width: 768px){.f3-light{font-size:var(--h3-size, 20px) !important}}

.text-small{font-size:var(--h6-size, 12px) !important}

.lead{margin-bottom:30px;font-size:var(--h3-size, 20px);font-weight:var(--base-text-weight-light, 300)}

.lh-condensed-ultra{line-height:1 !important}

.lh-condensed{line-height:1.25 !important}

.lh-default{line-height:1.5 !important}

.lh-0{line-height:0 !important}

@media(min-width: 544px){.lh-sm-condensed-ultra{line-height:1 !important}.lh-sm-condensed{line-height:1.25 !important}.lh-sm-default{line-height:1.5 !important}.lh-sm-0{line-height:0 !important}}

@media(min-width: 768px){.lh-md-condensed-ultra{line-height:1 !important}.lh-md-condensed{line-height:1.25 !important}.lh-md-default{line-height:1.5 !important}.lh-md-0{line-height:0 !important}}

@media(min-width: 1012px){.lh-lg-condensed-ultra{line-height:1 !important}.lh-lg-condensed{line-height:1.25 !important}.lh-lg-default{line-height:1.5 !important}.lh-lg-0{line-height:0 !important}}

@media(min-width: 1280px){.lh-xl-condensed-ultra{line-height:1 !important}.lh-xl-condensed{line-height:1.25 !important}.lh-xl-default{line-height:1.5 !important}.lh-xl-0{line-height:0 !important}}

.text-right{text-align:right !important}

.text-left{text-align:left !important}

.text-center{text-align:center !important}

@media(min-width: 544px){.text-sm-right{text-align:right !important}.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}}

@media(min-width: 768px){.text-md-right{text-align:right !important}.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}}

@media(min-width: 1012px){.text-lg-right{text-align:right !important}.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}}

@media(min-width: 1280px){.text-xl-right{text-align:right !important}.text-xl-left{text-align:left !important}.text-xl-center{text-align:center !important}}

.text-normal{font-weight:var(--base-text-weight-normal, 400) !important}

.text-bold{font-weight:var(--base-text-weight-semibold, 600) !important}

.text-semibold{font-weight:var(--base-text-weight-medium, 500) !important}

.text-light{font-weight:var(--base-text-weight-light, 300) !important}

.text-italic{font-style:italic !important}

.text-uppercase{text-transform:uppercase !important}

.text-underline{-webkit-text-decoration:underline !important;text-decoration:underline !important}

.no-underline{-webkit-text-decoration:none !important;text-decoration:none !important}

.no-wrap{white-space:nowrap !important}

.ws-normal{white-space:normal !important}

.wb-break-word{word-break:break-word !important;word-wrap:break-word !important;overflow-wrap:break-word !important}

.wb-break-all{word-break:break-all !important}

.text-emphasized{font-weight:var(--base-text-weight-semibold, 600)}

.list-style-none{list-style:none !important}

.text-mono{font-family:var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace) !important}

.user-select-none{-webkit-user-select:none !important;user-select:none !important}

.text-capitalize{text-transform:capitalize !important}

.d-block{display:block !important}

.d-flex{display:flex !important}

.d-inline{display:inline !important}

.d-inline-block{display:inline-block !important}

.d-inline-flex{display:inline-flex !important}

.d-none{display:none !important}

.d-table{display:table !important}

.d-table-cell{display:table-cell !important}

@media(min-width: 544px){.d-sm-block{display:block !important}.d-sm-flex{display:flex !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.d-sm-table{display:table !important}.d-sm-table-cell{display:table-cell !important}}

@media(min-width: 768px){.d-md-block{display:block !important}.d-md-flex{display:flex !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.d-md-table{display:table !important}.d-md-table-cell{display:table-cell !important}}

@media(min-width: 1012px){.d-lg-block{display:block !important}.d-lg-flex{display:flex !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.d-lg-table{display:table !important}.d-lg-table-cell{display:table-cell !important}}

@media(min-width: 1280px){.d-xl-block{display:block !important}.d-xl-flex{display:flex !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.d-xl-table{display:table !important}.d-xl-table-cell{display:table-cell !important}}

.v-hidden{visibility:hidden !important}

.v-visible{visibility:visible !important}

@media(max-width: 543.98px){.hide-sm{display:none !important}}

@media(min-width: 544px)and (max-width: 767.98px){.hide-md{display:none !important}}

@media(min-width: 768px)and (max-width: 1011.98px){.hide-lg{display:none !important}}

@media(min-width: 1012px){.hide-xl{display:none !important}}

.show-whenNarrow,.show-whenRegular,.show-whenWide,.show-whenRegular.hide-whenWide{display:none !important}

.hide-whenNarrow,.hide-whenRegular,.hide-whenWide{display:block !important}

@media(max-width: 767.98px){.show-whenNarrow{display:block !important}.hide-whenNarrow{display:none !important}}

@media(min-width: 768px){.show-whenRegular,.show-whenRegular.hide-whenWide{display:block !important}.hide-whenRegular{display:none !important}}

@media(min-width: 1280px){.show-whenWide{display:block !important}.hide-whenWide,.show-whenRegular.hide-whenWide{display:none !important}}

.table-fixed{table-layout:fixed !important}

.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip-path:rect(0 0 0 0);overflow-wrap:normal;border:0}

.show-on-focus{position:absolute !important}

.show-on-focus:not(:focus){width:1px !important;height:1px !important;padding:0 !important;overflow:hidden !important;clip:rect(1px, 1px, 1px, 1px) !important;border:0 !important}

.show-on-focus:focus{z-index:999}

/*# sourceMappingURL=utilities.css.map */

.markdown-body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:16px;line-height:1.5;word-wrap:break-word}

.markdown-body::before{display:table;content:""}

.markdown-body::after{display:table;clear:both;content:""}

.markdown-body>*:first-child{margin-top:0 !important}

.markdown-body>*:last-child{margin-bottom:0 !important}

.markdown-body a:not([href]){color:inherit;-webkit-text-decoration:none;text-decoration:none}

.markdown-body .absent{color:var(--fgColor-danger, var(--color-danger-fg))}

.markdown-body .anchor{float:left;padding-right:var(--base-size-4);margin-left:-20px;line-height:1}

.markdown-body .anchor:focus{outline:none}

.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre,.markdown-body details{margin-top:0;margin-bottom:var(--base-size-16)}

.markdown-body hr{height:.25em;padding:0;margin:var(--base-size-24) 0;background-color:var(--borderColor-default, var(--color-border-default));border:0}

.markdown-body blockquote{padding:0 1em;color:var(--fgColor-muted, var(--color-fg-muted));border-left:.25em solid var(--borderColor-default, var(--color-border-default))}

.markdown-body blockquote>:first-child{margin-top:0}

.markdown-body blockquote>:last-child{margin-bottom:0}

.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:var(--base-size-24);margin-bottom:var(--base-size-16);font-weight:var(--base-text-weight-semibold, 600);line-height:1.25}

.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:var(--fgColor-default, var(--color-fg-default));vertical-align:middle;visibility:hidden}

.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{-webkit-text-decoration:none;text-decoration:none}

.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}

.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{padding:0 .2em;font-size:inherit}

.markdown-body h1{padding-bottom:.3em;font-size:2em;border-bottom:1px solid var(--borderColor-muted, var(--color-border-muted))}

.markdown-body h2{padding-bottom:.3em;font-size:1.5em;border-bottom:1px solid var(--borderColor-muted, var(--color-border-muted))}

.markdown-body h3{font-size:1.25em}

.markdown-body h4{font-size:1em}

.markdown-body h5{font-size:.875em}

.markdown-body h6{font-size:.85em;color:var(--fgColor-muted, var(--color-fg-muted))}

.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}

.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}

.markdown-body summary h1,.markdown-body summary h2{padding-bottom:0;border-bottom:0}

.markdown-body ul,.markdown-body ol{padding-left:2em}

.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}

.markdown-body ol[type="a s"]{list-style-type:lower-alpha}

.markdown-body ol[type="A s"]{list-style-type:upper-alpha}

.markdown-body ol[type="i s"]{list-style-type:lower-roman}

.markdown-body ol[type="I s"]{list-style-type:upper-roman}

.markdown-body ol[type="1"]{list-style-type:decimal}

.markdown-body div>ol:not([type]){list-style-type:decimal}

.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}

.markdown-body li>p{margin-top:var(--base-size-16)}

.markdown-body li+li{margin-top:.25em}

.markdown-body dl{padding:0}

.markdown-body dl dt{padding:0;margin-top:var(--base-size-16);font-size:1em;font-style:italic;font-weight:var(--base-text-weight-semibold, 600)}

.markdown-body dl dd{padding:0 var(--base-size-16);margin-bottom:var(--base-size-16)}

.markdown-body table{display:block;width:100%;width:max-content;max-width:100%;overflow:auto;font-feature-settings:"tnum";font-variant:tabular-nums}

.markdown-body table th{font-weight:var(--base-text-weight-semibold, 600)}

.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid var(--borderColor-default, var(--color-border-default))}

.markdown-body table td>:last-child{margin-bottom:0}

.markdown-body table tr{background-color:var(--bgColor-default, var(--color-canvas-default));border-top:1px solid var(--borderColor-muted, var(--color-border-muted))}

.markdown-body table tr:nth-child(2n){background-color:var(--bgColor-muted, var(--color-canvas-subtle))}

.markdown-body table img{background-color:rgba(0,0,0,0)}

.markdown-body img{max-width:100%;box-sizing:content-box}

.markdown-body img[align=right]{padding-left:20px}

.markdown-body img[align=left]{padding-right:20px}

.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:rgba(0,0,0,0)}

.markdown-body span.frame{display:block;overflow:hidden}

.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid var(--borderColor-default, var(--color-border-default))}

.markdown-body span.frame span img{display:block;float:left}

.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:var(--fgColor-default, var(--color-fg-default))}

.markdown-body span.align-center{display:block;overflow:hidden;clear:both}

.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}

.markdown-body span.align-center span img{margin:0 auto;text-align:center}

.markdown-body span.align-right{display:block;overflow:hidden;clear:both}

.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}

.markdown-body span.align-right span img{margin:0;text-align:right}

.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}

.markdown-body span.float-left span{margin:13px 0 0}

.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}

.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}

.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;background-color:var(--bgColor-neutral-muted, var(--color-neutral-muted));border-radius:6px}

.markdown-body code br,.markdown-body tt br{display:none}

.markdown-body del code{text-decoration:inherit}

.markdown-body samp{font-size:85%}

.markdown-body pre{word-wrap:normal}

.markdown-body pre code{font-size:100%}

.markdown-body pre>code{padding:0;margin:0;word-break:normal;white-space:pre;background:rgba(0,0,0,0);border:0}

.markdown-body .highlight{margin-bottom:var(--base-size-16)}

.markdown-body .highlight pre{margin-bottom:0;word-break:normal}

.markdown-body .highlight pre,.markdown-body pre{padding:var(--base-size-16);overflow:auto;font-size:85%;line-height:1.45;color:var(--fgColor-default, var(--color-fg-default));background-color:var(--bgColor-muted, var(--color-canvas-subtle));border-radius:6px}

.markdown-body pre code,.markdown-body pre tt{display:inline;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:rgba(0,0,0,0);border:0}

.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}

.markdown-body .csv-data .blob-num{padding:10px var(--base-size-8) 9px;text-align:right;background:var(--bgColor-default, var(--color-canvas-default));border:0}

.markdown-body .csv-data tr{border-top:0}

.markdown-body .csv-data th{font-weight:var(--base-text-weight-semibold, 600);background:var(--bgColor-muted, var(--color-canvas-subtle));border-top:0}

.markdown-body [data-footnote-ref]::before{content:"["}

.markdown-body [data-footnote-ref]::after{content:"]"}

.markdown-body .footnotes{font-size:12px;color:var(--fgColor-muted, var(--color-fg-muted));border-top:1px solid var(--borderColor-default, var(--color-border-default))}

.markdown-body .footnotes ol{padding-left:var(--base-size-16)}

.markdown-body .footnotes ol ul{display:inline-block;padding-left:var(--base-size-16);margin-top:var(--base-size-16)}

.markdown-body .footnotes li{position:relative}

.markdown-body .footnotes li:target::before{position:absolute;top:calc(var(--base-size-8)*-1);right:calc(var(--base-size-8)*-1);bottom:calc(var(--base-size-8)*-1);left:calc(var(--base-size-24)*-1);pointer-events:none;content:"";border:2px solid var(--borderColor-accent-emphasis, var(--color-accent-emphasis));border-radius:6px}

.markdown-body .footnotes li:target{color:var(--fgColor-default, var(--color-fg-default))}

.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}

/*# sourceMappingURL=markdown.css.map */
