General

Css

/// Content styling for carousel items
///
/// Handles the visual presentation of item content including background,
/// overlay effects, and content positioning. Includes a dark gradient
/// overlay for better text readability.
///
/// @example scss
///   .kib-cover-stack-item { ... }/// Content styling for carousel items
///
/// Handles the visual presentation of item content including background,
/// overlay effects, and content positioning. Includes a dark gradient
/// overlay for better text readability.
///
/// @example scss
///   .kib-cover-stack-item {  }
Description

Cover Stack Item Mixins

This file contains mixins for the KibCoverStackItem component. The cover stack item is a single item in the cover stack carousel.

&::before

&::before { ... }&::before { content: '';
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.74%, rgba(0, 0, 0, 0.95) 79.14%);
    border-radius: border.get('br02');
    pointer-events: none;
    z-index: 1; }
Description

Dark overlay for better text readability

/// Root container mixin for the cover stack carousel
///
/// Sets up the main container with container queries for responsive behavior,
/// touch handling, and proper sizing constraints.
///
/// @example scss
///   .kib-cover-stack { ... }/// Root container mixin for the cover stack carousel
///
/// Sets up the main container with container queries for responsive behavior,
/// touch handling, and proper sizing constraints.
///
/// @example scss
///   .kib-cover-stack {  }
Description

Cover Stack Carousel Mixins

This file contains mixins for the KibCoverStack carousel component. The cover stack creates a horizontal carousel with items that can be dragged and positioned with smooth transitions and visual effects.

& .kib-input-text__icon, & .kib-field__icon--action

& .kib-input-text__icon,
  & .kib-field__icon--action { ... }& .kib-input-text__icon,
  & .kib-field__icon--action { @include mixins.input-field-icon; }
Description

deprecate when field new is supported

.kib-input-text__icon &__adornment

.kib-input-text__icon &__adornment { ... }.kib-input-text__icon &__adornment { &.MuiInputAdornment-root {
      @include mixins.input-adornment;
    }

    .Mui-focusVisible {
      @include mixins.button-focus;
    }

    .MuiButtonBase-root {
      @include mixins.button;

      #{$parent} .kib-field__icon--action & {
        @include mixins.button-action;
      }

      #{$parent} .kib-field__icon--action &:focus {
        @include mixins.button-action-focus;
      }
    }

    #{$parent} .kib-field__icon--action &.is-expanded .MuiButtonBase-root {
      @include mixins.button-action-expanded;
    } }
Description

deprecate when field new is supported

.kib-input-text__icon &__adornment-icon

.kib-input-text__icon &__adornment-icon { ... }.kib-input-text__icon &__adornment-icon { @include mixins.input-adornment-icon;

    .Mui-disabled & {
      @include mixins.input-adornment-icon-disabled;
    }

    #{$parent} .kib-field__icon--action .is-expanded & {
      @include mixins.input-adornment-icon-expanded;
    } }
Description

deprecate when field new is supported

.kib-field__action &__adornment

.kib-field__action &__adornment { ... }.kib-field__action &__adornment { &.MuiInputAdornment-root {
      @include mixins.input-adornment-new;

      &.is-disabled {
        @include mixins.button-action-disabled;
      }
    }

    .Mui-focusVisible {
      @include mixins.button-focus;
    }

    .MuiButtonBase-root {
      @include mixins.button-new;
    }

    &.is-expanded .MuiButtonBase-root {
      @include mixins.button-action-expanded;
    } }
Description

new datepicker specific styles

.kib-field__action .Mui-disabled &__adornment-icon

.kib-field__action .Mui-disabled &__adornment-icon { ... }.kib-field__action .Mui-disabled &__adornment-icon { @include mixins.input-adornment-icon-disabled; }
Description

new datepicker specific styles

// Now uses container queries for responsive sizing @mixin card-container

// Now uses container queries for responsive sizing
@mixin card-container { ... }// Now uses container queries for responsive sizing
@mixin card-container { width: unit.rem(264px);
  height: auto;

  @container (min-width: 361px) {
    width: unit.rem(319px);
  }

  @container (min-width: 648px) {
    width: unit.rem(296px);
  }

  @container (min-width: 1025px) {
    width: unit.rem(336px);
  }

  // Fallback for browsers without container queries
  @media (min-width: 361px) {
    width: unit.rem(319px);
  }

  @media (min-width: 648px) {
    width: unit.rem(296px);
  }

  @media (min-width: 1025px) {
    width: unit.rem(336px);
  } }
Description

Shared card sizing mixin

// Now uses container queries for responsive aspect ratio @mixin media-container

// Now uses container queries for responsive aspect ratio
@mixin media-container { ... }// Now uses container queries for responsive aspect ratio
@mixin media-container { width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;

  @container (min-width: #{$aspect-ratio-breakpoint}) {
    aspect-ratio: 16/7;
  }

  /// Fallback for browsers without aspect-ratio support
  @supports not (aspect-ratio: 1 / 1) {
    &::before {
      content: '';
      display: block;
      padding-top: math.percentage(math.div(9, 16)); // 56.25%
      min-height: unit.rem(124px);
    }

    @container (min-width: #{$aspect-ratio-breakpoint}) {
      &::before {
        padding-top: math.percentage(math.div(7, 16)); // ~43.75%
      }
    }

    // Fallback for browsers without container queries
    @media (min-width: #{$aspect-ratio-breakpoint}) {
      &::before {
        padding-top: math.percentage(math.div(7, 16)); // ~43.75%
      }
    }
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  } }
Description

Shared media container mixin

&__autoship-icon

Deprecated!

Kept to avoid a breaking change. Use autoship instead.

&__autoship-icon { ... }&__autoship-icon { @include mixins.autoship-icon; }

&__autoship-text

Deprecated!

Kept to avoid a breaking change. Use autoship instead.

&__autoship-text { ... }&__autoship-text { @include mixins.autoship-text;

    #{$parent}--condensed &,
    .kib-product-card--condensed & {
      @include mixins.autoship-text-condensed;
    } }

Mixins

root-container

@mixin root-container() { ... }@mixin root-container() { 
  @include typography.style-as('product-text-3');

  width: 100%;
  min-width: unit.rem(280px);
  max-width: unit.rem(460px);
  aspect-ratio: 4 / 3;
  background-color: color.get('ui-bg', '04');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: border.get('br02');
  padding: spacing.get('s3');
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: color.get('text', 'static', 'light', 'primary');
  font-weight: 600;
  cursor: pointer;

  /// Dark overlay for better text readability
  &::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.74%, rgba(0, 0, 0, 0.95) 79.14%);
    border-radius: border.get('br02');
    pointer-events: none;
    z-index: 1;
  }
 }
Description

Content styling for carousel items

Handles the visual presentation of item content including background, overlay effects, and content positioning. Includes a dark gradient overlay for better text readability.

Parameters

None.

Example
.kib-cover-stack-item {
  @include root-container;
}
Requires

meta-data

@mixin meta-data() { ... }@mixin meta-data() { 
  .kib-article-meta-data__date {
    color: color.get('text', 'static', 'light', 'primary');
  }
  .kib-article-meta-data__category {
    color: color.get('text', 'static', 'light', 'primary');
  }
 }
Description

Meta data styling

Styles the meta data for the cover stack item.

Parameters

None.

Example
.kib-cover-stack-item {
  @include meta-data;
Requires

root-container

@mixin root-container() { ... }@mixin root-container() { 
  container-type: inline-size;
  position: relative;
  width: 100%;
  max-width: unit.rem(700px);
  min-width: unit.rem(320px);
  margin: 0 auto;
  overflow: hidden;
  touch-action: none;
  user-select: none;
 }
Description

Root container mixin for the cover stack carousel

Sets up the main container with container queries for responsive behavior, touch handling, and proper sizing constraints.

Parameters

None.

Example
.kib-cover-stack {
  @include root-container;
}
Requires

item

@mixin item() { ... }@mixin item() { 
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: unit.rem(460px);
  min-width: unit.rem(280px);
  width: 90%;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.15s ease;
  pointer-events: none;
  cursor: pointer;
  will-change: transform, filter;
  user-select: none;

  &:focus-visible {
    border: unit.rem(2px) solid color.get('link', 'active', 'primary');
    border-radius: border.get('br02f');
  }
 }
Description

Base item styling for carousel items

Provides the foundational positioning and sizing for all carousel items. Items are absolutely positioned and have responsive width constraints.

Parameters

None.

Example
.kib-cover-stack__item {
  @include item;
}
Requires

item-content

@mixin item-content() { ... }@mixin item-content() { 
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: border.get('br02');
  position: relative;
  overflow: hidden;
 }
Description

Content styling for carousel items

Handles the visual presentation of item content including background, overlay effects, and content positioning. Includes a dark gradient overlay for better text readability.

Parameters

None.

Example
.kib-cover-stack__item-content {
  @include item-content;
}
Requires

active-item

@mixin active-item() { ... }@mixin active-item() { 
  z-index: 3;
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  cursor: default;
 }
Description

Active item styling

Applies to the currently focused/selected item in the carousel. Centers the item and gives it full opacity and interaction capabilities.

Parameters

None.

Example
.kib-cover-stack__item--active {
  @include active-item;
}

start-item

@mixin start-item() { ... }@mixin start-item() { 
  @include non-active-item;

  left: 50%;
  transform: translateX(-60%) scale(0.9);

  // Reveal a bit more on wider screens
  @include media.query('min-md') {
    transform: translateX(-70%) scale(0.9);
  }
 }
Description

Start item styling

Applies to items positioned at the beginning of the carousel. Positions items to the left with reduced scale and opacity.

Parameters

None.

Example
.kib-cover-stack__item--start {
  @include start-item;
}
Requires

end-item

@mixin end-item() { ... }@mixin end-item() { 
  @include non-active-item;
  left: 50%;
  transform: translateX(-40%) scale(0.9);

  // Reveal a bit more on wider screens
  @include media.query('min-md') {
    transform: translateX(-30%) scale(0.9);
  }
 }
Description

End item styling

Applies to items positioned at the end of the carousel. Positions items to the right with reduced scale and opacity.

Parameters

None.

Example
.kib-cover-stack__item--end {
  @include end-item;
}
Requires

non-active-item

@mixin non-active-item() { ... }@mixin non-active-item() { 
  filter: blur(unit.rem(2px));
  position: absolute;
  z-index: 2;
  opacity: 0.7;
  pointer-events: auto;
  cursor: pointer;
 }
Description

Non-active item styling

Applies to items that are not currently interactive. Disables pointer events and adds a blur effect for visual hierarchy.

Parameters

None.

Example
.kib-cover-stack__item--non-active {
  @include non-active-item;
}
Requires
Used by

direction-transition

@mixin direction-transition() { ... }@mixin direction-transition() { 
  .kib-cover-stack__item {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
 }
Description

Use inside .kib-cover-stack--dir-left and --dir-right modifiers so we keep all timing logic in mixins like the rest of the component.

Parameters

None.

sr-only

@mixin sr-only() { ... }@mixin sr-only() { 
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: unit.rem(1px);
  width: unit.rem(1px);
  margin: unit.rem(-1px);
  padding: 0;
  border: 0;
 }
Description

SR-only mixin Used to hide elements from the screen but keep them in the tab order.

Parameters

None.

Requires

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-focus-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-hover-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-subtle-active-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-border-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-focus-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-border-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-hover-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-border-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-tertiary-active-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-focus-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-hover-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-border-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-icon-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-secondary-active-text-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-overlay: #0000001A;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-3: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-2: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-1: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-icon-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-pressed-text-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-overlay: #FFFFFF24;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-halo-color: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-3: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-2: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-1: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-border-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-icon-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-focus-text-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-overlay: #FFFFFF24;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-3: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-2: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-1: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-icon-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-hover-text-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-overlay: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-3: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-2: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-1: #1c49c2;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-border-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-icon-color: #ffffff;
  --chirp-experimental-choice-dark-ct-button-action-primary-active-text-color: #ffffff;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-border-color: #cccccc33;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-bg-color: #cccccc33;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-border-color: #949494;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-border-color: #949494;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-border-color: #767676;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-border-color: #cccccc33;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-bg-color: #cccccc33;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-primary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-border-color: #949494;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-border-color: #767676;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-bg-color: #7aaee74d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-halo-color: #b8d7f3;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-bg-color: #7aaee726;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-primary: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-border-color: #7aaee7;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-primary: #7aaee7;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-focus-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-hover-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-subtle-active-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-border-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-focus-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-border-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-hover-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-border-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-tertiary-active-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-3: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-2: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-1: #D6E5FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-pressed-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-halo-color: #C2D7FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-focus-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-3: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-2: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-1: #EBF2FF;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-hover-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-3: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-2: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-1: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-icon-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-secondary-active-text-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-overlay: #0000001A;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-3: #1C49C200;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-2: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-1: #005AFE;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-icon-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-pressed-text-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-overlay: #FFFFFF24;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-halo-color: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-3: #1C49C200;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-2: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-1: #005AFE;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-border-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-icon-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-focus-text-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-overlay: #FFFFFF24;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-3: #1C49C200;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-2: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-1: #005AFE;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-icon-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-hover-text-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-active-overlay: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-3: #1C49C200;
  --chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-2: #1c49c2;
  --chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-1: #005AFE;
  --chirp-experimental-choice-light-ct-button-action-primary-active-border-color: #ffffff00;
  --chirp-experimental-choice-light-ct-button-action-primary-active-icon-color: #ffffff;
  --chirp-experimental-choice-light-ct-button-action-primary-active-text-color: #ffffff;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-border-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-border-color: #005AFE29;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-halo: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-halo: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-halo: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-border-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-border-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-border-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-border-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-primary: #121212;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-border-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-border-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-primary: #767676;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-border-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-border-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-border-color: #cccccc;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-bg-color: #005AFE29;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-bg-color: #005AFE14;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-primary: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-halo-color: #005AFE3D;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-border-color: #1c49c2;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-bg-color: #ffffff;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-tertiary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-secondary: #4d4d4d;
  --chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-primary: #1c49c2;
  --chirp-fresh-light-text-display: #3B6CF1;
  --chirp-fresh-light-ui-bg-brand-accent-07: #3fc1d3;
  --chirp-fresh-light-ui-bg-brand-accent-06: #CABAEB;
  --chirp-fresh-light-ui-bg-brand-accent-05: #C43900;
  --chirp-fresh-light-ui-bg-brand-accent-04: #FF5F2E;
  --chirp-fresh-light-ui-bg-brand-accent-03: #CA2949;
  --chirp-fresh-light-ui-bg-brand-accent-02: #FF5E7E;
  --chirp-fresh-light-ui-bg-brand-accent-01: #CEFFE8;
  --chirp-fresh-light-ui-bg-brand-alternate: #2654D4;
  --chirp-fresh-light-ui-bg-brand-primary: #3B6CF1;
  --chirp-fresh-light-field-filter-text: #002957;
  --chirp-fresh-light-field-filter-bg-pressed: #87A5F7;
  --chirp-fresh-light-field-filter-bg-hover: #D4DEFC;
  --chirp-fresh-light-field-filter-bg: #ECF1FE;
  --chirp-fresh-light-field-09: #0000001a;
  --chirp-fresh-light-field-08: #7aaee74d;
  --chirp-fresh-light-field-07: #051756;
  --chirp-fresh-light-field-06: #bc2848;
  --chirp-fresh-light-field-05: #121212;
  --chirp-fresh-light-field-04: #1c49c2;
  --chirp-fresh-light-field-03: #dbebf9;
  --chirp-fresh-light-field-02: #eeeeee;
  --chirp-fresh-light-field-primary: #ffffff;
  --chirp-fresh-light-field-10: #ee667f26;
  --chirp-fresh-light-action-utility-primary-text: #2654D4;
  --chirp-fresh-light-action-utility-primary-03: #E8EEFC;
  --chirp-fresh-light-action-utility-primary-02: #C9D7F9;
  --chirp-fresh-light-action-utility-primary-primary: #ffffff;
  --chirp-fresh-light-action-cta-alternate-text: #E7055F;
  --chirp-fresh-light-action-cta-alternate-03: #e7055f26;
  --chirp-fresh-light-action-cta-alternate-primary: #ffffff;
  --chirp-fresh-light-action-cta-alternate-02: #e7055f4d;
  --chirp-fresh-light-action-cta-primary-text: #ffffff;
  --chirp-fresh-light-action-cta-primary-02: #8A0037;
  --chirp-fresh-light-action-cta-primary-03: #A60042;
  --chirp-fresh-light-action-cta-primary-primary: #E7055F;
  --chirp-fresh-light-link-focus-primary: #1A3FB3;
  --chirp-fresh-light-link-pressed-primary: #13318F;
  --chirp-fresh-light-link-hover-primary: #1A3FB3;
  --chirp-fresh-light-link-visited-primary: #7339C6;
  --chirp-fresh-light-link-active-primary: #2654D4;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-border-disabled: #eeeeee;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-border-pressed: #121212;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-border-focus: #767676;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-border-hover: #eeeeee;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-border-active: #767676;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-disabled: #eeeeee;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-pressed: #cccccc;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-focus: #ffffff;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-hover: #eeeeee;
  --chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-active: #ffffff;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-border-pressed: #333333;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-border-focus: #333333;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-border-hover: #333333;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-border-active: #949494;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-bg-pressed: #cccccc;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-bg-focus: #ffffff;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-bg-hover: #eeeeee;
  --chirp-chirp-2025-light-action-choice-unavailable-selected-bg-active: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-unselected-border-error: #bc2848;
  --chirp-chirp-2025-light-action-choice-available-unselected-border-pressed: #1c49c2;
  --chirp-chirp-2025-light-action-choice-available-unselected-border-focus: #121212;
  --chirp-chirp-2025-light-action-choice-available-unselected-border-hover: #121212;
  --chirp-chirp-2025-light-action-choice-available-unselected-border-active: #767676;
  --chirp-chirp-2025-light-action-choice-available-unselected-bg-error: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-unselected-bg-pressed: #b8d7f3;
  --chirp-chirp-2025-light-action-choice-available-unselected-bg-focus: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-unselected-bg-hover: #dbebf9;
  --chirp-chirp-2025-light-action-choice-available-unselected-bg-active: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-selected-border-error: #bc2848;
  --chirp-chirp-2025-light-action-choice-available-selected-border-pressed: #1c49c2;
  --chirp-chirp-2025-light-action-choice-available-selected-border-focus: #1c49c2;
  --chirp-chirp-2025-light-action-choice-available-selected-border-hover: #1c49c2;
  --chirp-chirp-2025-light-action-choice-available-selected-border-active: #1c49c2;
  --chirp-chirp-2025-light-action-choice-available-selected-bg-error: #EFF5FC;
  --chirp-chirp-2025-light-action-choice-available-selected-bg-pressed: #b8d7f3;
  --chirp-chirp-2025-light-action-choice-available-selected-bg-focus: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-selected-bg-hover: #ffffff;
  --chirp-chirp-2025-light-action-choice-available-selected-bg-active: #EDF3FF;
  --chirp-chirp-2025-light-menu-alternate-active-primary: #ffffff;
  --chirp-chirp-2025-light-menu-alternate-focused-primary: #ffffff;
  --chirp-chirp-2025-light-menu-primary-active-primary: #ffffff;
  --chirp-chirp-2025-light-menu-primary-focused-primary: #ffffff;
  --chirp-chirp-2025-light-text-display: #002957;
  --chirp-chirp-2025-light-text-error: #bc2848;
  --chirp-chirp-2025-light-text-tertiary: #767676;
  --chirp-chirp-2025-light-text-placeholder: #cccccc;
  --chirp-chirp-2025-light-text-secondary: #4d4d4d;
  --chirp-chirp-2025-light-text-primary: #121212;
  --chirp-chirp-2025-light-ui-bg-primary: #fcfcfb;
  --chirp-insurance-light-ui-bg-brand-accent-10: #edf5fc;
  --chirp-enterprise-light-message-neutral-06: #eeeeee;
  --chirp-enterprise-light-message-neutral-05: #949494;
  --chirp-enterprise-light-message-neutral-04: #121212;
  --chirp-enterprise-light-message-neutral-03: #cccccc;
  --chirp-enterprise-light-message-neutral-02: #767676;
  --chirp-enterprise-light-message-neutral-primary: #333333;
  --chirp-enterprise-light-message-info-06: #DDE4F6;
  --chirp-enterprise-light-message-info-05: #7aaee7;
  --chirp-enterprise-light-message-info-04: #031657;
  --chirp-enterprise-light-message-info-03: #BBC9ED;
  --chirp-enterprise-light-message-info-02: #1c49c2;
  --chirp-enterprise-light-message-info-primary: #1c49c2;
  --chirp-enterprise-light-message-error-06: #F5DFE4;
  --chirp-enterprise-light-message-error-05: #f490a2;
  --chirp-enterprise-light-message-error-04: #4B101D;
  --chirp-enterprise-light-message-error-03: #EBBFC9;
  --chirp-enterprise-light-message-error-02: #bc2848;
  --chirp-enterprise-light-message-error-primary: #bc2848;
  --chirp-enterprise-light-message-warning-06: #fff1c4;
  --chirp-enterprise-light-message-warning-05: #cccccc;
  --chirp-enterprise-light-message-warning-04: #121212;
  --chirp-enterprise-light-message-warning-03: #ffe362;
  --chirp-enterprise-light-message-warning-02: #dbad03;
  --chirp-enterprise-light-message-warning-primary: #ffc80c;
  --chirp-enterprise-light-message-success-06: #D9E9DF;
  --chirp-enterprise-light-message-success-05: #a3dfb1;
  --chirp-enterprise-light-message-success-04: #003f00;
  --chirp-enterprise-light-message-success-03: #B3D3C0;
  --chirp-enterprise-light-message-success-02: #006b2b;
  --chirp-enterprise-light-message-success-primary: #006b2b;
  --chirp-enterprise-light-menu-primary-focused-border: #e5eaf0;
  --chirp-enterprise-light-menu-primary-focused-text: #e5eaf0;
  --chirp-enterprise-light-menu-primary-focused-primary: #1b4c86;
  --chirp-enterprise-light-menu-primary-pressed-text: #becadc;
  --chirp-enterprise-light-menu-primary-pressed-primary: #1b4c86;
  --chirp-enterprise-light-menu-primary-hover-text: #e5eaf0;
  --chirp-enterprise-light-menu-primary-hover-primary: #22538f;
  --chirp-enterprise-light-menu-primary-selected-text: #e5eaf0;
  --chirp-enterprise-light-menu-primary-selected-primary: #1b4c86;
  --chirp-enterprise-light-menu-primary-active-text: #ffffff;
  --chirp-enterprise-light-menu-primary-active-primary: #002957;
  --chirp-enterprise-light-ui-bg-brand-accent-06: #ff9800;
  --chirp-enterprise-light-ui-bg-brand-accent-05: #ffaf31;
  --chirp-enterprise-light-ui-bg-brand-accent-04: #ffd490;
  --chirp-enterprise-light-ui-bg-brand-accent-03: #4986da;
  --chirp-enterprise-light-ui-bg-brand-accent-02: #7aaee7;
  --chirp-enterprise-light-ui-bg-brand-accent-01: #dbebf9;
  --chirp-enterprise-light-ui-bg-brand-alternate: #1b4c86;
  --chirp-enterprise-light-ui-bg-brand-primary: #002957;
  --chirp-petmd-light-logos-petmd-inverse: #ffffff;
  --chirp-petmd-light-logos-petmd-primary: #672950;
  --chirp-petmd-light-static-teal1-500: #66c9c1;
  --chirp-petmd-light-chip-02-bg-high: #b33e98;
  --chirp-petmd-light-chip-02-bg-low: #d8bfd3;
  --chirp-petmd-light-chip-02-bg-primary: #d8bfd3;
  --chirp-petmd-light-chip-01-text-02: #672950;
  --chirp-petmd-light-chip-01-bg-low: #f4f4f2;
  --chirp-petmd-light-chip-01-bg-primary: #f4f4f2;
  --chirp-petmd-light-message-info-03: #f4f4f2;
  --chirp-petmd-light-message-info-02: #672950;
  --chirp-petmd-light-message-info-primary: #002957;
  --chirp-petmd-light-field-filter-text: #672950;
  --chirp-petmd-light-field-09: #0000001a;
  --chirp-petmd-light-field-08: #eae0e7;
  --chirp-petmd-light-field-07: #4d4d4d;
  --chirp-petmd-light-field-06: #bc2848;
  --chirp-petmd-light-field-05: #121212;
  --chirp-petmd-light-field-04: #672950;
  --chirp-petmd-light-field-03: #eae0e7;
  --chirp-petmd-light-field-02: #f4f4f2;
  --chirp-petmd-light-field-primary: #ffffff;
  --chirp-petmd-light-field-10: #ee667f26;
  --chirp-petmd-light-action-selection-control-on-02: #672950;
  --chirp-petmd-light-action-selection-control-on-primary: #b33e98;
  --chirp-petmd-light-action-switch-background-on-03: #cedae3;
  --chirp-petmd-light-action-switch-background-on-02: #192c58;
  --chirp-petmd-light-action-switch-background-on-primary: #002957;
  --chirp-petmd-light-action-cta-alternate-text: #b33e98;
  --chirp-petmd-light-action-cta-alternate-03: #dad1d7;
  --chirp-petmd-light-action-cta-alternate-primary: #ffffff;
  --chirp-petmd-light-action-cta-alternate-02: #dfcfdd;
  --chirp-petmd-light-action-cta-primary-text: #ffffff;
  --chirp-petmd-light-action-cta-primary-02: #802864;
  --chirp-petmd-light-action-cta-primary-03: #C14DA6;
  --chirp-petmd-light-action-cta-primary-primary: #b33e98;
  --chirp-petmd-light-link-focus-secondary: #192c58;
  --chirp-petmd-light-link-focus-primary: #672950;
  --chirp-petmd-light-link-pressed-secondary: #333333;
  --chirp-petmd-light-link-pressed-primary: #4d1e3b;
  --chirp-petmd-light-link-hover-secondary: #333333;
  --chirp-petmd-light-link-hover-primary: #401932;
  --chirp-petmd-light-link-visited-secondary: #070d1a;
  --chirp-petmd-light-link-visited-primary: #802864;
  --chirp-petmd-light-link-active-secondary: #192c58;
  --chirp-petmd-light-link-active-primary: #b33e98;
  --chirp-petmd-light-text-display: #192c58;
  --chirp-petmd-light-ui-bg-overlay-02: #fffffd;
  --chirp-petmd-light-ui-bg-brand-accent-09: #66c9c1;
  --chirp-petmd-light-ui-bg-brand-accent-08: #dfcfdd;
  --chirp-petmd-light-ui-bg-brand-accent-07: #eae0e7;
  --chirp-petmd-light-ui-bg-brand-accent-06: #dce8e7;
  --chirp-petmd-light-ui-bg-brand-accent-05: #cfe3e2;
  --chirp-petmd-light-ui-bg-brand-accent-04: #ccfbf7;
  --chirp-petmd-light-ui-bg-brand-accent-03: #00a997;
  --chirp-petmd-light-ui-bg-brand-accent-02: #dfcfdd;
  --chirp-petmd-light-ui-bg-brand-accent-01: #802864;
  --chirp-petmd-light-ui-bg-brand-accent-13: #dbebf9;
  --chirp-petmd-light-ui-bg-brand-accent-12: #b7dad7;
  --chirp-petmd-light-ui-bg-brand-accent-11: #cedae3;
  --chirp-petmd-light-ui-bg-brand-accent-10: #cfd2d8;
  --chirp-petmd-light-ui-bg-brand-alternate: #002957;
  --chirp-petmd-light-ui-bg-brand-primary: #672950;
  --chirp-petmd-light-ui-bg-07: #d3d2cd;
  --chirp-petmd-light-ui-bg-06: #002957;
  --chirp-petmd-light-ui-bg-05: #d3d2cd;
  --chirp-petmd-light-ui-bg-04: #1a0a141a;
  --chirp-petmd-light-ui-bg-03: #fffffd;
  --chirp-petmd-light-ui-bg-02: #f4f4f2;
  --chirp-base-dark-shadow-high-emphasis: #ffffff40;
  --chirp-base-dark-shadow-medium-emphasis: #ffffff1a;
  --chirp-base-dark-shadow-low-emphasis: #ffffff1a;
  --chirp-base-dark-choice-available-other-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-unselected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-other-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-other-unselected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-disabled-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-unselected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-other-unselected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-other-unselected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-error-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-error-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-unselected-pressed-border-color: #949494;
  --chirp-base-dark-choice-available-other-unselected-pressed-bg-color: #767676;
  --chirp-base-dark-choice-available-other-unselected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-pressed-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-pressed-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-other-unselected-focus-border-color: #767676;
  --chirp-base-dark-choice-available-other-unselected-focus-bg-color: #666666;
  --chirp-base-dark-choice-available-other-unselected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-focus-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-focus-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-unselected-hover-border-color: #767676;
  --chirp-base-dark-choice-available-other-unselected-hover-bg-color: #666666;
  --chirp-base-dark-choice-available-other-unselected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-hover-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-hover-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-unselected-active-border-color: #767676;
  --chirp-base-dark-choice-available-other-unselected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-other-unselected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-active-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-unselected-active-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-selected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-other-selected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-other-selected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-disabled-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-selected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-other-selected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-other-selected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-error-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-error-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-selected-pressed-border-color: #949494;
  --chirp-base-dark-choice-available-other-selected-pressed-bg-color: #767676;
  --chirp-base-dark-choice-available-other-selected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-pressed-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-pressed-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-other-selected-focus-border-color: #949494;
  --chirp-base-dark-choice-available-other-selected-focus-bg-color: #666666;
  --chirp-base-dark-choice-available-other-selected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-focus-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-focus-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-selected-hover-border-color: #949494;
  --chirp-base-dark-choice-available-other-selected-hover-bg-color: #666666;
  --chirp-base-dark-choice-available-other-selected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-hover-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-hover-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-other-selected-active-border-color: #949494;
  --chirp-base-dark-choice-available-other-selected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-other-selected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-active-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-other-selected-active-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-unselected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-no-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-no-unselected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-disabled-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-unselected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-no-unselected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-no-unselected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-error-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-error-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-unselected-pressed-border-color: #949494;
  --chirp-base-dark-choice-available-no-unselected-pressed-bg-color: #767676;
  --chirp-base-dark-choice-available-no-unselected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-pressed-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-pressed-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-no-unselected-focus-border-color: #767676;
  --chirp-base-dark-choice-available-no-unselected-focus-bg-color: #666666;
  --chirp-base-dark-choice-available-no-unselected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-focus-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-focus-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-unselected-hover-border-color: #767676;
  --chirp-base-dark-choice-available-no-unselected-hover-bg-color: #666666;
  --chirp-base-dark-choice-available-no-unselected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-hover-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-hover-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-unselected-active-border-color: #767676;
  --chirp-base-dark-choice-available-no-unselected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-no-unselected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-active-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-unselected-active-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-selected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-no-selected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-no-selected-disabled-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-selected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-no-selected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-no-selected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-error-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-error-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-selected-pressed-border-color: #949494;
  --chirp-base-dark-choice-available-no-selected-pressed-bg-color: #767676;
  --chirp-base-dark-choice-available-no-selected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-pressed-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-pressed-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-no-selected-focus-border-color: #949494;
  --chirp-base-dark-choice-available-no-selected-focus-bg-color: #666666;
  --chirp-base-dark-choice-available-no-selected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-focus-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-focus-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-selected-hover-border-color: #949494;
  --chirp-base-dark-choice-available-no-selected-hover-bg-color: #666666;
  --chirp-base-dark-choice-available-no-selected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-hover-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-hover-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-no-selected-active-border-color: #949494;
  --chirp-base-dark-choice-available-no-selected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-no-selected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-active-text-color-secondary: #eeeeee;
  --chirp-base-dark-choice-available-no-selected-active-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-unselected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-yes-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-yes-unselected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-disabled-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-unselected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-yes-unselected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-yes-unselected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-error-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-error-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-unselected-pressed-border-color: #7aaee7;
  --chirp-base-dark-choice-available-yes-unselected-pressed-bg-color: #7aaee74d;
  --chirp-base-dark-choice-available-yes-unselected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-pressed-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-pressed-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-yes-unselected-focus-border-color: #949494;
  --chirp-base-dark-choice-available-yes-unselected-focus-bg-color: #7aaee726;
  --chirp-base-dark-choice-available-yes-unselected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-focus-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-focus-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-unselected-hover-border-color: #949494;
  --chirp-base-dark-choice-available-yes-unselected-hover-bg-color: #7aaee726;
  --chirp-base-dark-choice-available-yes-unselected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-hover-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-hover-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-unselected-active-border-color: #767676;
  --chirp-base-dark-choice-available-yes-unselected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-yes-unselected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-unselected-active-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-unselected-active-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-disabled-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-selected-disabled-border-color: #cccccc33;
  --chirp-base-dark-choice-available-yes-selected-disabled-bg-color: #cccccc33;
  --chirp-base-dark-choice-available-yes-selected-disabled-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-disabled-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-disabled-text-color-primary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-error-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-selected-error-border-color: #ee667f;
  --chirp-base-dark-choice-available-yes-selected-error-bg-color: #121212;
  --chirp-base-dark-choice-available-yes-selected-error-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-error-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-error-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-pressed-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-selected-pressed-border-color: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-pressed-bg-color: #7aaee74d;
  --chirp-base-dark-choice-available-yes-selected-pressed-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-pressed-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-pressed-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-focus-halo-color: #b8d7f3;
  --chirp-base-dark-choice-available-yes-selected-focus-border-color: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-focus-bg-color: #7aaee726;
  --chirp-base-dark-choice-available-yes-selected-focus-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-focus-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-focus-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-hover-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-selected-hover-border-color: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-hover-bg-color: #7aaee726;
  --chirp-base-dark-choice-available-yes-selected-hover-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-hover-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-hover-text-color-primary: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-active-halo-color: #ffffff00;
  --chirp-base-dark-choice-available-yes-selected-active-border-color: #7aaee7;
  --chirp-base-dark-choice-available-yes-selected-active-bg-color: #121212;
  --chirp-base-dark-choice-available-yes-selected-active-text-color-tertiary: #eeeeee;
  --chirp-base-dark-choice-available-yes-selected-active-text-color-secondary: #ffffff;
  --chirp-base-dark-choice-available-yes-selected-active-text-color-primary: #7aaee7;
  --chirp-base-dark-menu-quick-disabled-text: #ffffff;
  --chirp-base-dark-menu-quick-disabled-primary: #cccccc;
  --chirp-base-dark-menu-quick-pressed-text: #ffffff;
  --chirp-base-dark-menu-quick-pressed-primary: #666666;
  --chirp-base-dark-menu-quick-active-text: #ffffff;
  --chirp-base-dark-menu-quick-active-primary: #333333;
  --chirp-base-dark-chip-07-text-02: #1c49c2;
  --chirp-base-dark-chip-07-text: #ffffff;
  --chirp-base-dark-chip-07-bg-high: #00000099;
  --chirp-base-dark-chip-07-bg-low: #00000080;
  --chirp-base-dark-chip-07-bg-primary: #00000080;
  --chirp-base-dark-chip-06-text-02: #002957;
  --chirp-base-dark-chip-06-text: #002957;
  --chirp-base-dark-chip-06-bg-high: #becadc;
  --chirp-base-dark-chip-06-bg-low: #e5eaf0;
  --chirp-base-dark-chip-06-bg-primary: #ffffff;
  --chirp-base-dark-chip-05-text-02: #ffffff;
  --chirp-base-dark-chip-05-text: #ffffff;
  --chirp-base-dark-chip-05-bg-high: #010b39;
  --chirp-base-dark-chip-05-bg-low: #1c49c2;
  --chirp-base-dark-chip-05-bg-primary: #1c49c2;
  --chirp-base-dark-chip-04-text-02: #dbebf9;
  --chirp-base-dark-chip-04-text: #ffffff;
  --chirp-base-dark-chip-04-bg-high: #ffffff40;
  --chirp-base-dark-chip-04-bg-low: #cccccc4d;
  --chirp-base-dark-chip-04-bg-primary: #cccccc26;
  --chirp-base-dark-chip-03-text-02: #dbebf9;
  --chirp-base-dark-chip-03-text: #ffffff;
  --chirp-base-dark-chip-03-bg-high: #ffffff40;
  --chirp-base-dark-chip-03-bg-low: #cccccc4d;
  --chirp-base-dark-chip-03-bg-primary: #cccccc26;
  --chirp-base-dark-chip-02-text-02: #121212;
  --chirp-base-dark-chip-02-text: #121212;
  --chirp-base-dark-chip-02-bg-high: #010b39;
  --chirp-base-dark-chip-02-bg-low: #002957;
  --chirp-base-dark-chip-02-bg-primary: #002957;
  --chirp-base-dark-chip-01-text-02: #b8d7f3;
  --chirp-base-dark-chip-01-text: #ffffff;
  --chirp-base-dark-chip-01-bg-high: #767676;
  --chirp-base-dark-chip-01-bg-low: #666666;
  --chirp-base-dark-chip-01-bg-primary: #666666;
  --chirp-base-dark-field-filter-text: #ffffff;
  --chirp-base-dark-field-filter-bg-pressed: #666666;
  --chirp-base-dark-field-filter-bg-hover: #4d4d4d;
  --chirp-base-dark-field-filter-bg: #333333;
  --chirp-base-dark-field-06: #ee667f;
  --chirp-base-dark-field-05: #cccccc;
  --chirp-base-dark-field-04: #7aaee7;
  --chirp-base-dark-field-03: #1b4c86;
  --chirp-base-dark-field-02: #333333;
  --chirp-base-dark-field-primary: #00000099;
  --chirp-base-dark-icon-red: #ee667f;
  --chirp-base-dark-icon-green2: #7bd391;
  --chirp-base-dark-icon-green1: #a3dfb1;
  --chirp-base-dark-icon-chewy-navy: #e5eaf0;
  --chirp-base-dark-icon-chewy-blue: #dbebf9;
  --chirp-base-dark-icon-androidmodal: #7aaee7;
  --chirp-base-dark-icon-vetdiet: #becadc;
  --chirp-base-dark-icon-personalized: #becadc;
  --chirp-base-dark-icon-exclusive: #dbebf9;
  --chirp-base-dark-icon-fresh: #a3dfb1;
  --chirp-base-dark-icon-rx: #e5eaf0;
  --chirp-base-dark-icon-frozen: #dbebf9;
  --chirp-base-dark-logos-petmd-secondary: #ffffff;
  --chirp-base-dark-logos-petmd-primary: #ffffff;
  --chirp-base-dark-logos-loyalty-primary: #ffffff;
  --chirp-base-dark-logos-ext-tiktok-02: #000;
  --chirp-base-dark-logos-ext-tiktok-primary: #fff;
  --chirp-base-dark-logos-ext-pinterest-primary: #fff;
  --chirp-base-dark-logos-ext-google-primary: #ffffff;
  --chirp-base-dark-logos-health-primary: #ffffff;
  --chirp-base-dark-logos-chewy-primary: #ffffff;
  --chirp-base-dark-logos-as-secondary: #ffffff;
  --chirp-base-dark-logos-as-primary: #ffffff;
  --chirp-base-dark-ui-elements-controls-always-dark-selected: #121212;
  --chirp-base-dark-ui-elements-controls-always-dark-hover: #cccccc;
  --chirp-base-dark-ui-elements-controls-always-dark-active: #00000080;
  --chirp-base-dark-ui-elements-controls-always-light-selected: #ffffff;
  --chirp-base-dark-ui-elements-controls-always-light-hover: #cccccc;
  --chirp-base-dark-ui-elements-controls-always-light-active: #ffffff99;
  --chirp-base-dark-ui-elements-controls-inverse-selected: #121212;
  --chirp-base-dark-ui-elements-controls-inverse-hover: #cccccc;
  --chirp-base-dark-ui-elements-controls-inverse-active: #00000080;
  --chirp-base-dark-ui-elements-controls-default-selected: #ffffff;
  --chirp-base-dark-ui-elements-controls-default-hover: #767676;
  --chirp-base-dark-ui-elements-controls-default-active: #ffffff99;
  --chirp-base-dark-ui-elements-rating-overlay: #ffffff40;
  --chirp-base-dark-ui-elements-rating-02: #ffc76d;
  --chirp-base-dark-ui-elements-rating-primary: #ff9800;
  --chirp-base-dark-ui-elements-privacy-02: #ffffff;
  --chirp-base-dark-ui-elements-privacy-primary: #7aaee7;
  --chirp-base-dark-ui-elements-flag-out-of-stock-text: #ffffff;
  --chirp-base-dark-ui-elements-flag-out-of-stock-primary: #4d4d4d;
  --chirp-base-dark-ui-elements-skeleton-03: #ffffff1a;
  --chirp-base-dark-ui-elements-skeleton-02: #ffffff14;
  --chirp-base-dark-ui-elements-skeleton-primary: #333333;
  --chirp-base-dark-ui-elements-price-03: #ffffff;
  --chirp-base-dark-ui-elements-price-02: #949494;
  --chirp-base-dark-ui-elements-price-primary: #e74865;
  --chirp-base-dark-link-focus-tertiary: #b8d7f3;
  --chirp-base-dark-link-focus-inverse: #1c49c2;
  --chirp-base-dark-link-focus-secondary: #eeeeee;
  --chirp-base-dark-link-focus-primary: #b8d7f3;
  --chirp-base-dark-link-pressed-inverse: #031657;
  --chirp-base-dark-link-pressed-secondary: #cccccc;
  --chirp-base-dark-link-pressed-primary: #7aaee7;
  --chirp-base-dark-link-hover-inverse: #031657;
  --chirp-base-dark-link-hover-secondary: #cccccc;
  --chirp-base-dark-link-hover-primary: #7aaee7;
  --chirp-base-dark-link-visited-inverse: #543577;
  --chirp-base-dark-link-visited-secondary: #cccccc;
  --chirp-base-dark-link-visited-primary: #d5c7e6;
  --chirp-base-dark-link-active-inverse: #1c49c2;
  --chirp-base-dark-link-active-secondary: #eeeeee;
  --chirp-base-dark-link-active-primary: #b8d7f3;
  --chirp-base-dark-message-caution-06: #ffffff1a;
  --chirp-base-dark-message-caution-05: #ffffff40;
  --chirp-base-dark-message-caution-04: #ffc80c80;
  --chirp-base-dark-message-caution-03: #ffe362;
  --chirp-base-dark-message-caution-02: #121212;
  --chirp-base-dark-message-caution-primary: #ffe362;
  --chirp-base-dark-message-info-subtle-06: #ffffff1a;
  --chirp-base-dark-message-info-subtle-05: #ffffff40;
  --chirp-base-dark-message-info-subtle-04: #ffffff;
  --chirp-base-dark-message-info-subtle-03: #eeeeee;
  --chirp-base-dark-message-info-subtle-02: #4986da;
  --chirp-base-dark-message-info-subtle-primary: #4986da;
  --chirp-base-dark-message-info-06: #ffffff1a;
  --chirp-base-dark-message-info-05: #ffffff40;
  --chirp-base-dark-message-info-04: #ffffff;
  --chirp-base-dark-message-info-03: #2661ce80;
  --chirp-base-dark-message-info-02: #7aaee7;
  --chirp-base-dark-message-info-primary: #4986da;
  --chirp-base-dark-message-error-06: #ffffff1a;
  --chirp-base-dark-message-error-05: #ffffff40;
  --chirp-base-dark-message-error-04: #ffffff;
  --chirp-base-dark-message-error-03: #e7486580;
  --chirp-base-dark-message-error-02: #f490a2;
  --chirp-base-dark-message-error-primary: #ee667f;
  --chirp-base-dark-message-warning-06: #ffffff1a;
  --chirp-base-dark-message-warning-05: #ffffff40;
  --chirp-base-dark-message-warning-04: #ffffff;
  --chirp-base-dark-message-warning-03: #ffc80c80;
  --chirp-base-dark-message-warning-02: #fff1c4;
  --chirp-base-dark-message-warning-primary: #ffe362;
  --chirp-base-dark-message-success-06: #ffffff1a;
  --chirp-base-dark-message-success-05: #ffffff40;
  --chirp-base-dark-message-success-04: #ffffff;
  --chirp-base-dark-message-success-03: #5cc97980;
  --chirp-base-dark-message-success-02: #a3dfb1;
  --chirp-base-dark-message-success-primary: #5cc979;
  --chirp-base-dark-action-choice-unavailable-unselected-border-disabled: #666666;
  --chirp-base-dark-action-choice-unavailable-unselected-border-pressed: #ffffff;
  --chirp-base-dark-action-choice-unavailable-unselected-border-focus: #767676;
  --chirp-base-dark-action-choice-unavailable-unselected-border-hover: #949494;
  --chirp-base-dark-action-choice-unavailable-unselected-border-active: #767676;
  --chirp-base-dark-action-choice-unavailable-unselected-bg-disabled: #333333;
  --chirp-base-dark-action-choice-unavailable-unselected-bg-pressed: #cccccc4d;
  --chirp-base-dark-action-choice-unavailable-unselected-bg-focus: #121212;
  --chirp-base-dark-action-choice-unavailable-unselected-bg-hover: #cccccc26;
  --chirp-base-dark-action-choice-unavailable-unselected-bg-active: #121212;
  --chirp-base-dark-action-choice-unavailable-selected-border-pressed: #cccccc;
  --chirp-base-dark-action-choice-unavailable-selected-border-focus: #cccccc;
  --chirp-base-dark-action-choice-unavailable-selected-border-hover: #cccccc;
  --chirp-base-dark-action-choice-unavailable-selected-border-active: #949494;
  --chirp-base-dark-action-choice-unavailable-selected-bg-pressed: #cccccc4d;
  --chirp-base-dark-action-choice-unavailable-selected-bg-focus: #121212;
  --chirp-base-dark-action-choice-unavailable-selected-bg-hover: #333333;
  --chirp-base-dark-action-choice-unavailable-selected-bg-active: #121212;
  --chirp-base-dark-action-choice-available-unselected-border-error: #ee667f;
  --chirp-base-dark-action-choice-available-unselected-border-pressed: #7aaee7;
  --chirp-base-dark-action-choice-available-unselected-border-focus: #ffffff;
  --chirp-base-dark-action-choice-available-unselected-border-hover: #ffffff;
  --chirp-base-dark-action-choice-available-unselected-border-active: #767676;
  --chirp-base-dark-action-choice-available-unselected-bg-error: #121212;
  --chirp-base-dark-action-choice-available-unselected-bg-pressed: #7aaee74d;
  --chirp-base-dark-action-choice-available-unselected-bg-focus: #121212;
  --chirp-base-dark-action-choice-available-unselected-bg-hover: #7aaee726;
  --chirp-base-dark-action-choice-available-unselected-bg-active: #121212;
  --chirp-base-dark-action-choice-available-selected-border-error: #ee667f;
  --chirp-base-dark-action-choice-available-selected-border-pressed: #7aaee7;
  --chirp-base-dark-action-choice-available-selected-border-focus: #7aaee7;
  --chirp-base-dark-action-choice-available-selected-border-hover: #7aaee7;
  --chirp-base-dark-action-choice-available-selected-border-active: #7aaee7;
  --chirp-base-dark-action-choice-available-selected-bg-error: #1c49c24d;
  --chirp-base-dark-action-choice-available-selected-bg-pressed: #7aaee74d;
  --chirp-base-dark-action-choice-available-selected-bg-focus: #121212;
  --chirp-base-dark-action-choice-available-selected-bg-hover: #7aaee726;
  --chirp-base-dark-action-choice-available-selected-bg-active: #121212;
  --chirp-base-dark-action-view-toggle-on-border: #767676;
  --chirp-base-dark-action-view-toggle-on-default-bg: #121212;
  --chirp-base-dark-action-view-toggle-off-pressed-bg: #000000;
  --chirp-base-dark-action-view-toggle-off-hover-bg: #767676;
  --chirp-base-dark-action-view-toggle-off-default-bg: #333333;
  --chirp-base-dark-action-view-toggle-container-border: #767676;
  --chirp-base-dark-action-view-toggle-container-default-bg: #333333;
  --chirp-base-dark-action-inverse-alternate-text: #7aaee7;
  --chirp-base-dark-action-inverse-alternate-03: #7aaee726;
  --chirp-base-dark-action-inverse-alternate-02: #7aaee74d;
  --chirp-base-dark-action-inverse-alternate-primary: #121212;
  --chirp-base-dark-action-inverse-primary-text: #121212;
  --chirp-base-dark-action-inverse-primary-03: #4986da;
  --chirp-base-dark-action-inverse-primary-02: #dbebf9;
  --chirp-base-dark-action-inverse-primary-primary: #7aaee7;
  --chirp-base-dark-action-nudge-alternate-text: #7bd391;
  --chirp-base-dark-action-nudge-alternate-03: #006b2b26;
  --chirp-base-dark-action-nudge-alternate-02: #006b2b4d;
  --chirp-base-dark-action-nudge-alternate-primary: #121212;
  --chirp-base-dark-action-nudge-primary-text: #121212;
  --chirp-base-dark-action-nudge-primary-03: #5cc979;
  --chirp-base-dark-action-nudge-primary-02: #c7ebcf;
  --chirp-base-dark-action-nudge-primary-primary: #7bd391;
  --chirp-base-dark-action-danger-alternate-text: #ee667f;
  --chirp-base-dark-action-danger-alternate-03: #ee667f26;
  --chirp-base-dark-action-danger-alternate-02: #ee667f4d;
  --chirp-base-dark-action-danger-alternate-primary: #121212;
  --chirp-base-dark-action-danger-primary-text: #121212;
  --chirp-base-dark-action-danger-primary-03: #e74865;
  --chirp-base-dark-action-danger-primary-02: #f9bbc7;
  --chirp-base-dark-action-danger-primary-primary: #ee667f;
  --chirp-base-dark-action-utility-alternate-text: #cccccc;
  --chirp-base-dark-action-utility-alternate-03: #cccccc26;
  --chirp-base-dark-action-utility-alternate-02: #cccccc4d;
  --chirp-base-dark-action-utility-alternate-primary: #121212;
  --chirp-base-dark-action-utility-primary-text: #121212;
  --chirp-base-dark-action-utility-primary-03: #949494;
  --chirp-base-dark-action-utility-primary-02: #ffffff;
  --chirp-base-dark-action-utility-primary-primary: #cccccc;
  --chirp-base-dark-action-cta-primary-text: #121212;
  --chirp-base-dark-action-cta-primary-03: #4986da;
  --chirp-base-dark-action-cta-primary-02: #dbebf9;
  --chirp-base-dark-action-cta-primary-primary: #7aaee7;
  --chirp-base-dark-action-cta-alternate-text: #7aaee7;
  --chirp-base-dark-action-cta-alternate-03: #7aaee726;
  --chirp-base-dark-action-cta-alternate-02: #7aaee74d;
  --chirp-base-dark-action-cta-alternate-primary: #121212;
  --chirp-base-dark-action-cta-alternate-inverse-text: #1c49c2;
  --chirp-base-dark-action-cta-alternate-inverse-03: #dbebf9;
  --chirp-base-dark-action-cta-alternate-inverse-02: #b8d7f3;
  --chirp-base-dark-action-cta-alternate-inverse-primary: #ffffff;
  --chirp-base-dark-action-selection-control-on-03: #1c49c24d;
  --chirp-base-dark-action-selection-control-on-02: #dbebf9;
  --chirp-base-dark-action-selection-control-on-primary: #7aaee7;
  --chirp-base-dark-action-selection-control-off-02: #ffffff;
  --chirp-base-dark-action-selection-control-off-primary: #767676;
  --chirp-base-dark-action-switch-background-on-03: #dbebf9;
  --chirp-base-dark-action-switch-background-on-02: #dbebf9;
  --chirp-base-dark-action-switch-background-on-primary: #7aaee7;
  --chirp-base-dark-action-switch-background-off-02: #cccccc;
  --chirp-base-dark-action-switch-background-off-primary: #666666;
  --chirp-base-dark-action-switch-focus: #7aaee7;
  --chirp-base-dark-action-switch-02: #767676;
  --chirp-base-dark-action-switch-foreground: #ffffff;
  --chirp-base-dark-text-fields: #ffffffcc;
  --chirp-base-dark-text-display: #ffffff;
  --chirp-base-dark-text-inverseemphasis: #ffc80c;
  --chirp-base-dark-text-inverse: #121212;
  --chirp-base-dark-text-error: #ee667f;
  --chirp-base-dark-text-tertiary: #949494;
  --chirp-base-dark-text-placeholder: #cccccc;
  --chirp-base-dark-text-secondary: #eeeeee;
  --chirp-base-dark-text-primary: #ffffff;
  --chirp-base-dark-ui-bg-brand-accent-01: #3c2655;
  --chirp-base-dark-ui-bg-brand-alternate: #11389e;
  --chirp-base-dark-ui-bg-brand-primary: #1c49c2;
  --chirp-base-dark-ui-bg-overlay-02: #00000099;
  --chirp-base-dark-ui-bg-overlay-primary: #ffffff40;
  --chirp-base-dark-ui-bg-primary-inverse: #ffffff;
  --chirp-base-dark-ui-bg-08: #333333;
  --chirp-base-dark-ui-bg-07: #767676;
  --chirp-base-dark-ui-bg-06: #cccccc;
  --chirp-base-dark-ui-bg-05: #949494;
  --chirp-base-dark-ui-bg-04: #666666;
  --chirp-base-dark-ui-bg-03: #121212;
  --chirp-base-dark-ui-bg-02: #333333;
  --chirp-base-dark-ui-bg-primary: #121212;
  --chirp-base-dark-ui-bg-19: #F1E9D8;
  --chirp-base-dark-ui-bg-18: #D0F3E4;
  --chirp-base-dark-ui-bg-17: #A2E2C7;
  --chirp-base-dark-ui-bg-16: #F3F5F90f;
  --chirp-base-dark-ui-bg-15: #CAD9F729;
  --chirp-base-dark-ui-bg-12: #6b85ad;
  --chirp-base-dark-ui-bg-11: #11389e;
  --chirp-base-dark-ui-bg-10: #002956;
  --chirp-base-light-shadow-high-emphasis: #00000026;
  --chirp-base-light-shadow-medium-emphasis: #0000001a;
  --chirp-base-light-shadow-low-emphasis: #0000000d;
  --chirp-base-light-button-transactional-border-tertiary: #E62400;
  --chirp-base-light-button-transactional-border-secondary: #E62400;
  --chirp-base-light-button-transactional-icon-alt: #D02000;
  --chirp-base-light-button-transactional-text-alt: #D02000;
  --chirp-base-light-button-transactional-focus-border-alt: #E62400;
  --chirp-base-light-button-transactional-focus-halo-alt: #FCE7D6;
  --chirp-base-light-button-transactional-bg-pressed-alt: #FCE7D6;
  --chirp-base-light-button-transactional-bg-focus-alt: #FEF3EB;
  --chirp-base-light-button-transactional-bg-active-alt: #ffffff;
  --chirp-base-light-button-transactional-focus-border: #ffffff;
  --chirp-base-light-button-transactional-focus-halo: #E62400;
  --chirp-base-light-button-transactional-bg-color-3: #EF6C0000;
  --chirp-base-light-button-transactional-bg-color-2: #E62400;
  --chirp-base-light-button-transactional-bg-color-1: #EF6C00;
  --chirp-base-light-button-transactional-border: #ffffff00;
  --chirp-base-light-button-transactional-icon: #ffffff;
  --chirp-base-light-button-transactional-text: #ffffff;
  --chirp-base-light-button-destructive-border-tertiary: #F8C7CD;
  --chirp-base-light-button-destructive-border-secondary: #bc2848;
  --chirp-base-light-button-destructive-icon-alt: #bc2848;
  --chirp-base-light-button-destructive-text-alt: #bc2848;
  --chirp-base-light-button-destructive-focus-border-alt: #bc2848;
  --chirp-base-light-button-destructive-focus-halo-alt: #F8C7CD;
  --chirp-base-light-button-destructive-bg-pressed-alt: #F8C7CD;
  --chirp-base-light-button-destructive-bg-focus-alt: #FDEDEF;
  --chirp-base-light-button-destructive-bg-active-alt: #ffffff;
  --chirp-base-light-button-destructive-focus-border: #ffffff;
  --chirp-base-light-button-destructive-focus-halo: #bc2848;
  --chirp-base-light-button-destructive-bg-color-3: #BC284800;
  --chirp-base-light-button-destructive-bg-color-2: #BC2848;
  --chirp-base-light-button-destructive-bg-color-1: #E1334D;
  --chirp-base-light-button-destructive-border: #ffffff00;
  --chirp-base-light-button-destructive-icon: #ffffff;
  --chirp-base-light-button-destructive-text: #ffffff;
  --chirp-base-light-button-utility-border-tertiary: #EDEDED;
  --chirp-base-light-button-utility-border-secondary: #4D4D4D;
  --chirp-base-light-button-utility-icon-alt: #4D4D4D;
  --chirp-base-light-button-utility-text-alt: #4D4D4D;
  --chirp-base-light-button-utility-focus-border-alt: #4D4D4D;
  --chirp-base-light-button-utility-focus-halo-alt: #F7F7F7;
  --chirp-base-light-button-utility-bg-pressed-alt: #F7F7F7;
  --chirp-base-light-button-utility-bg-focus-alt: #ffffff;
  --chirp-base-light-button-utility-bg-active-alt: #ffffff;
  --chirp-base-light-button-utility-focus-border: #ffffff;
  --chirp-base-light-button-utility-focus-halo: #4D4D4D;
  --chirp-base-light-button-utility-bg-color-3: #33333300;
  --chirp-base-light-button-utility-bg-color-2: #333333;
  --chirp-base-light-button-utility-bg-color-1: #4D4D4D;
  --chirp-base-light-button-utility-border: #ffffff00;
  --chirp-base-light-button-utility-icon: #ffffff;
  --chirp-base-light-button-utility-text: #ffffff;
  --chirp-base-light-button-common-transparent: #ffffff00;
  --chirp-base-light-button-common-overlay-lowlight: #0000001A;
  --chirp-base-light-button-common-overlay-highlight: #FFFFFF24;
  --chirp-base-light-button-action-border-tertiary: #C2D7FF;
  --chirp-base-light-button-action-border-secondary: #1c49c2;
  --chirp-base-light-button-action-icon-alt: #1c49c2;
  --chirp-base-light-button-action-text-alt: #1c49c2;
  --chirp-base-light-button-action-focus-border-alt: #1c49c2;
  --chirp-base-light-button-action-focus-halo-alt: #C2D7FF;
  --chirp-base-light-button-action-bg-pressed-alt: #D6E5FF;
  --chirp-base-light-button-action-bg-focus-alt: #EBF2FF;
  --chirp-base-light-button-action-bg-active-alt: #ffffff;
  --chirp-base-light-button-action-focus-border: #ffffff;
  --chirp-base-light-button-action-focus-halo: #1c49c2;
  --chirp-base-light-button-action-bg-color-3: #1c49c2;
  --chirp-base-light-button-action-bg-color-2: #1c49c2;
  --chirp-base-light-button-action-bg-color-1: #1c49c2;
  --chirp-base-light-button-action-border: #ffffff00;
  --chirp-base-light-button-action-icon: #ffffff;
  --chirp-base-light-button-action-text: #ffffff;
  --chirp-base-light-choice-available-other-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-unselected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-other-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-other-unselected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-disabled-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-unselected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-other-unselected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-other-unselected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-error-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-error-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-unselected-pressed-border-color: #121212;
  --chirp-base-light-choice-available-other-unselected-pressed-bg-color: #cccccc;
  --chirp-base-light-choice-available-other-unselected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-pressed-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-pressed-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-other-unselected-focus-border-color: #767676;
  --chirp-base-light-choice-available-other-unselected-focus-bg-color: #ffffff;
  --chirp-base-light-choice-available-other-unselected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-focus-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-focus-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-unselected-hover-border-color: #767676;
  --chirp-base-light-choice-available-other-unselected-hover-bg-color: #eeeeee;
  --chirp-base-light-choice-available-other-unselected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-hover-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-hover-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-unselected-active-border-color: #949494;
  --chirp-base-light-choice-available-other-unselected-active-bg-color: #ffffff;
  --chirp-base-light-choice-available-other-unselected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-active-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-unselected-active-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-selected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-other-selected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-other-selected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-disabled-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-selected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-other-selected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-other-selected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-error-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-error-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-selected-pressed-border-color: #121212;
  --chirp-base-light-choice-available-other-selected-pressed-bg-color: #cccccc;
  --chirp-base-light-choice-available-other-selected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-pressed-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-pressed-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-other-selected-focus-border-color: #121212;
  --chirp-base-light-choice-available-other-selected-focus-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-other-selected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-focus-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-focus-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-selected-hover-border-color: #121212;
  --chirp-base-light-choice-available-other-selected-hover-bg-color: #eeeeee;
  --chirp-base-light-choice-available-other-selected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-hover-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-hover-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-other-selected-active-border-color: #121212;
  --chirp-base-light-choice-available-other-selected-active-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-other-selected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-active-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-other-selected-active-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-unselected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-no-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-no-unselected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-disabled-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-unselected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-no-unselected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-no-unselected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-error-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-error-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-unselected-pressed-border-color: #121212;
  --chirp-base-light-choice-available-no-unselected-pressed-bg-color: #cccccc;
  --chirp-base-light-choice-available-no-unselected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-pressed-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-pressed-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-no-unselected-focus-border-color: #949494;
  --chirp-base-light-choice-available-no-unselected-focus-bg-color: #ffffff;
  --chirp-base-light-choice-available-no-unselected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-focus-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-focus-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-unselected-hover-border-color: #949494;
  --chirp-base-light-choice-available-no-unselected-hover-bg-color: #eeeeee;
  --chirp-base-light-choice-available-no-unselected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-hover-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-hover-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-unselected-active-border-color: #cccccc;
  --chirp-base-light-choice-available-no-unselected-active-bg-color: #ffffff;
  --chirp-base-light-choice-available-no-unselected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-active-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-unselected-active-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-selected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-no-selected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-no-selected-disabled-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-selected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-no-selected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-no-selected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-error-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-error-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-selected-pressed-border-color: #121212;
  --chirp-base-light-choice-available-no-selected-pressed-bg-color: #cccccc;
  --chirp-base-light-choice-available-no-selected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-pressed-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-pressed-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-no-selected-focus-border-color: #949494;
  --chirp-base-light-choice-available-no-selected-focus-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-no-selected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-focus-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-focus-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-selected-hover-border-color: #949494;
  --chirp-base-light-choice-available-no-selected-hover-bg-color: #eeeeee;
  --chirp-base-light-choice-available-no-selected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-hover-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-hover-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-no-selected-active-border-color: #cccccc;
  --chirp-base-light-choice-available-no-selected-active-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-no-selected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-active-text-color-secondary: #4d4d4d;
  --chirp-base-light-choice-available-no-selected-active-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-unselected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-yes-unselected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-yes-unselected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-disabled-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-unselected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-yes-unselected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-yes-unselected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-error-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-error-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-unselected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-unselected-pressed-border-color: #1c49c2;
  --chirp-base-light-choice-available-yes-unselected-pressed-bg-color: #b8d7f3;
  --chirp-base-light-choice-available-yes-unselected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-pressed-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-pressed-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-unselected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-yes-unselected-focus-border-color: #121212;
  --chirp-base-light-choice-available-yes-unselected-focus-bg-color: #ffffff;
  --chirp-base-light-choice-available-yes-unselected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-focus-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-focus-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-unselected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-unselected-hover-border-color: #121212;
  --chirp-base-light-choice-available-yes-unselected-hover-bg-color: #dbebf9;
  --chirp-base-light-choice-available-yes-unselected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-hover-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-hover-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-unselected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-unselected-active-border-color: #767676;
  --chirp-base-light-choice-available-yes-unselected-active-bg-color: #ffffff;
  --chirp-base-light-choice-available-yes-unselected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-unselected-active-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-unselected-active-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-disabled-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-selected-disabled-border-color: #cccccc33;
  --chirp-base-light-choice-available-yes-selected-disabled-bg-color: #cccccc33;
  --chirp-base-light-choice-available-yes-selected-disabled-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-disabled-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-disabled-text-color-primary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-error-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-selected-error-border-color: #bc2848;
  --chirp-base-light-choice-available-yes-selected-error-bg-color: #ffffff;
  --chirp-base-light-choice-available-yes-selected-error-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-error-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-error-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-pressed-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-selected-pressed-border-color: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-pressed-bg-color: #b8d7f3;
  --chirp-base-light-choice-available-yes-selected-pressed-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-pressed-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-pressed-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-focus-halo-color: #b8d7f3;
  --chirp-base-light-choice-available-yes-selected-focus-border-color: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-focus-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-yes-selected-focus-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-focus-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-focus-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-hover-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-selected-hover-border-color: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-hover-bg-color: #dbebf9;
  --chirp-base-light-choice-available-yes-selected-hover-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-hover-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-hover-text-color-primary: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-active-halo-color: #ffffff00;
  --chirp-base-light-choice-available-yes-selected-active-border-color: #1c49c2;
  --chirp-base-light-choice-available-yes-selected-active-bg-color: #F3F5F9;
  --chirp-base-light-choice-available-yes-selected-active-text-color-tertiary: #4d4d4d;
  --chirp-base-light-choice-available-yes-selected-active-text-color-secondary: #121212;
  --chirp-base-light-choice-available-yes-selected-active-text-color-primary: #1c49c2;
  --chirp-base-light-progress-03-inverse: #ffffff;
  --chirp-base-light-progress-03-secondary: #00cc75;
  --chirp-base-light-progress-03-primary: #e5eaf0;
  --chirp-base-light-progress-02-inverse: #ffffff;
  --chirp-base-light-progress-02-secondary: #006b2b;
  --chirp-base-light-progress-02-primary: #e8f7eb;
  --chirp-base-light-progress-01-inverse: #ffffff;
  --chirp-base-light-progress-01-secondary: #1c49c2;
  --chirp-base-light-progress-01-primary: #dbebf9;
  --chirp-base-light-static-blue1-900: #010b39;
  --chirp-base-light-static-blue1-800: #002957;
  --chirp-base-light-static-blue1-700: #06396e;
  --chirp-base-light-static-blue1-600: #1b4c86;
  --chirp-base-light-static-mint3-200: #8ee6b1;
  --chirp-base-light-static-mint3-100: #beeace;
  --chirp-base-light-static-mint3-50: #e8fff0;
  --chirp-base-light-static-gray1-900a03: #00000008;
  --chirp-base-light-static-gray1-900a50: #00000080;
  --chirp-base-light-static-gray1-900: #000000;
  --chirp-base-light-static-gray1-50: #ffffff;
  --chirp-base-light-chip-07-text-02: #1c49c2;
  --chirp-base-light-chip-07-text: #ffffff;
  --chirp-base-light-chip-07-bg-high: #00000099;
  --chirp-base-light-chip-07-bg-low: #00000080;
  --chirp-base-light-chip-07-bg-primary: #00000080;
  --chirp-base-light-chip-06-text-02: #002957;
  --chirp-base-light-chip-06-text: #002957;
  --chirp-base-light-chip-06-bg-high: #becadc;
  --chirp-base-light-chip-06-bg-low: #e5eaf0;
  --chirp-base-light-chip-06-bg-primary: #ffffff;
  --chirp-base-light-chip-05-text-02: #ffffff;
  --chirp-base-light-chip-05-text: #ffffff;
  --chirp-base-light-chip-05-bg-high: #010b39;
  --chirp-base-light-chip-05-bg-low: #1c49c2;
  --chirp-base-light-chip-05-bg-primary: #1c49c2;
  --chirp-base-light-chip-04-text-02: #000000;
  --chirp-base-light-chip-04-text: #1c49c2;
  --chirp-base-light-chip-04-bg-high: #b8d7f3;
  --chirp-base-light-chip-04-bg-low: #dbebf9;
  --chirp-base-light-chip-04-bg-primary: #ffffff;
  --chirp-base-light-chip-03-text-02: #1c49c2;
  --chirp-base-light-chip-03-text: #1c49c2;
  --chirp-base-light-chip-03-bg-high: #b8d7f3;
  --chirp-base-light-chip-03-bg-low: #dbebf9;
  --chirp-base-light-chip-03-bg-primary: #dbebf9;
  --chirp-base-light-chip-02-text-02: #ffffff;
  --chirp-base-light-chip-02-text: #ffffff;
  --chirp-base-light-chip-02-bg-high: #010b39;
  --chirp-base-light-chip-02-bg-low: #002957;
  --chirp-base-light-chip-02-bg-primary: #002957;
  --chirp-base-light-chip-01-text-02: #1c49c2;
  --chirp-base-light-chip-01-text: #121212;
  --chirp-base-light-chip-01-bg-high: #cccccc;
  --chirp-base-light-chip-01-bg-low: #eeeeee;
  --chirp-base-light-chip-01-bg-primary: #eeeeee;
  --chirp-base-light-menu-quick-disabled-text: #767676;
  --chirp-base-light-menu-quick-disabled-primary: #00000026;
  --chirp-base-light-menu-quick-pressed-text: #000000;
  --chirp-base-light-menu-quick-pressed-primary: #b9d9f1;
  --chirp-base-light-menu-quick-active-text: #000000;
  --chirp-base-light-menu-quick-active-primary: #EDF3FF;
  --chirp-base-light-menu-alternate-focused-border: #1c49c2;
  --chirp-base-light-menu-alternate-focused-text: #000000;
  --chirp-base-light-menu-alternate-focused-primary: #ffffff;
  --chirp-base-light-menu-alternate-pressed-text: #000000;
  --chirp-base-light-menu-alternate-pressed-primary: #7aaee7;
  --chirp-base-light-menu-alternate-hover-text: #000000;
  --chirp-base-light-menu-alternate-hover-primary: #b8d7f3;
  --chirp-base-light-menu-alternate-selected-text: #000000;
  --chirp-base-light-menu-alternate-selected-primary: #dbebf9;
  --chirp-base-light-menu-alternate-active-text: #000000;
  --chirp-base-light-menu-alternate-active-primary: #ffffff;
  --chirp-base-light-menu-primary-focused-border: #1c49c2;
  --chirp-base-light-menu-primary-focused-text: #002957;
  --chirp-base-light-menu-primary-focused-primary: #ffffff;
  --chirp-base-light-menu-primary-pressed-text: #002957;
  --chirp-base-light-menu-primary-pressed-primary: #94a7c4;
  --chirp-base-light-menu-primary-hover-text: #002957;
  --chirp-base-light-menu-primary-hover-primary: #becadc;
  --chirp-base-light-menu-primary-selected-text: #002957;
  --chirp-base-light-menu-primary-selected-primary: #e5eaf0;
  --chirp-base-light-menu-primary-active-text: #002957;
  --chirp-base-light-menu-primary-active-primary: #ffffff;
  --chirp-base-light-field-filter-text: #002957;
  --chirp-base-light-field-filter-bg-pressed: #94a7c4;
  --chirp-base-light-field-filter-bg-hover: #becadc;
  --chirp-base-light-field-filter-bg: #e5eaf0;
  --chirp-base-light-field-09: #0000001a;
  --chirp-base-light-field-08: #7aaee74d;
  --chirp-base-light-field-07: #4d4d4d;
  --chirp-base-light-field-06: #bc2848;
  --chirp-base-light-field-05: #121212;
  --chirp-base-light-field-04: #1c49c2;
  --chirp-base-light-field-03: #dbebf9;
  --chirp-base-light-field-02: #eeeeee;
  --chirp-base-light-field-primary: #ffffff;
  --chirp-base-light-field-10: #ee667f26;
  --chirp-base-light-icon-magenta: #e80060;
  --chirp-base-light-icon-emerald: #00cc75;
  --chirp-base-light-icon-red: #bc2848;
  --chirp-base-light-icon-green2: #006b2b;
  --chirp-base-light-icon-green1: #1b8b3f;
  --chirp-base-light-icon-chewy-navy: #002957;
  --chirp-base-light-icon-chewy-blue: #1c49c2;
  --chirp-base-light-icon-androidmodal: #1c49c2;
  --chirp-base-light-icon-vetdiet: #002957;
  --chirp-base-light-icon-personalized: #031657;
  --chirp-base-light-icon-exclusive: #1c49c2;
  --chirp-base-light-icon-fresh: #1b8b3f;
  --chirp-base-light-icon-rx: #002957;
  --chirp-base-light-icon-frozen: #1c49c2;
  --chirp-base-light-logos-getreal-primary: #1D2053;
  --chirp-base-light-logos-loyalty-inverse: #ffffff;
  --chirp-base-light-logos-loyalty-primary: #1c49c2;
  --chirp-base-light-logos-ext-trupanion-03: #eef6fc;
  --chirp-base-light-logos-ext-trupanion-02: #46433b;
  --chirp-base-light-logos-ext-trupanion-primary: #345e9e;
  --chirp-base-light-logos-ext-lemonade-03: #fff3f9;
  --chirp-base-light-logos-ext-lemonade-02: #4a4a4a;
  --chirp-base-light-logos-ext-lemonade-primary: #ff0083;
  --chirp-base-light-logos-ext-tiktok-02: #fff;
  --chirp-base-light-logos-ext-tiktok-primary: #000;
  --chirp-base-light-logos-ext-pinterest-primary: #E60023;
  --chirp-base-light-logos-ext-google-05: #FABB05;
  --chirp-base-light-logos-ext-google-04: #E94235;
  --chirp-base-light-logos-ext-google-03: #4285F4;
  --chirp-base-light-logos-ext-google-02: #34A853;
  --chirp-base-light-logos-ext-google-primary: #3C4043;
  --chirp-base-light-logos-health-primary: #002957;
  --chirp-base-light-logos-chewy-primary: #1c49c2;
  --chirp-base-light-logos-petmd-secondary: #121212;
  --chirp-base-light-logos-petmd-primary: #672950;
  --chirp-base-light-logos-petmd-vetverified-03: #D8BFD3;
  --chirp-base-light-logos-petmd-vetverified-04: #002957;
  --chirp-base-light-logos-petmd-vetverified-02: #802864;
  --chirp-base-light-logos-petmd-vetverified-primary: #672950;
  --chirp-base-light-logos-petmd-vetverified-inverse: #ffffff;
  --chirp-base-light-logos-as-inverse: #ffffff;
  --chirp-base-light-logos-as-secondary: #f27123;
  --chirp-base-light-logos-as-primary: #031657;
  --chirp-base-light-ui-elements-controls-always-dark-selected: #121212;
  --chirp-base-light-ui-elements-controls-always-dark-hover: #cccccc;
  --chirp-base-light-ui-elements-controls-always-dark-active: #00000080;
  --chirp-base-light-ui-elements-controls-always-light-selected: #ffffff;
  --chirp-base-light-ui-elements-controls-always-light-hover: #cccccc;
  --chirp-base-light-ui-elements-controls-always-light-active: #ffffff99;
  --chirp-base-light-ui-elements-controls-inverse-selected: #ffffff;
  --chirp-base-light-ui-elements-controls-inverse-hover: #767676;
  --chirp-base-light-ui-elements-controls-inverse-active: #ffffff99;
  --chirp-base-light-ui-elements-controls-default-selected: #121212;
  --chirp-base-light-ui-elements-controls-default-hover: #cccccc;
  --chirp-base-light-ui-elements-controls-default-active: #00000080;
  --chirp-base-light-ui-elements-privacy-02: #ffffff;
  --chirp-base-light-ui-elements-privacy-primary: #0066ff;
  --chirp-base-light-ui-elements-skeleton-03: #cccccc4d;
  --chirp-base-light-ui-elements-skeleton-02: #cccccc26;
  --chirp-base-light-ui-elements-skeleton-primary: #eeeeee;
  --chirp-base-light-ui-elements-promotion-text: #ffffff;
  --chirp-base-light-ui-elements-promotion-alternate: #1c49c2;
  --chirp-base-light-ui-elements-promotion-primary: #006b2b;
  --chirp-base-light-ui-elements-flag-out-of-stock-text: #ffffff;
  --chirp-base-light-ui-elements-flag-out-of-stock-primary: #121212;
  --chirp-base-light-ui-elements-flag-deal-text: #ffffff;
  --chirp-base-light-ui-elements-flag-deal-primary: #bc2848;
  --chirp-base-light-ui-elements-flag-new-text: #031657;
  --chirp-base-light-ui-elements-flag-new-primary: #dbebf9;
  --chirp-base-light-ui-elements-rating-overlay: #ffffffeb;
  --chirp-base-light-ui-elements-rating-02: #b06f00;
  --chirp-base-light-ui-elements-rating-primary: #ff9800;
  --chirp-base-light-ui-elements-price-03: #121212;
  --chirp-base-light-ui-elements-price-02: #767676;
  --chirp-base-light-ui-elements-price-primary: #bc2848;
  --chirp-base-light-link-focus-tertiary: #b8d7f3;
  --chirp-base-light-link-focus-inverse: #eeeeee;
  --chirp-base-light-link-focus-secondary: #4d4d4d;
  --chirp-base-light-link-focus-primary: #1c49c2;
  --chirp-base-light-link-pressed-inverse: #eeeeee;
  --chirp-base-light-link-pressed-secondary: #4d4d4d;
  --chirp-base-light-link-pressed-primary: #09267a;
  --chirp-base-light-link-hover-inverse: #eeeeee;
  --chirp-base-light-link-hover-secondary: #4d4d4d;
  --chirp-base-light-link-hover-primary: #09267a;
  --chirp-base-light-link-visited-inverse: #eeeeee;
  --chirp-base-light-link-visited-secondary: #666666;
  --chirp-base-light-link-visited-primary: #543577;
  --chirp-base-light-link-active-inverse: #ffffff;
  --chirp-base-light-link-active-secondary: #666666;
  --chirp-base-light-link-active-primary: #1c49c2;
  --chirp-base-light-message-caution-06: #12121226;
  --chirp-base-light-message-caution-05: #1212124d;
  --chirp-base-light-message-caution-04: #fff1c4;
  --chirp-base-light-message-caution-03: #574801;
  --chirp-base-light-message-caution-02: #574801;
  --chirp-base-light-message-caution-primary: #ffc80c;
  --chirp-base-light-message-info-subtle-06: #ffffff1a;
  --chirp-base-light-message-info-subtle-05: #ffffff40;
  --chirp-base-light-message-info-subtle-04: #121212;
  --chirp-base-light-message-info-subtle-03: #eeeeee;
  --chirp-base-light-message-info-subtle-02: #031657;
  --chirp-base-light-message-info-subtle-primary: #031657;
  --chirp-base-light-message-neutral-06: #1c49c226;
  --chirp-base-light-message-neutral-05: #1c49c24d;
  --chirp-base-light-message-neutral-04: #121212;
  --chirp-base-light-message-neutral-03: #eeeeee;
  --chirp-base-light-message-neutral-02: #767676;
  --chirp-base-light-message-neutral-primary: #cccccc;
  --chirp-base-light-message-info-06: #1c49c226;
  --chirp-base-light-message-info-05: #1c49c24d;
  --chirp-base-light-message-info-04: #1c49c2;
  --chirp-base-light-message-info-03: #dbebf9;
  --chirp-base-light-message-info-02: #031657;
  --chirp-base-light-message-info-primary: #1c49c2;
  --chirp-base-light-message-error-06: #bc284826;
  --chirp-base-light-message-error-05: #bc28484d;
  --chirp-base-light-message-error-04: #bc2848;
  --chirp-base-light-message-error-03: #fde4e8;
  --chirp-base-light-message-error-02: #851940;
  --chirp-base-light-message-error-primary: #bc2848;
  --chirp-base-light-message-warning-06: #12121226;
  --chirp-base-light-message-warning-05: #1212124d;
  --chirp-base-light-message-warning-04: #121212;
  --chirp-base-light-message-warning-03: #fff1c4;
  --chirp-base-light-message-warning-02: #574801;
  --chirp-base-light-message-warning-primary: #ffc80c;
  --chirp-base-light-message-success-06: #006b2b26;
  --chirp-base-light-message-success-05: #006b2b4d;
  --chirp-base-light-message-success-04: #006b2b;
  --chirp-base-light-message-success-03: #e8f7eb;
  --chirp-base-light-message-success-02: #003f00;
  --chirp-base-light-message-success-primary: #006b2b;
  --chirp-base-light-action-view-toggle-on-border: #cccccc;
  --chirp-base-light-action-view-toggle-on-default-bg: #ffffff;
  --chirp-base-light-action-view-toggle-off-pressed-bg: #949494;
  --chirp-base-light-action-view-toggle-off-hover-bg: #cccccc;
  --chirp-base-light-action-view-toggle-off-default-bg: #eeeeee;
  --chirp-base-light-action-view-toggle-container-border: #cccccc;
  --chirp-base-light-action-view-toggle-container-default-bg: #eeeeee;
  --chirp-base-light-action-inverse-alternate-text: #ffffff;
  --chirp-base-light-action-inverse-alternate-03: #00000040;
  --chirp-base-light-action-inverse-alternate-02: #1212124d;
  --chirp-base-light-action-inverse-alternate-primary: #0000001a;
  --chirp-base-light-action-inverse-primary-text: #1c49c2;
  --chirp-base-light-action-inverse-primary-03: #dbebf9;
  --chirp-base-light-action-inverse-primary-02: #b8d7f3;
  --chirp-base-light-action-inverse-primary-primary: #ffffff;
  --chirp-base-light-action-nudge-alternate-text: #006b2b;
  --chirp-base-light-action-nudge-alternate-03: #e8f7eb;
  --chirp-base-light-action-nudge-alternate-02: #c7ebcf;
  --chirp-base-light-action-nudge-alternate-primary: #ffffff;
  --chirp-base-light-action-nudge-primary-text: #ffffff;
  --chirp-base-light-action-nudge-primary-03: #1b8b3f;
  --chirp-base-light-action-nudge-primary-02: #003f00;
  --chirp-base-light-action-nudge-primary-primary: #006b2b;
  --chirp-base-light-action-selection-control-on-03: #EFF5FC;
  --chirp-base-light-action-selection-control-on-02: #031657;
  --chirp-base-light-action-selection-control-on-primary: #1c49c2;
  --chirp-base-light-action-selection-control-off-02: #121212;
  --chirp-base-light-action-selection-control-off-primary: #767676;
  --chirp-base-light-action-switch-background-on-03: #dbebf9;
  --chirp-base-light-action-switch-background-on-02: #031657;
  --chirp-base-light-action-switch-background-on-primary: #1c49c2;
  --chirp-base-light-action-switch-background-off-02: #767676;
  --chirp-base-light-action-switch-background-off-primary: #cccccc;
  --chirp-base-light-action-switch-focus: #1c49c2;
  --chirp-base-light-action-switch-02: #ffffff;
  --chirp-base-light-action-switch-foreground: #ffffff;
  --chirp-base-light-action-danger-alternate-text: #bc2848;
  --chirp-base-light-action-danger-alternate-03: #fde4e8;
  --chirp-base-light-action-danger-alternate-02: #f9bbc7;
  --chirp-base-light-action-danger-alternate-primary: #ffffff;
  --chirp-base-light-action-danger-primary-text: #ffffff;
  --chirp-base-light-action-danger-primary-03: #d12e4b;
  --chirp-base-light-action-danger-primary-02: #851940;
  --chirp-base-light-action-danger-primary-primary: #bc2848;
  --chirp-base-light-action-utility-alternate-text: #121212;
  --chirp-base-light-action-utility-alternate-03: #eeeeee;
  --chirp-base-light-action-utility-alternate-02: #cccccc;
  --chirp-base-light-action-utility-alternate-primary: #ffffff;
  --chirp-base-light-action-utility-primary-text: #ffffff;
  --chirp-base-light-action-utility-primary-03: #666666;
  --chirp-base-light-action-utility-primary-02: #121212;
  --chirp-base-light-action-utility-primary-primary: #4d4d4d;
  --chirp-base-light-action-cta-alternate-inverse-text: #7aaee7;
  --chirp-base-light-action-cta-alternate-inverse-03: #7aaee726;
  --chirp-base-light-action-cta-alternate-inverse-02: #7aaee74d;
  --chirp-base-light-action-cta-alternate-inverse-primary: #121212;
  --chirp-base-light-action-cta-alternate-text: #1c49c2;
  --chirp-base-light-action-cta-alternate-03: #dbebf9;
  --chirp-base-light-action-cta-alternate-02: #b8d7f3;
  --chirp-base-light-action-cta-alternate-primary: #ffffff;
  --chirp-base-light-action-cta-primary-text: #ffffff;
  --chirp-base-light-action-cta-primary-03: #2661ce;
  --chirp-base-light-action-cta-primary-02: #031657;
  --chirp-base-light-action-cta-primary-primary: #1c49c2;
  --chirp-base-light-action-transaction-secondary-text: #d76100;
  --chirp-base-light-action-transaction-secondary-03: #fdf0e6;
  --chirp-base-light-action-transaction-secondary-02: #FFE1C9;
  --chirp-base-light-action-transaction-secondary-primary: #f17b1a;
  --chirp-base-light-action-transaction-text: #ffffff;
  --chirp-base-light-action-transaction-03: #f17b1a;
  --chirp-base-light-action-transaction-02: #d76100;
  --chirp-base-light-action-transaction-primary: #ef6c00;
  --chirp-base-light-text-static-dark-primary: #121212;
  --chirp-base-light-text-static-light-alternate: #ffffffcc;
  --chirp-base-light-text-static-light-primary: #ffffff;
  --chirp-base-light-text-fields: #000000cc;
  --chirp-base-light-text-display: #002957;
  --chirp-base-light-text-inverseemphasis: #ffc80c;
  --chirp-base-light-text-inverse: #ffffff;
  --chirp-base-light-text-error: #bc2848;
  --chirp-base-light-text-tertiary: #767676;
  --chirp-base-light-text-placeholder: #cccccc;
  --chirp-base-light-text-secondary: #4d4d4d;
  --chirp-base-light-text-primary: #121212;
  --chirp-base-light-ui-bg-brand-accent-09: #d4fdaa;
  --chirp-base-light-ui-bg-brand-accent-08: #E1F1D4;
  --chirp-base-light-ui-bg-brand-accent-07: #00cc75;
  --chirp-base-light-ui-bg-brand-accent-06: #ef6c00;
  --chirp-base-light-ui-bg-brand-accent-05: #e80060;
  --chirp-base-light-ui-bg-brand-accent-04: #fad3b3;
  --chirp-base-light-ui-bg-brand-accent-03: #e1334d;
  --chirp-base-light-ui-bg-brand-accent-02: #fdf0e6;
  --chirp-base-light-ui-bg-brand-accent-01: #f2edf7;
  --chirp-base-light-ui-bg-brand-accent-15: #FBF8F5;
  --chirp-base-light-ui-bg-brand-accent-14: #F6F2EA;
  --chirp-base-light-ui-bg-brand-accent-13: #EBFBF4;
  --chirp-base-light-ui-bg-brand-accent-12: #B2F0D6;
  --chirp-base-light-ui-bg-brand-accent-11: #F3F5F9;
  --chirp-base-light-ui-bg-brand-accent-10: #EDF3FF;
  --chirp-base-light-ui-bg-brand-alternate: #11389e;
  --chirp-base-light-ui-bg-brand-primary: #1c49c2;
  --chirp-base-light-ui-bg-overlay-02: #ffffffcc;
  --chirp-base-light-ui-bg-overlay-primary: #00000040;
  --chirp-base-light-ui-bg-09: #e5eaf0;
  --chirp-base-light-ui-bg-primary-inverse: #121212;
  --chirp-base-light-ui-bg-08: #ffffff;
  --chirp-base-light-ui-bg-07: #cccccc;
  --chirp-base-light-ui-bg-06: #333333;
  --chirp-base-light-ui-bg-05: #949494;
  --chirp-base-light-ui-bg-04: #eeeeee;
  --chirp-base-light-ui-bg-03: #ffffff;
  --chirp-base-light-ui-bg-02: #eeeeee;
  --chirp-base-light-ui-bg-primary: #ffffff;
  --chirp-base-light-ui-bg-21: #cccccc33;
  --chirp-base-light-ui-bg-20: #FBF8F5;
  --chirp-base-light-ui-bg-19: #F6F2EA;
  --chirp-base-light-ui-bg-18: #EBFBF4;
  --chirp-base-light-ui-bg-17: #B2F0D6;
  --chirp-base-light-ui-bg-16: #F3F5F9;
  --chirp-base-light-ui-bg-15: #EDF3FF;
  --chirp-base-light-ui-bg-14: #627C98;
  --chirp-base-light-ui-bg-13: #b9d9f1;
  --chirp-base-light-ui-bg-12: #002956;
  --chirp-base-light-ui-bg-11: #b8d7f3;
  --chirp-base-light-ui-bg-10: #dbebf9;
  --chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-focus-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-focus-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-focus-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-hover-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-hover-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-hover-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-active-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-active-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-unselected-active-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-disabled-halo-color: var(--chirp-base-dark-choice-available-yes-selected-disabled-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-disabled-halo: var(--chirp-base-dark-choice-available-yes-selected-disabled-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-disabled-border-color: var(--chirp-base-dark-choice-available-yes-selected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-disabled-bg-color: var(--chirp-base-dark-choice-available-yes-selected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-pressed-halo-color: var(--chirp-base-dark-choice-available-yes-selected-pressed-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-pressed-halo: var(--chirp-base-dark-choice-available-yes-selected-pressed-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-pressed-border-color: var(--chirp-base-dark-choice-available-yes-selected-pressed-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-pressed-bg-color: var(--chirp-base-dark-choice-available-yes-selected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-focus-halo-color: var(--chirp-base-dark-choice-available-yes-selected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-focus-halo: var(--chirp-base-dark-choice-available-yes-selected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-focus-border-color: var(--chirp-base-dark-choice-available-yes-selected-focus-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-focus-bg-color: var(--chirp-base-dark-choice-available-yes-selected-focus-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-hover-halo-color: var(--chirp-base-dark-choice-available-yes-selected-hover-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-hover-border-color: var(--chirp-base-dark-choice-available-yes-selected-hover-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-hover-bg-color: var(--chirp-base-dark-choice-available-no-selected-active-bg-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-active-halo-color: var(--chirp-base-dark-choice-available-yes-selected-active-halo-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-active-border-color: var(--chirp-base-dark-choice-available-yes-selected-active-border-color);
  --chirp-base-dark-ct-selection-card-available-yes-selected-active-bg-color: var(--chirp-base-dark-choice-available-yes-selected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-halo-color: var(--chirp-base-dark-choice-available-other-unselected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-border-color: var(--chirp-base-dark-choice-available-other-unselected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-bg-color: var(--chirp-base-dark-choice-available-other-unselected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-other-unselected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-secondary: var(--chirp-base-dark-choice-available-other-unselected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-primary: var(--chirp-base-dark-choice-available-other-unselected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-halo-color: var(--chirp-base-dark-choice-available-other-unselected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-border-color: var(--chirp-base-dark-choice-available-other-unselected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-bg-color: var(--chirp-base-dark-choice-available-other-unselected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-text-tertiary: var(--chirp-base-dark-choice-available-other-unselected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-text-secondary: var(--chirp-base-dark-choice-available-other-unselected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-unselected-focus-text-primary: var(--chirp-base-dark-choice-available-other-unselected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-halo-color: var(--chirp-base-dark-choice-available-other-unselected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-border-color: var(--chirp-base-dark-choice-available-other-unselected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-bg-color: var(--chirp-base-dark-choice-available-other-unselected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-text-tertiary: var(--chirp-base-dark-choice-available-other-unselected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-text-secondary: var(--chirp-base-dark-choice-available-other-unselected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-unselected-hover-text-primary: var(--chirp-base-dark-choice-available-other-unselected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-halo-color: var(--chirp-base-dark-choice-available-other-unselected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-border-color: var(--chirp-base-dark-choice-available-other-unselected-active-border-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-bg-color: var(--chirp-base-dark-choice-available-other-unselected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-text-tertiary: var(--chirp-base-dark-choice-available-other-unselected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-text-secondary: var(--chirp-base-dark-choice-available-other-unselected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-unselected-active-text-primary: var(--chirp-base-dark-choice-available-other-unselected-active-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-halo-color: var(--chirp-base-dark-choice-available-other-selected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-border-color: var(--chirp-base-dark-choice-available-other-selected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-bg-color: var(--chirp-base-dark-choice-available-other-selected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-other-selected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-text-secondary: var(--chirp-base-dark-choice-available-other-selected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-selected-pressed-text-primary: var(--chirp-base-dark-choice-available-other-selected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-halo-color: var(--chirp-base-dark-choice-available-other-selected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-border-color: var(--chirp-base-dark-choice-available-other-selected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-bg-color: var(--chirp-base-dark-choice-available-other-selected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-text-tertiary: var(--chirp-base-dark-choice-available-other-selected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-text-secondary: var(--chirp-base-dark-choice-available-other-selected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-selected-focus-text-primary: var(--chirp-base-dark-choice-available-other-selected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-halo-color: var(--chirp-base-dark-choice-available-other-selected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-border-color: var(--chirp-base-dark-choice-available-other-selected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-bg-color: var(--chirp-base-dark-choice-available-other-selected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-text-tertiary: var(--chirp-base-dark-choice-available-other-selected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-text-secondary: var(--chirp-base-dark-choice-available-other-selected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-selected-hover-text-primary: var(--chirp-base-dark-choice-available-other-selected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-other-selected-active-halo-color: var(--chirp-base-dark-choice-available-other-selected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-other-selected-active-border-color: var(--chirp-base-dark-choice-available-other-selected-active-border-color);
  --chirp-base-dark-ct-swatch-available-other-selected-active-bg-color: var(--chirp-base-dark-choice-available-other-selected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-other-selected-active-text-tertiary: var(--chirp-base-dark-choice-available-other-selected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-other-selected-active-text-secondary: var(--chirp-base-dark-choice-available-other-selected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-other-selected-active-text-primary: var(--chirp-base-dark-choice-available-other-selected-active-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-halo-color: var(--chirp-base-dark-choice-available-no-unselected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-border-color: var(--chirp-base-dark-choice-available-no-unselected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-bg-color: var(--chirp-base-dark-choice-available-no-unselected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-no-unselected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-secondary: var(--chirp-base-dark-choice-available-no-unselected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-primary: var(--chirp-base-dark-choice-available-no-unselected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-halo-color: var(--chirp-base-dark-choice-available-no-unselected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-border-color: var(--chirp-base-dark-choice-available-no-unselected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-bg-color: var(--chirp-base-dark-choice-available-no-unselected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-text-tertiary: var(--chirp-base-dark-choice-available-no-unselected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-text-secondary: var(--chirp-base-dark-choice-available-no-unselected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-unselected-focus-text-primary: var(--chirp-base-dark-choice-available-no-unselected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-halo-color: var(--chirp-base-dark-choice-available-no-unselected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-border-color: var(--chirp-base-dark-choice-available-no-unselected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-bg-color: var(--chirp-base-dark-choice-available-no-unselected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-text-tertiary: var(--chirp-base-dark-choice-available-no-unselected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-text-secondary: var(--chirp-base-dark-choice-available-no-unselected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-unselected-hover-text-primary: var(--chirp-base-dark-choice-available-no-unselected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-halo-color: var(--chirp-base-dark-choice-available-no-unselected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-border-color: var(--chirp-base-dark-choice-available-no-unselected-active-border-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-bg-color: var(--chirp-base-dark-choice-available-no-unselected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-text-tertiary: var(--chirp-base-dark-choice-available-no-unselected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-text-secondary: var(--chirp-base-dark-choice-available-no-unselected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-unselected-active-text-primary: var(--chirp-base-dark-choice-available-no-unselected-active-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-halo-color: var(--chirp-base-dark-choice-available-no-selected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-border-color: var(--chirp-base-dark-choice-available-no-selected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-bg-color: var(--chirp-base-dark-choice-available-no-selected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-no-selected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-text-secondary: var(--chirp-base-dark-choice-available-no-selected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-selected-pressed-text-primary: var(--chirp-base-dark-choice-available-no-selected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-halo-color: var(--chirp-base-dark-choice-available-no-selected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-border-color: var(--chirp-base-dark-choice-available-no-selected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-bg-color: var(--chirp-base-dark-choice-available-no-selected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-text-tertiary: var(--chirp-base-dark-choice-available-no-selected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-text-secondary: var(--chirp-base-dark-choice-available-no-selected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-selected-focus-text-primary: var(--chirp-base-dark-choice-available-no-selected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-halo-color: var(--chirp-base-dark-choice-available-no-selected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-border-color: var(--chirp-base-dark-choice-available-no-selected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-bg-color: var(--chirp-base-dark-choice-available-no-selected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-text-tertiary: var(--chirp-base-dark-choice-available-no-selected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-text-secondary: var(--chirp-base-dark-choice-available-no-selected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-selected-hover-text-primary: var(--chirp-base-dark-choice-available-no-selected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-no-selected-active-halo-color: var(--chirp-base-dark-choice-available-no-selected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-no-selected-active-border-color: var(--chirp-base-dark-choice-available-no-selected-active-border-color);
  --chirp-base-dark-ct-swatch-available-no-selected-active-bg-color: var(--chirp-base-dark-choice-available-no-selected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-no-selected-active-text-tertiary: var(--chirp-base-dark-choice-available-no-selected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-no-selected-active-text-secondary: var(--chirp-base-dark-choice-available-no-selected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-no-selected-active-text-primary: var(--chirp-base-dark-choice-available-no-selected-active-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-border-color: var(--chirp-base-dark-choice-available-yes-unselected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-yes-unselected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-secondary: var(--chirp-base-dark-choice-available-yes-unselected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-primary: var(--chirp-base-dark-choice-available-yes-unselected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-border-color: var(--chirp-base-dark-choice-available-yes-unselected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-tertiary: var(--chirp-base-dark-choice-available-yes-unselected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-secondary: var(--chirp-base-dark-choice-available-yes-unselected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-primary: var(--chirp-base-dark-choice-available-yes-unselected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-border-color: var(--chirp-base-dark-choice-available-yes-unselected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-tertiary: var(--chirp-base-dark-choice-available-yes-unselected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-secondary: var(--chirp-base-dark-choice-available-yes-unselected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-primary: var(--chirp-base-dark-choice-available-yes-unselected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-halo-color: var(--chirp-base-dark-choice-available-yes-unselected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-border-color: var(--chirp-base-dark-choice-available-yes-unselected-active-border-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-bg-color: var(--chirp-base-dark-choice-available-yes-unselected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-text-tertiary: var(--chirp-base-dark-choice-available-yes-unselected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-text-secondary: var(--chirp-base-dark-choice-available-yes-unselected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-unselected-active-text-primary: var(--chirp-base-dark-choice-available-yes-unselected-active-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-halo-color: var(--chirp-base-dark-choice-available-yes-selected-pressed-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-border-color: var(--chirp-base-dark-choice-available-yes-selected-pressed-border-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-bg-color: var(--chirp-base-dark-choice-available-yes-selected-pressed-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-tertiary: var(--chirp-base-dark-choice-available-yes-selected-pressed-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-secondary: var(--chirp-base-dark-choice-available-yes-selected-pressed-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-primary: var(--chirp-base-dark-choice-available-yes-selected-pressed-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-halo-color: var(--chirp-base-dark-choice-available-yes-selected-focus-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-border-color: var(--chirp-base-dark-choice-available-yes-selected-focus-border-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-bg-color: var(--chirp-base-dark-choice-available-yes-selected-focus-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-text-tertiary: var(--chirp-base-dark-choice-available-yes-selected-focus-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-text-secondary: var(--chirp-base-dark-choice-available-yes-selected-focus-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-selected-focus-text-primary: var(--chirp-base-dark-choice-available-yes-selected-focus-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-halo-color: var(--chirp-base-dark-choice-available-yes-selected-hover-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-border-color: var(--chirp-base-dark-choice-available-yes-selected-hover-border-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-bg-color: var(--chirp-base-dark-choice-available-yes-selected-hover-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-text-tertiary: var(--chirp-base-dark-choice-available-yes-selected-hover-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-text-secondary: var(--chirp-base-dark-choice-available-yes-selected-hover-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-selected-hover-text-primary: var(--chirp-base-dark-choice-available-yes-selected-hover-text-color-primary);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-halo-color: var(--chirp-base-dark-choice-available-yes-selected-active-halo-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-border-color: var(--chirp-base-dark-choice-available-yes-selected-active-border-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-bg-color: var(--chirp-base-dark-choice-available-yes-selected-active-bg-color);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-text-tertiary: var(--chirp-base-dark-choice-available-yes-selected-active-text-color-tertiary);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-text-secondary: var(--chirp-base-dark-choice-available-yes-selected-active-text-color-secondary);
  --chirp-base-dark-ct-swatch-available-yes-selected-active-text-primary: var(--chirp-base-dark-choice-available-yes-selected-active-text-color-primary);
  --chirp-base-light-ct-selection-card-available-yes-unselected-disabled-halo-color: var(--chirp-base-light-choice-available-yes-unselected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-disabled-border-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-disabled-bg-color: var(--chirp-base-light-choice-available-yes-unselected-active-bg-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-pressed-halo-color: var(--chirp-base-light-choice-available-yes-unselected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-pressed-border-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-pressed-bg-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-focus-halo-color: var(--chirp-base-light-choice-available-yes-unselected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-focus-border-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-focus-bg-color: var(--chirp-base-light-choice-available-yes-unselected-active-bg-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-hover-halo-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-hover-border-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-hover-bg-color: var(--chirp-base-light-choice-available-yes-unselected-active-bg-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-active-halo-color: var(--chirp-base-light-choice-available-yes-unselected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-unselected-active-border-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-unselected-active-bg-color: var(--chirp-base-light-choice-available-yes-unselected-active-bg-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-disabled-halo-color: var(--chirp-base-light-choice-available-yes-selected-disabled-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-disabled-border-color: var(--chirp-base-light-choice-available-yes-selected-active-border-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-disabled-bg-color: var(--chirp-base-light-ui-bg-03);
  --chirp-base-light-ct-selection-card-available-yes-selected-pressed-halo-color: var(--chirp-base-light-choice-available-yes-selected-pressed-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-pressed-border-color: var(--chirp-base-light-choice-available-yes-selected-pressed-border-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-pressed-bg-color: var(--chirp-base-light-ui-bg-04);
  --chirp-base-light-ct-selection-card-available-yes-selected-focus-halo-color: var(--chirp-base-light-choice-available-yes-selected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-focus-border-color: var(--chirp-base-light-choice-available-yes-selected-focus-border-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-focus-bg-color: var(--chirp-base-light-ui-bg-03);
  --chirp-base-light-ct-selection-card-available-yes-selected-hover-halo-color: var(--chirp-base-light-choice-available-yes-selected-hover-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-hover-border-color: var(--chirp-base-light-choice-available-yes-selected-hover-border-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-hover-bg-color: var(--chirp-base-light-ui-bg-03);
  --chirp-base-light-ct-selection-card-available-yes-selected-active-halo-color: var(--chirp-base-light-choice-available-yes-selected-active-halo-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-active-border-color: var(--chirp-base-light-choice-available-yes-selected-active-border-color);
  --chirp-base-light-ct-selection-card-available-yes-selected-active-bg-color: var(--chirp-base-light-ui-bg-03);
  --chirp-base-light-ct-button-action-subtle-pressed-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-pressed-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-pressed-bg-color-3: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-subtle-pressed-bg-color-2: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-subtle-pressed-bg-color-1: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-subtle-pressed-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-subtle-pressed-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-subtle-pressed-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-subtle-focus-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-focus-halo-color: var(--chirp-base-light-button-action-focus-halo-alt);
  --chirp-base-light-ct-button-action-subtle-focus-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-focus-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-focus-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-focus-border-color: var(--chirp-base-light-button-action-focus-border-alt);
  --chirp-base-light-ct-button-action-subtle-focus-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-subtle-focus-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-subtle-hover-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-hover-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-hover-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-hover-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-hover-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-subtle-hover-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-subtle-hover-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-subtle-hover-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-subtle-active-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-active-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-subtle-active-bg-color-3: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-subtle-active-bg-color-2: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-subtle-active-bg-color-1: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-subtle-active-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-subtle-active-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-subtle-active-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-tertiary-pressed-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-pressed-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-pressed-bg-color-3: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-tertiary-pressed-bg-color-2: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-tertiary-pressed-bg-color-1: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-tertiary-pressed-border-color: var(--chirp-base-light-button-action-border-tertiary);
  --chirp-base-light-ct-button-action-tertiary-pressed-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-tertiary-pressed-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-focus-halo-color: var(--chirp-base-light-button-action-focus-halo-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-border-color: var(--chirp-base-light-button-action-focus-border-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-tertiary-focus-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-tertiary-hover-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-hover-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-hover-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-hover-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-hover-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-tertiary-hover-border-color: var(--chirp-base-light-button-action-border-tertiary);
  --chirp-base-light-ct-button-action-tertiary-hover-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-tertiary-hover-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-tertiary-active-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-active-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-tertiary-active-bg-color-3: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-tertiary-active-bg-color-2: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-tertiary-active-bg-color-1: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-tertiary-active-border-color: var(--chirp-base-light-button-action-border-tertiary);
  --chirp-base-light-ct-button-action-tertiary-active-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-tertiary-active-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-secondary-pressed-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-pressed-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-pressed-bg-color-3: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-secondary-pressed-bg-color-2: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-secondary-pressed-bg-color-1: var(--chirp-base-light-button-action-bg-pressed-alt);
  --chirp-base-light-ct-button-action-secondary-pressed-border-color: var(--chirp-base-light-button-action-border-secondary);
  --chirp-base-light-ct-button-action-secondary-pressed-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-secondary-pressed-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-secondary-focus-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-focus-halo-color: var(--chirp-base-light-button-action-focus-halo-alt);
  --chirp-base-light-ct-button-action-secondary-focus-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-focus-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-focus-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-focus-border-color: var(--chirp-base-light-button-action-focus-border-alt);
  --chirp-base-light-ct-button-action-secondary-focus-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-secondary-focus-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-secondary-hover-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-hover-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-hover-bg-color-3: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-hover-bg-color-2: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-hover-bg-color-1: var(--chirp-base-light-button-action-bg-focus-alt);
  --chirp-base-light-ct-button-action-secondary-hover-border-color: var(--chirp-base-light-button-action-border-secondary);
  --chirp-base-light-ct-button-action-secondary-hover-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-secondary-hover-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-secondary-active-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-active-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-secondary-active-bg-color-3: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-secondary-active-bg-color-2: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-secondary-active-bg-color-1: var(--chirp-base-light-button-action-bg-active-alt);
  --chirp-base-light-ct-button-action-secondary-active-border-color: var(--chirp-base-light-button-action-border-secondary);
  --chirp-base-light-ct-button-action-secondary-active-icon-color: var(--chirp-base-light-button-action-icon-alt);
  --chirp-base-light-ct-button-action-secondary-active-text-color: var(--chirp-base-light-button-action-text-alt);
  --chirp-base-light-ct-button-action-primary-pressed-overlay: var(--chirp-base-light-button-common-overlay-lowlight);
  --chirp-base-light-ct-button-action-primary-pressed-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-primary-pressed-bg-color-3: var(--chirp-base-light-button-action-bg-color-3);
  --chirp-base-light-ct-button-action-primary-pressed-bg-color-2: var(--chirp-base-light-button-action-bg-color-2);
  --chirp-base-light-ct-button-action-primary-pressed-bg-color-1: var(--chirp-base-light-button-action-bg-color-1);
  --chirp-base-light-ct-button-action-primary-pressed-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-primary-pressed-icon-color: var(--chirp-base-light-button-action-icon);
  --chirp-base-light-ct-button-action-primary-pressed-text-color: var(--chirp-base-light-button-action-text);
  --chirp-base-light-ct-button-action-primary-focus-overlay: var(--chirp-base-light-button-common-overlay-highlight);
  --chirp-base-light-ct-button-action-primary-focus-halo-color: var(--chirp-base-light-button-action-focus-halo);
  --chirp-base-light-ct-button-action-primary-focus-bg-color-3: var(--chirp-base-light-button-action-bg-color-3);
  --chirp-base-light-ct-button-action-primary-focus-bg-color-2: var(--chirp-base-light-button-action-bg-color-2);
  --chirp-base-light-ct-button-action-primary-focus-bg-color-1: var(--chirp-base-light-button-action-bg-color-1);
  --chirp-base-light-ct-button-action-primary-focus-border-color: var(--chirp-base-light-button-action-focus-border);
  --chirp-base-light-ct-button-action-primary-focus-icon-color: var(--chirp-base-light-button-action-icon);
  --chirp-base-light-ct-button-action-primary-focus-text-color: var(--chirp-base-light-button-action-text);
  --chirp-base-light-ct-button-action-primary-hover-overlay: var(--chirp-base-light-button-common-overlay-highlight);
  --chirp-base-light-ct-button-action-primary-hover-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-primary-hover-bg-color-3: var(--chirp-base-light-button-action-bg-color-3);
  --chirp-base-light-ct-button-action-primary-hover-bg-color-2: var(--chirp-base-light-button-action-bg-color-2);
  --chirp-base-light-ct-button-action-primary-hover-bg-color-1: var(--chirp-base-light-button-action-bg-color-1);
  --chirp-base-light-ct-button-action-primary-hover-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-primary-hover-icon-color: var(--chirp-base-light-button-action-icon);
  --chirp-base-light-ct-button-action-primary-hover-text-color: var(--chirp-base-light-button-action-text);
  --chirp-base-light-ct-button-action-primary-active-overlay: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-primary-active-halo-color: var(--chirp-base-light-button-common-transparent);
  --chirp-base-light-ct-button-action-primary-active-bg-color-3: var(--chirp-base-light-button-action-bg-color-3);
  --chirp-base-light-ct-button-action-primary-active-bg-color-2: var(--chirp-base-light-button-action-bg-color-2);
  --chirp-base-light-ct-button-action-primary-active-bg-color-1: var(--chirp-base-light-button-action-bg-color-1);
  --chirp-base-light-ct-button-action-primary-active-border-color: var(--chirp-base-light-button-action-border);
  --chirp-base-light-ct-button-action-primary-active-icon-color: var(--chirp-base-light-button-action-icon);
  --chirp-base-light-ct-button-action-primary-active-text-color: var(--chirp-base-light-button-action-text);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-halo-color: var(--chirp-base-light-choice-available-other-unselected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-border-color: var(--chirp-base-light-choice-available-other-unselected-pressed-border-color);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-bg-color: var(--chirp-base-light-choice-available-other-unselected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-text-tertiary: var(--chirp-base-light-choice-available-other-unselected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-text-secondary: var(--chirp-base-light-choice-available-other-unselected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-unselected-pressed-text-primary: var(--chirp-base-light-choice-available-other-unselected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-halo-color: var(--chirp-base-light-choice-available-other-unselected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-border-color: var(--chirp-base-light-choice-available-other-unselected-focus-border-color);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-bg-color: var(--chirp-base-light-choice-available-other-unselected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-text-tertiary: var(--chirp-base-light-choice-available-other-unselected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-text-secondary: var(--chirp-base-light-choice-available-other-unselected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-unselected-focus-text-primary: var(--chirp-base-light-choice-available-other-unselected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-halo-color: var(--chirp-base-light-choice-available-other-unselected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-border-color: var(--chirp-base-light-choice-available-other-unselected-hover-border-color);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-bg-color: var(--chirp-base-light-choice-available-other-unselected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-text-tertiary: var(--chirp-base-light-choice-available-other-unselected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-text-secondary: var(--chirp-base-light-choice-available-other-unselected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-unselected-hover-text-primary: var(--chirp-base-light-choice-available-other-unselected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-unselected-active-halo-color: var(--chirp-base-light-choice-available-other-unselected-active-halo-color);
  --chirp-base-light-ct-swatch-available-other-unselected-active-border-color: var(--chirp-base-light-choice-available-other-unselected-active-border-color);
  --chirp-base-light-ct-swatch-available-other-unselected-active-bg-color: var(--chirp-base-light-choice-available-other-unselected-active-bg-color);
  --chirp-base-light-ct-swatch-available-other-unselected-active-text-tertiary: var(--chirp-base-light-choice-available-other-unselected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-unselected-active-text-secondary: var(--chirp-base-light-choice-available-other-unselected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-unselected-active-text-primary: var(--chirp-base-light-choice-available-other-unselected-active-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-halo-color: var(--chirp-base-light-choice-available-other-selected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-border-color: var(--chirp-base-light-choice-available-other-selected-pressed-border-color);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-bg-color: var(--chirp-base-light-choice-available-other-selected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-text-tertiary: var(--chirp-base-light-choice-available-other-selected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-text-secondary: var(--chirp-base-light-choice-available-other-selected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-selected-pressed-text-primary: var(--chirp-base-light-choice-available-other-selected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-selected-focus-halo-color: var(--chirp-base-light-choice-available-other-selected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-other-selected-focus-border-color: var(--chirp-base-light-choice-available-other-selected-focus-border-color);
  --chirp-base-light-ct-swatch-available-other-selected-focus-bg-color: var(--chirp-base-light-choice-available-other-selected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-other-selected-focus-text-tertiary: var(--chirp-base-light-choice-available-other-selected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-selected-focus-text-secondary: var(--chirp-base-light-choice-available-other-selected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-selected-focus-text-primary: var(--chirp-base-light-choice-available-other-selected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-selected-hover-halo-color: var(--chirp-base-light-choice-available-other-selected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-other-selected-hover-border-color: var(--chirp-base-light-choice-available-other-selected-hover-border-color);
  --chirp-base-light-ct-swatch-available-other-selected-hover-bg-color: var(--chirp-base-light-choice-available-other-selected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-other-selected-hover-text-tertiary: var(--chirp-base-light-choice-available-other-selected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-selected-hover-text-secondary: var(--chirp-base-light-choice-available-other-selected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-selected-hover-text-primary: var(--chirp-base-light-choice-available-other-selected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-other-selected-active-halo-color: var(--chirp-base-light-choice-available-other-selected-active-halo-color);
  --chirp-base-light-ct-swatch-available-other-selected-active-border-color: var(--chirp-base-light-choice-available-other-selected-active-border-color);
  --chirp-base-light-ct-swatch-available-other-selected-active-bg-color: var(--chirp-base-light-choice-available-other-selected-active-bg-color);
  --chirp-base-light-ct-swatch-available-other-selected-active-text-tertiary: var(--chirp-base-light-choice-available-other-selected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-other-selected-active-text-secondary: var(--chirp-base-light-choice-available-other-selected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-other-selected-active-text-primary: var(--chirp-base-light-choice-available-other-selected-active-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-halo-color: var(--chirp-base-light-choice-available-no-unselected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-border-color: var(--chirp-base-light-choice-available-no-unselected-pressed-border-color);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-bg-color: var(--chirp-base-light-choice-available-no-unselected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-text-tertiary: var(--chirp-base-light-choice-available-no-unselected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-text-secondary: var(--chirp-base-light-choice-available-no-unselected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-unselected-pressed-text-primary: var(--chirp-base-light-choice-available-no-unselected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-halo-color: var(--chirp-base-light-choice-available-no-unselected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-border-color: var(--chirp-base-light-choice-available-no-unselected-focus-border-color);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-bg-color: var(--chirp-base-light-choice-available-no-unselected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-text-tertiary: var(--chirp-base-light-choice-available-no-unselected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-text-secondary: var(--chirp-base-light-choice-available-no-unselected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-unselected-focus-text-primary: var(--chirp-base-light-choice-available-no-unselected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-halo-color: var(--chirp-base-light-choice-available-no-unselected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-border-color: var(--chirp-base-light-choice-available-no-unselected-hover-border-color);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-bg-color: var(--chirp-base-light-choice-available-no-unselected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-text-tertiary: var(--chirp-base-light-choice-available-no-unselected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-text-secondary: var(--chirp-base-light-choice-available-no-unselected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-unselected-hover-text-primary: var(--chirp-base-light-choice-available-no-unselected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-unselected-active-halo-color: var(--chirp-base-light-choice-available-no-unselected-active-halo-color);
  --chirp-base-light-ct-swatch-available-no-unselected-active-border-color: var(--chirp-base-light-choice-available-no-unselected-active-border-color);
  --chirp-base-light-ct-swatch-available-no-unselected-active-bg-color: var(--chirp-base-light-choice-available-no-unselected-active-bg-color);
  --chirp-base-light-ct-swatch-available-no-unselected-active-text-tertiary: var(--chirp-base-light-choice-available-no-unselected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-unselected-active-text-secondary: var(--chirp-base-light-choice-available-no-unselected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-unselected-active-text-primary: var(--chirp-base-light-choice-available-no-unselected-active-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-halo-color: var(--chirp-base-light-choice-available-no-selected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-border-color: var(--chirp-base-light-ui-bg-06);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-bg-color: var(--chirp-base-light-choice-available-no-selected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-text-tertiary: var(--chirp-base-light-choice-available-no-selected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-text-secondary: var(--chirp-base-light-choice-available-no-selected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-selected-pressed-text-primary: var(--chirp-base-light-choice-available-no-selected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-selected-focus-halo-color: var(--chirp-base-light-choice-available-no-selected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-no-selected-focus-border-color: var(--chirp-base-light-ui-bg-06);
  --chirp-base-light-ct-swatch-available-no-selected-focus-bg-color: var(--chirp-base-light-choice-available-no-selected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-no-selected-focus-text-tertiary: var(--chirp-base-light-choice-available-no-selected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-selected-focus-text-secondary: var(--chirp-base-light-choice-available-no-selected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-selected-focus-text-primary: var(--chirp-base-light-choice-available-no-selected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-selected-hover-halo-color: var(--chirp-base-light-choice-available-no-selected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-no-selected-hover-border-color: var(--chirp-base-light-ui-bg-06);
  --chirp-base-light-ct-swatch-available-no-selected-hover-bg-color: var(--chirp-base-light-choice-available-no-selected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-no-selected-hover-text-tertiary: var(--chirp-base-light-choice-available-no-selected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-selected-hover-text-secondary: var(--chirp-base-light-choice-available-no-selected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-selected-hover-text-primary: var(--chirp-base-light-choice-available-no-selected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-no-selected-active-halo-color: var(--chirp-base-light-choice-available-no-selected-active-halo-color);
  --chirp-base-light-ct-swatch-available-no-selected-active-border-color: var(--chirp-base-light-choice-available-no-selected-active-border-color);
  --chirp-base-light-ct-swatch-available-no-selected-active-bg-color: var(--chirp-base-light-choice-available-no-selected-active-bg-color);
  --chirp-base-light-ct-swatch-available-no-selected-active-text-tertiary: var(--chirp-base-light-choice-available-no-selected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-no-selected-active-text-secondary: var(--chirp-base-light-choice-available-no-selected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-no-selected-active-text-primary: var(--chirp-base-light-choice-available-no-selected-active-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-halo-color: var(--chirp-base-light-choice-available-yes-unselected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-border-color: var(--chirp-base-light-choice-available-yes-unselected-pressed-border-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-bg-color: var(--chirp-base-light-choice-available-yes-unselected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-tertiary: var(--chirp-base-light-choice-available-yes-unselected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-secondary: var(--chirp-base-light-choice-available-yes-unselected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-primary: var(--chirp-base-light-choice-available-yes-unselected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-halo-color: var(--chirp-base-light-choice-available-yes-unselected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-border-color: var(--chirp-base-light-choice-available-yes-unselected-focus-border-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-bg-color: var(--chirp-base-light-choice-available-yes-unselected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-text-tertiary: var(--chirp-base-light-choice-available-yes-unselected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-text-secondary: var(--chirp-base-light-choice-available-yes-unselected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-unselected-focus-text-primary: var(--chirp-base-light-choice-available-yes-unselected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-halo-color: var(--chirp-base-light-choice-available-yes-unselected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-border-color: var(--chirp-base-light-choice-available-yes-unselected-hover-border-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-bg-color: var(--chirp-base-light-choice-available-yes-unselected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-text-tertiary: var(--chirp-base-light-choice-available-yes-unselected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-text-secondary: var(--chirp-base-light-choice-available-yes-unselected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-unselected-hover-text-primary: var(--chirp-base-light-choice-available-yes-unselected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-halo-color: var(--chirp-base-light-choice-available-yes-unselected-active-halo-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-border-color: var(--chirp-base-light-choice-available-yes-unselected-active-border-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-bg-color: var(--chirp-base-light-choice-available-yes-unselected-active-bg-color);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-text-tertiary: var(--chirp-base-light-choice-available-yes-unselected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-text-secondary: var(--chirp-base-light-choice-available-yes-unselected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-unselected-active-text-primary: var(--chirp-base-light-choice-available-yes-unselected-active-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-halo-color: var(--chirp-base-light-choice-available-yes-selected-pressed-halo-color);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-border-color: var(--chirp-base-light-choice-available-yes-selected-pressed-border-color);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-bg-color: var(--chirp-base-light-choice-available-yes-selected-pressed-bg-color);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-text-tertiary: var(--chirp-base-light-choice-available-yes-selected-pressed-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-text-secondary: var(--chirp-base-light-choice-available-yes-selected-pressed-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-selected-pressed-text-primary: var(--chirp-base-light-choice-available-yes-selected-pressed-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-halo-color: var(--chirp-base-light-choice-available-yes-selected-focus-halo-color);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-border-color: var(--chirp-base-light-choice-available-yes-selected-focus-border-color);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-bg-color: var(--chirp-base-light-choice-available-yes-selected-focus-bg-color);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-text-tertiary: var(--chirp-base-light-choice-available-yes-selected-focus-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-text-secondary: var(--chirp-base-light-choice-available-yes-selected-focus-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-selected-focus-text-primary: var(--chirp-base-light-choice-available-yes-selected-focus-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-halo-color: var(--chirp-base-light-choice-available-yes-selected-hover-halo-color);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-border-color: var(--chirp-base-light-choice-available-yes-unselected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-bg-color: var(--chirp-base-light-choice-available-yes-selected-hover-bg-color);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-text-tertiary: var(--chirp-base-light-choice-available-yes-selected-hover-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-text-secondary: var(--chirp-base-light-choice-available-yes-selected-hover-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-selected-hover-text-primary: var(--chirp-base-light-choice-available-yes-selected-hover-text-color-primary);
  --chirp-base-light-ct-swatch-available-yes-selected-active-halo-color: var(--chirp-base-light-choice-available-yes-selected-active-halo-color);
  --chirp-base-light-ct-swatch-available-yes-selected-active-border-color: var(--chirp-base-light-choice-available-yes-selected-active-border-color);
  --chirp-base-light-ct-swatch-available-yes-selected-active-bg-color: var(--chirp-base-light-choice-available-yes-selected-active-bg-color);
  --chirp-base-light-ct-swatch-available-yes-selected-active-text-tertiary: var(--chirp-base-light-choice-available-yes-selected-active-text-color-tertiary);
  --chirp-base-light-ct-swatch-available-yes-selected-active-text-secondary: var(--chirp-base-light-choice-available-yes-selected-active-text-color-secondary);
  --chirp-base-light-ct-swatch-available-yes-selected-active-text-primary: var(--chirp-base-light-choice-available-yes-selected-active-text-color-primary);
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.4rem;
  --chirp-typography-utility-line-height: 1.43;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-font-size: 2.4rem;
  --chirp-typography-utility-7-display-line-height: 1.17;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-font-size: 2rem;
  --chirp-typography-utility-6-display-line-height: 1.20;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-font-size: 1.8rem;
  --chirp-typography-utility-5-display-line-height: 1.33;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-font-size: 1.6rem;
  --chirp-typography-utility-4-display-line-height: 1.25;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-font-size: 1.4rem;
  --chirp-typography-utility-3-display-line-height: 1.29;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 1rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.40;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.4rem;
  --chirp-typography-utility-7-line-height: 1.17;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 2rem;
  --chirp-typography-utility-6-line-height: 1.20;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.8rem;
  --chirp-typography-utility-5-line-height: 1.33;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.6rem;
  --chirp-typography-utility-4-line-height: 1.25;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.4rem;
  --chirp-typography-utility-3-line-height: 1.29;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.2rem;
  --chirp-typography-utility-2-line-height: 1.33;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 1rem;
  --chirp-typography-utility-1-line-height: 1.40;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.2rem;
  --chirp-typography-utility-small-line-height: 1.50;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.2rem;
  --chirp-typography-form-helper-line-height: 1.33;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.4rem;
  --chirp-typography-form-text-line-height: 1.43;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.2rem;
  --chirp-typography-form-dropdown-header-line-height: 1.33;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.4rem;
  --chirp-typography-form-label-line-height: 1.14;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.6rem;
  --chirp-typography-form-grouping-line-height: 1.13;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1.2rem;
  --chirp-typography-overline-line-height: 1.50;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.4rem;
  --chirp-typography-button-medium-line-height: 1.43;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.6rem;
  --chirp-typography-button-line-height: 1.50;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.2rem;
  --chirp-typography-caption-line-height: 1.50;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.4rem;
  --chirp-typography-paragraph-2-line-height: 1.43;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.6rem;
  --chirp-typography-paragraph-1-line-height: 1.38;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.4rem;
  --chirp-typography-section-3-line-height: 1.43;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.6rem;
  --chirp-typography-section-2-line-height: 1.50;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 1.8rem;
  --chirp-typography-section-1-line-height: 1.56;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 1.4rem;
  --chirp-typography-display-6-line-height: 1.43;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 1.6rem;
  --chirp-typography-display-5-line-height: 1.38;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 1.8rem;
  --chirp-typography-display-4-line-height: 1.56;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 2rem;
  --chirp-typography-display-3-line-height: 1.50;
  --chirp-typography-display-2-text-case: none;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 2.4rem;
  --chirp-typography-display-2-line-height: 1.42;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-font-size: 3.2rem;
  --chirp-typography-display-1-line-height: 1.31;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-strong: 500;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-strong: 500;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-strong: 500;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-editorial-heading-weight-stronger: 700;
  --chirp-typography-editorial-heading-weight-strong: 500;
  --chirp-typography-editorial-heading-weight-light: 300;
  --chirp-typography-editorial-heading-weight-normal: 400;
  --chirp-typography-product-heading-weight-stronger: 700;
  --chirp-typography-product-heading-weight-strong: 500;
  --chirp-typography-product-heading-weight-normal: 400;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 2rem;
  --chirp-typography-editorial-text-3-line-height: 1.50;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.6rem;
  --chirp-typography-editorial-text-2-line-height: 1.50;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.4rem;
  --chirp-typography-editorial-text-1-line-height: 1.50;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.6rem;
  --chirp-typography-editorial-heading-6-line-height: 1.25;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.8rem;
  --chirp-typography-editorial-heading-5-line-height: 1.25;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 4rem;
  --chirp-typography-editorial-heading-4-line-height: 1.25;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.2rem;
  --chirp-typography-editorial-heading-3-line-height: 1.50;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.4rem;
  --chirp-typography-editorial-heading-2-line-height: 1.50;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 2rem;
  --chirp-typography-editorial-heading-1-line-height: 1.50;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 2rem;
  --chirp-typography-product-text-3-line-height: 1.25;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.6rem;
  --chirp-typography-product-text-2-line-height: 1.25;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.4rem;
  --chirp-typography-product-text-1-line-height: 1.29;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 4rem;
  --chirp-typography-product-heading-6-line-height: 1.25;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.6rem;
  --chirp-typography-product-heading-5-line-height: 1.25;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.2rem;
  --chirp-typography-product-heading-4-line-height: 1.25;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.8rem;
  --chirp-typography-product-heading-3-line-height: 1.25;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.4rem;
  --chirp-typography-product-heading-2-line-height: 1.25;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 2rem;
  --chirp-typography-product-heading-1-line-height: 1.25;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-weight-semibold: 600;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-wide: 0.16em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-display-typeface-small: Poppins, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-price-small-strikethrough-text-case: none;
  --chirp-typography-price-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-small-strikethrough-font-size: 1.6rem;
  --chirp-typography-price-small-strikethrough-line-height: 1.25;
  --chirp-typography-price-x-small-strikethrough-text-case: none;
  --chirp-typography-price-x-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-x-small-strikethrough-font-size: 1.4rem;
  --chirp-typography-price-x-small-strikethrough-line-height: 1.29;
  --chirp-typography-price-x-large-text-case: none;
  --chirp-typography-price-x-large-text-decoration: none;
  --chirp-typography-price-x-large-font-size: 2.4rem;
  --chirp-typography-price-x-large-line-height: 1.17;
  --chirp-typography-price-large-text-case: none;
  --chirp-typography-price-large-text-decoration: none;
  --chirp-typography-price-large-font-size: 2rem;
  --chirp-typography-price-large-line-height: 1.20;
  --chirp-typography-price-medium-text-case: none;
  --chirp-typography-price-medium-text-decoration: none;
  --chirp-typography-price-medium-font-size: 1.8rem;
  --chirp-typography-price-medium-line-height: 1.22;
  --chirp-typography-price-small-text-case: none;
  --chirp-typography-price-small-text-decoration: none;
  --chirp-typography-price-small-font-size: 1.6rem;
  --chirp-typography-price-small-line-height: 1.25;
  --chirp-typography-price-x-small-text-case: none;
  --chirp-typography-price-x-small-text-decoration: none;
  --chirp-typography-price-x-small-font-size: 1.4rem;
  --chirp-typography-price-x-small-line-height: 1.29;
  --chirp-typography-text-typeface: Roboto, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: Roboto, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-utility-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-weight: 400;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-weight: 400;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-weight: 400;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-weight: 400;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-weight: 400;
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-small-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-error-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-medium-letter-spacing: 0;
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-letter-spacing: 0;
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-button-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-caption-letter-spacing: 0;
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: 0;
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: 0;
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: 0;
  --chirp-typography-section-3-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-2-letter-spacing: 0;
  --chirp-typography-section-2-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-1-letter-spacing: 0;
  --chirp-typography-section-1-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-6-letter-spacing: 0;
  --chirp-typography-display-6-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: 0;
  --chirp-typography-display-5-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: 0;
  --chirp-typography-display-4-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: 0;
  --chirp-typography-display-3-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: 0;
  --chirp-typography-display-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: 0;
  --chirp-typography-display-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 400;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 400;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 400;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 400;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 400;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 400;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 400;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 400;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 400;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 400;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 400;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 400;
  --chirp-typography-price-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-x-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-x-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-large-letter-spacing: 0;
  --chirp-typography-price-x-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-x-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-large-letter-spacing: 0;
  --chirp-typography-price-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-medium-letter-spacing: 0;
  --chirp-typography-price-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-small-letter-spacing: 0;
  --chirp-typography-price-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-small-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-small-letter-spacing: 0;
  --chirp-typography-price-x-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-x-small-font-family: var(--chirp-typography-text-typeface);
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.4rem;
  --chirp-typography-utility-line-height: 1.43;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 1rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.40;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.4rem;
  --chirp-typography-utility-7-line-height: 1.17;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 2rem;
  --chirp-typography-utility-6-line-height: 1.20;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.8rem;
  --chirp-typography-utility-5-line-height: 1.33;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.6rem;
  --chirp-typography-utility-4-line-height: 1.25;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.4rem;
  --chirp-typography-utility-3-line-height: 1.29;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.2rem;
  --chirp-typography-utility-2-line-height: 1.33;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 1rem;
  --chirp-typography-utility-1-line-height: 1.40;
  --chirp-typography-utility-7-display-font-weight: 900;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-line-height: 1.00;
  --chirp-typography-utility-7-display-font-size: 8rem;
  --chirp-typography-utility-6-display-font-weight: 900;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-line-height: 1.00;
  --chirp-typography-utility-6-display-font-size: 4rem;
  --chirp-typography-utility-5-display-font-weight: 900;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-line-height: 1.00;
  --chirp-typography-utility-5-display-font-size: 3.2rem;
  --chirp-typography-utility-4-display-font-weight: 900;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-line-height: 1.00;
  --chirp-typography-utility-4-display-font-size: 2.4rem;
  --chirp-typography-utility-3-display-font-weight: 900;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-line-height: 1.00;
  --chirp-typography-utility-3-display-font-size: 2rem;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.2rem;
  --chirp-typography-utility-small-line-height: 1.50;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-line-height: 1.54;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.3rem;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.6rem;
  --chirp-typography-form-text-line-height: 1.25;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.2rem;
  --chirp-typography-form-dropdown-header-line-height: 1.33;
  --chirp-typography-form-label-line-height: 1.14;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.4rem;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.6rem;
  --chirp-typography-form-grouping-line-height: 1.25;
  --chirp-typography-form-grouping-font-weight: 600;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1.1rem;
  --chirp-typography-overline-line-height: 1.27;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.4rem;
  --chirp-typography-button-medium-line-height: 1.43;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.4rem;
  --chirp-typography-button-line-height: 1.43;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.2rem;
  --chirp-typography-caption-line-height: 1.25;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.4rem;
  --chirp-typography-paragraph-2-line-height: 1.29;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.6rem;
  --chirp-typography-paragraph-1-line-height: 1.25;
  --chirp-typography-editorial-p-2-text-case: none;
  --chirp-typography-editorial-p-2-text-decoration: none;
  --chirp-typography-editorial-p-2-font-size: 1.4rem;
  --chirp-typography-editorial-p-2-line-height: 1.50;
  --chirp-typography-editorial-p-1-text-case: none;
  --chirp-typography-editorial-p-1-text-decoration: none;
  --chirp-typography-editorial-p-1-font-size: 1.6rem;
  --chirp-typography-editorial-p-1-line-height: 1.50;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.4rem;
  --chirp-typography-section-3-line-height: 1.29;
  --chirp-typography-section-3-font-weight: 600;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.6rem;
  --chirp-typography-section-2-line-height: 1.25;
  --chirp-typography-section-2-font-weight: 600;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 2rem;
  --chirp-typography-section-1-line-height: 1.25;
  --chirp-typography-section-1-font-weight: 600;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 2rem;
  --chirp-typography-display-6-line-height: 1.25;
  --chirp-typography-display-6-font-weight: 800;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 2.4rem;
  --chirp-typography-display-5-line-height: 1.25;
  --chirp-typography-display-5-font-weight: 800;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 2.8rem;
  --chirp-typography-display-4-line-height: 1.25;
  --chirp-typography-display-4-font-weight: 800;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 3.2rem;
  --chirp-typography-display-3-line-height: 1.25;
  --chirp-typography-display-3-font-weight: 800;
  --chirp-typography-display-2-text-case: none;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 3.6rem;
  --chirp-typography-display-2-line-height: 1.25;
  --chirp-typography-display-2-font-weight: 800;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-font-size: 4rem;
  --chirp-typography-display-1-line-height: 1.25;
  --chirp-typography-display-1-font-weight: 800;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-weight-semibold: 600;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-wide: 0.16em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-editorial-heading-weight-light: 400;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 2rem;
  --chirp-typography-editorial-text-3-line-height: 1.50;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.6rem;
  --chirp-typography-editorial-text-2-line-height: 1.50;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.4rem;
  --chirp-typography-editorial-text-1-line-height: 1.50;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.6rem;
  --chirp-typography-editorial-heading-6-line-height: 1.25;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.8rem;
  --chirp-typography-editorial-heading-5-line-height: 1.25;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 4rem;
  --chirp-typography-editorial-heading-4-line-height: 1.25;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.2rem;
  --chirp-typography-editorial-heading-3-line-height: 1.50;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.4rem;
  --chirp-typography-editorial-heading-2-line-height: 1.50;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 2rem;
  --chirp-typography-editorial-heading-1-line-height: 1.50;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 2rem;
  --chirp-typography-product-text-3-line-height: 1.25;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.6rem;
  --chirp-typography-product-text-2-line-height: 1.25;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.4rem;
  --chirp-typography-product-text-1-line-height: 1.29;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 4rem;
  --chirp-typography-product-heading-6-line-height: 1.05;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.6rem;
  --chirp-typography-product-heading-5-line-height: 1.06;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.2rem;
  --chirp-typography-product-heading-4-line-height: 1.06;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.8rem;
  --chirp-typography-product-heading-3-line-height: 1.07;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.4rem;
  --chirp-typography-product-heading-2-line-height: 1.04;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 2rem;
  --chirp-typography-product-heading-1-line-height: 1.05;
  --chirp-typography-text-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-weight-strong: 500;
  --chirp-typography-editorial-text-weight-strong: 500;
  --chirp-typography-product-text-weight-strong: 500;
  --chirp-typography-editorial-heading-weight-stronger: 900;
  --chirp-typography-editorial-heading-weight-normal: 400;
  --chirp-typography-editorial-heading-weight-strong: 600;
  --chirp-typography-product-heading-weight-stronger: 900;
  --chirp-typography-product-heading-weight-normal: 400;
  --chirp-typography-product-heading-weight-strong: 600;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-display-typeface-small: 'Archivo Expanded', Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: 'Archivo Expanded', Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-small-letter-spacing: 0;
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-form-error-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-medium-letter-spacing: 0;
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-button-letter-spacing: 0;
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-button-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-caption-letter-spacing: 0;
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: 0;
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: 0;
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-2-letter-spacing: 0;
  --chirp-typography-editorial-p-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-1-letter-spacing: 0;
  --chirp-typography-editorial-p-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: 0;
  --chirp-typography-section-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-2-letter-spacing: 0;
  --chirp-typography-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-1-letter-spacing: 0;
  --chirp-typography-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-6-letter-spacing: 0;
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: 0;
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: 0;
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: 0;
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: 0;
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: 0;
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 400;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 400;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 400;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 400;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 400;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 400;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 400;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 400;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 400;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 400;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 400;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 400;
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.3rem;
  --chirp-typography-utility-line-height: 1.54;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-font-size: 2.4rem;
  --chirp-typography-utility-7-display-line-height: 1.17;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-font-size: 2rem;
  --chirp-typography-utility-6-display-line-height: 1.20;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-font-size: 1.4rem;
  --chirp-typography-utility-3-display-line-height: 1.29;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-font-size: 1.7rem;
  --chirp-typography-utility-5-display-line-height: 1.41;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-font-size: 1.5rem;
  --chirp-typography-utility-4-display-line-height: 1.33;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 0.9rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.56;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.3rem;
  --chirp-typography-utility-7-line-height: 1.22;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 1.9rem;
  --chirp-typography-utility-6-line-height: 1.26;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.7rem;
  --chirp-typography-utility-5-line-height: 1.41;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.5rem;
  --chirp-typography-utility-4-line-height: 1.33;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.3rem;
  --chirp-typography-utility-3-line-height: 1.38;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.1rem;
  --chirp-typography-utility-2-line-height: 1.45;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 0.9rem;
  --chirp-typography-utility-1-line-height: 1.56;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.1rem;
  --chirp-typography-utility-small-line-height: 1.64;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-line-height: 1.67;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.2rem;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.5rem;
  --chirp-typography-form-text-line-height: 1.33;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.1rem;
  --chirp-typography-form-dropdown-header-line-height: 1.45;
  --chirp-typography-form-label-line-height: 1.23;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.3rem;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.5rem;
  --chirp-typography-form-grouping-line-height: 1.33;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1rem;
  --chirp-typography-overline-line-height: 1.40;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.3rem;
  --chirp-typography-button-medium-line-height: 1.54;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.3rem;
  --chirp-typography-button-line-height: 1.54;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.1rem;
  --chirp-typography-caption-line-height: 1.36;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.3rem;
  --chirp-typography-paragraph-2-line-height: 1.38;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.5rem;
  --chirp-typography-paragraph-1-line-height: 1.33;
  --chirp-typography-editorial-p-2-text-case: none;
  --chirp-typography-editorial-p-2-text-decoration: none;
  --chirp-typography-editorial-p-2-font-size: 1.3rem;
  --chirp-typography-editorial-p-2-line-height: 1.62;
  --chirp-typography-editorial-p-1-text-case: none;
  --chirp-typography-editorial-p-1-text-decoration: none;
  --chirp-typography-editorial-p-1-font-size: 1.5rem;
  --chirp-typography-editorial-p-1-line-height: 1.60;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.3rem;
  --chirp-typography-section-3-line-height: 1.38;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.5rem;
  --chirp-typography-section-2-line-height: 1.33;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 1.9rem;
  --chirp-typography-section-1-line-height: 1.32;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 1.9rem;
  --chirp-typography-display-6-line-height: 1.32;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 2.3rem;
  --chirp-typography-display-5-line-height: 1.30;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 2.7rem;
  --chirp-typography-display-4-line-height: 1.30;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 3.1rem;
  --chirp-typography-display-3-line-height: 1.29;
  --chirp-typography-display-2-text-case: none;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 3.5rem;
  --chirp-typography-display-2-line-height: 1.29;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-font-size: 3.9rem;
  --chirp-typography-display-1-line-height: 1.28;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-editorial-heading-weight-stronger: 700;
  --chirp-typography-editorial-heading-weight-light: 300;
  --chirp-typography-editorial-heading-weight-normal: 400;
  --chirp-typography-product-heading-weight-stronger: 700;
  --chirp-typography-product-heading-weight-normal: 400;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-utility-weight-strong: 500;
  --chirp-typography-editorial-text-weight-strong: 500;
  --chirp-typography-product-text-weight-strong: 500;
  --chirp-typography-editorial-heading-weight-strong: 500;
  --chirp-typography-product-heading-weight-strong: 500;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 1.9rem;
  --chirp-typography-editorial-text-3-line-height: 1.58;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.5rem;
  --chirp-typography-editorial-text-2-line-height: 1.60;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.3rem;
  --chirp-typography-editorial-text-1-line-height: 1.62;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.5rem;
  --chirp-typography-editorial-heading-6-line-height: 1.27;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.7rem;
  --chirp-typography-editorial-heading-5-line-height: 1.28;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 3.9rem;
  --chirp-typography-editorial-heading-4-line-height: 1.28;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.1rem;
  --chirp-typography-editorial-heading-3-line-height: 1.55;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.1rem;
  --chirp-typography-editorial-heading-2-line-height: 1.71;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 1.9rem;
  --chirp-typography-editorial-heading-1-line-height: 1.58;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 1.9rem;
  --chirp-typography-product-text-3-line-height: 1.32;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.5rem;
  --chirp-typography-product-text-2-line-height: 1.33;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.3rem;
  --chirp-typography-product-text-1-line-height: 1.38;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 3.9rem;
  --chirp-typography-product-heading-6-line-height: 1.28;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.5rem;
  --chirp-typography-product-heading-5-line-height: 1.29;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.1rem;
  --chirp-typography-product-heading-4-line-height: 1.29;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.7rem;
  --chirp-typography-product-heading-3-line-height: 1.30;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.3rem;
  --chirp-typography-product-heading-2-line-height: 1.30;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 1.9rem;
  --chirp-typography-product-heading-1-line-height: 1.32;
  --chirp-typography-weight-semibold: 500;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-text-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-ls-wide: 0.08em;
  --chirp-typography-price-small-strikethrough-text-case: none;
  --chirp-typography-price-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-small-strikethrough-font-size: 1.5rem;
  --chirp-typography-price-small-strikethrough-line-height: 1.33;
  --chirp-typography-price-x-small-strikethrough-text-case: none;
  --chirp-typography-price-x-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-x-small-strikethrough-font-size: 1.3rem;
  --chirp-typography-price-x-small-strikethrough-line-height: 1.38;
  --chirp-typography-price-x-large-text-case: none;
  --chirp-typography-price-x-large-text-decoration: none;
  --chirp-typography-price-x-large-font-size: 2.3rem;
  --chirp-typography-price-x-large-line-height: 1.22;
  --chirp-typography-price-large-text-case: none;
  --chirp-typography-price-large-text-decoration: none;
  --chirp-typography-price-large-font-size: 1.9rem;
  --chirp-typography-price-large-line-height: 1.26;
  --chirp-typography-price-medium-text-case: none;
  --chirp-typography-price-medium-text-decoration: none;
  --chirp-typography-price-medium-font-size: 1.7rem;
  --chirp-typography-price-medium-line-height: 1.29;
  --chirp-typography-price-small-text-case: none;
  --chirp-typography-price-small-text-decoration: none;
  --chirp-typography-price-small-font-size: 1.5rem;
  --chirp-typography-price-small-line-height: 1.33;
  --chirp-typography-display-typeface-small: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-weight: 400;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-weight: 400;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-weight: 400;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-weight: 400;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-weight: 400;
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-small-letter-spacing: 0;
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-form-error-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-medium-letter-spacing: 0;
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-letter-spacing: 0;
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-button-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-caption-letter-spacing: 0;
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: 0;
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: 0;
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-2-letter-spacing: 0;
  --chirp-typography-editorial-p-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-1-letter-spacing: 0;
  --chirp-typography-editorial-p-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: 0;
  --chirp-typography-section-3-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-2-letter-spacing: 0;
  --chirp-typography-section-2-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-1-letter-spacing: 0;
  --chirp-typography-section-1-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-6-letter-spacing: 0;
  --chirp-typography-display-6-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: 0;
  --chirp-typography-display-5-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: 0;
  --chirp-typography-display-4-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: 0;
  --chirp-typography-display-3-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: 0;
  --chirp-typography-display-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: 0;
  --chirp-typography-display-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 400;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 400;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 400;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 400;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 400;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 400;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 400;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 400;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 400;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 400;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 400;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 400;
  --chirp-typography-price-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-x-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-x-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-large-letter-spacing: 0;
  --chirp-typography-price-x-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-x-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-large-letter-spacing: 0;
  --chirp-typography-price-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-medium-letter-spacing: 0;
  --chirp-typography-price-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-small-letter-spacing: 0;
  --chirp-typography-price-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-small-font-family: var(--chirp-typography-text-typeface);
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.4rem;
  --chirp-typography-utility-line-height: 1.43;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-font-size: 2.4rem;
  --chirp-typography-utility-7-display-line-height: 1.17;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-font-size: 2rem;
  --chirp-typography-utility-6-display-line-height: 1.20;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-font-size: 1.4rem;
  --chirp-typography-utility-3-display-line-height: 1.29;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 1rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.40;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.4rem;
  --chirp-typography-utility-7-line-height: 1.17;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 2rem;
  --chirp-typography-utility-6-line-height: 1.20;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.8rem;
  --chirp-typography-utility-5-line-height: 1.33;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.6rem;
  --chirp-typography-utility-4-line-height: 1.25;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.4rem;
  --chirp-typography-utility-3-line-height: 1.29;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.2rem;
  --chirp-typography-utility-2-line-height: 1.33;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 1rem;
  --chirp-typography-utility-1-line-height: 1.40;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-line-height: 1.11;
  --chirp-typography-utility-5-display-font-size: 1.8rem;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-line-height: 1.25;
  --chirp-typography-utility-4-display-font-size: 1.6rem;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.2rem;
  --chirp-typography-utility-small-line-height: 1.50;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-line-height: 1.54;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.3rem;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.6rem;
  --chirp-typography-form-text-line-height: 1.25;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.2rem;
  --chirp-typography-form-dropdown-header-line-height: 1.33;
  --chirp-typography-form-label-line-height: 1.14;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.4rem;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.6rem;
  --chirp-typography-form-grouping-line-height: 1.25;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1.1rem;
  --chirp-typography-overline-line-height: 1.27;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.4rem;
  --chirp-typography-button-medium-line-height: 1.43;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.4rem;
  --chirp-typography-button-line-height: 1.43;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.2rem;
  --chirp-typography-caption-line-height: 1.25;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.4rem;
  --chirp-typography-paragraph-2-line-height: 1.29;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.6rem;
  --chirp-typography-paragraph-1-line-height: 1.25;
  --chirp-typography-editorial-p-2-text-case: none;
  --chirp-typography-editorial-p-2-text-decoration: none;
  --chirp-typography-editorial-p-2-font-size: 1.4rem;
  --chirp-typography-editorial-p-2-line-height: 1.50;
  --chirp-typography-editorial-p-1-text-case: none;
  --chirp-typography-editorial-p-1-text-decoration: none;
  --chirp-typography-editorial-p-1-font-size: 1.6rem;
  --chirp-typography-editorial-p-1-line-height: 1.50;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.4rem;
  --chirp-typography-section-3-line-height: 1.29;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.6rem;
  --chirp-typography-section-2-line-height: 1.25;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 2rem;
  --chirp-typography-section-1-line-height: 1.25;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 2rem;
  --chirp-typography-display-6-line-height: 1.25;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 2.4rem;
  --chirp-typography-display-5-line-height: 1.25;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 2.8rem;
  --chirp-typography-display-4-line-height: 1.25;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 3.2rem;
  --chirp-typography-display-3-line-height: 1.25;
  --chirp-typography-display-2-text-case: none;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 3.6rem;
  --chirp-typography-display-2-line-height: 1.25;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-font-size: 4rem;
  --chirp-typography-display-1-line-height: 1.25;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-editorial-heading-weight-stronger: 700;
  --chirp-typography-editorial-heading-weight-light: 300;
  --chirp-typography-editorial-heading-weight-normal: 400;
  --chirp-typography-product-heading-weight-stronger: 700;
  --chirp-typography-product-heading-weight-normal: 400;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 2rem;
  --chirp-typography-editorial-text-3-line-height: 1.50;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.6rem;
  --chirp-typography-editorial-text-2-line-height: 1.50;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.4rem;
  --chirp-typography-editorial-text-1-line-height: 1.50;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.6rem;
  --chirp-typography-editorial-heading-6-line-height: 1.25;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.8rem;
  --chirp-typography-editorial-heading-5-line-height: 1.25;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 4rem;
  --chirp-typography-editorial-heading-4-line-height: 1.25;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.2rem;
  --chirp-typography-editorial-heading-3-line-height: 1.50;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.4rem;
  --chirp-typography-editorial-heading-2-line-height: 1.50;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 2rem;
  --chirp-typography-editorial-heading-1-line-height: 1.50;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 2rem;
  --chirp-typography-product-text-3-line-height: 1.25;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.6rem;
  --chirp-typography-product-text-2-line-height: 1.25;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.4rem;
  --chirp-typography-product-text-1-line-height: 1.29;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 4rem;
  --chirp-typography-product-heading-6-line-height: 1.25;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.6rem;
  --chirp-typography-product-heading-5-line-height: 1.25;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.2rem;
  --chirp-typography-product-heading-4-line-height: 1.25;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.8rem;
  --chirp-typography-product-heading-3-line-height: 1.25;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.4rem;
  --chirp-typography-product-heading-2-line-height: 1.25;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 2rem;
  --chirp-typography-product-heading-1-line-height: 1.25;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-utility-weight-strong: 500;
  --chirp-typography-editorial-text-weight-strong: 500;
  --chirp-typography-product-text-weight-strong: 500;
  --chirp-typography-editorial-heading-weight-strong: 500;
  --chirp-typography-product-heading-weight-strong: 500;
  --chirp-typography-weight-semibold: 500;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-text-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-ls-wide: 0.08em;
  --chirp-typography-price-small-strikethrough-text-case: none;
  --chirp-typography-price-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-small-strikethrough-font-size: 1.6rem;
  --chirp-typography-price-small-strikethrough-line-height: 1.25;
  --chirp-typography-price-x-small-strikethrough-text-case: none;
  --chirp-typography-price-x-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-x-small-strikethrough-font-size: 1.4rem;
  --chirp-typography-price-x-small-strikethrough-line-height: 1.29;
  --chirp-typography-price-x-large-text-case: none;
  --chirp-typography-price-x-large-text-decoration: none;
  --chirp-typography-price-x-large-font-size: 2.4rem;
  --chirp-typography-price-x-large-line-height: 1.17;
  --chirp-typography-price-large-text-case: none;
  --chirp-typography-price-large-text-decoration: none;
  --chirp-typography-price-large-font-size: 2rem;
  --chirp-typography-price-large-line-height: 1.20;
  --chirp-typography-price-medium-text-case: none;
  --chirp-typography-price-medium-text-decoration: none;
  --chirp-typography-price-medium-font-size: 1.8rem;
  --chirp-typography-price-medium-line-height: 1.22;
  --chirp-typography-price-small-text-case: none;
  --chirp-typography-price-small-text-decoration: none;
  --chirp-typography-price-small-font-size: 1.6rem;
  --chirp-typography-price-small-line-height: 1.25;
  --chirp-typography-display-typeface-small: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-weight: 400;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-weight: 400;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-weight: 400;
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-weight: 400;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-weight: 400;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-small-letter-spacing: 0;
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-form-error-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-medium-letter-spacing: 0;
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-letter-spacing: 0;
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-button-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-caption-letter-spacing: 0;
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: 0;
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: 0;
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-2-letter-spacing: 0;
  --chirp-typography-editorial-p-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-1-letter-spacing: 0;
  --chirp-typography-editorial-p-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: 0;
  --chirp-typography-section-3-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-2-letter-spacing: 0;
  --chirp-typography-section-2-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-1-letter-spacing: 0;
  --chirp-typography-section-1-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-6-letter-spacing: 0;
  --chirp-typography-display-6-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: 0;
  --chirp-typography-display-5-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: 0;
  --chirp-typography-display-4-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: 0;
  --chirp-typography-display-3-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: 0;
  --chirp-typography-display-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: 0;
  --chirp-typography-display-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 400;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 400;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 400;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 400;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 400;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 400;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 400;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 400;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 400;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 400;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 400;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 400;
  --chirp-typography-price-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-small-strikethrough-letter-spacing: 0;
  --chirp-typography-price-x-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-x-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-large-letter-spacing: 0;
  --chirp-typography-price-x-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-x-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-large-letter-spacing: 0;
  --chirp-typography-price-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-medium-letter-spacing: 0;
  --chirp-typography-price-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-small-letter-spacing: 0;
  --chirp-typography-price-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-small-font-family: var(--chirp-typography-text-typeface);
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.4rem;
  --chirp-typography-utility-line-height: 1.43;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-font-size: 2.4rem;
  --chirp-typography-utility-7-display-line-height: 1.17;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-font-size: 2rem;
  --chirp-typography-utility-6-display-line-height: 1.20;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-font-size: 1.4rem;
  --chirp-typography-utility-3-display-line-height: 1.29;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 1rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.40;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.4rem;
  --chirp-typography-utility-7-line-height: 1.17;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 2rem;
  --chirp-typography-utility-6-line-height: 1.20;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.8rem;
  --chirp-typography-utility-5-line-height: 1.33;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.6rem;
  --chirp-typography-utility-4-line-height: 1.25;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.4rem;
  --chirp-typography-utility-3-line-height: 1.29;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.2rem;
  --chirp-typography-utility-2-line-height: 1.33;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 1rem;
  --chirp-typography-utility-1-line-height: 1.40;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-line-height: 1.33;
  --chirp-typography-utility-5-display-font-size: 1.8rem;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-line-height: 1.25;
  --chirp-typography-utility-4-display-font-size: 1.6rem;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.2rem;
  --chirp-typography-utility-small-line-height: 1.50;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.4rem;
  --chirp-typography-form-helper-line-height: 1.29;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.6rem;
  --chirp-typography-form-text-line-height: 1.25;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.2rem;
  --chirp-typography-form-dropdown-header-line-height: 1.33;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.6rem;
  --chirp-typography-form-label-line-height: 1.25;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.8rem;
  --chirp-typography-form-grouping-line-height: 1.22;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1.1rem;
  --chirp-typography-overline-line-height: 1.27;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.4rem;
  --chirp-typography-button-medium-line-height: 1.43;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.4rem;
  --chirp-typography-button-line-height: 1.43;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.2rem;
  --chirp-typography-caption-line-height: 1.25;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.4rem;
  --chirp-typography-paragraph-2-line-height: 1.29;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.6rem;
  --chirp-typography-paragraph-1-line-height: 1.25;
  --chirp-typography-editorial-p-2-text-case: none;
  --chirp-typography-editorial-p-2-text-decoration: none;
  --chirp-typography-editorial-p-2-font-size: 1.4rem;
  --chirp-typography-editorial-p-2-line-height: 1.50;
  --chirp-typography-editorial-p-1-text-case: none;
  --chirp-typography-editorial-p-1-text-decoration: none;
  --chirp-typography-editorial-p-1-font-size: 1.6rem;
  --chirp-typography-editorial-p-1-line-height: 1.50;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.4rem;
  --chirp-typography-section-3-line-height: 1.29;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.6rem;
  --chirp-typography-section-2-line-height: 1.25;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 2rem;
  --chirp-typography-section-1-line-height: 1.30;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 2rem;
  --chirp-typography-display-6-line-height: 1.30;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 2.4rem;
  --chirp-typography-display-5-line-height: 1.33;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 2.8rem;
  --chirp-typography-display-4-line-height: 1.29;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 3.2rem;
  --chirp-typography-display-3-line-height: 1.25;
  --chirp-typography-display-2-text-case: normal;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 4rem;
  --chirp-typography-display-2-line-height: 1.25;
  --chirp-typography-display-1-font-size: 5.2rem;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-line-height: 1.15;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-strong: 500;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-strong: 500;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-strong: 500;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 2rem;
  --chirp-typography-editorial-text-3-line-height: 1.50;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.6rem;
  --chirp-typography-editorial-text-2-line-height: 1.50;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.4rem;
  --chirp-typography-editorial-text-1-line-height: 1.50;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.6rem;
  --chirp-typography-editorial-heading-6-line-height: 1.25;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.8rem;
  --chirp-typography-editorial-heading-5-line-height: 1.25;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 4rem;
  --chirp-typography-editorial-heading-4-line-height: 1.25;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.2rem;
  --chirp-typography-editorial-heading-3-line-height: 1.50;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.4rem;
  --chirp-typography-editorial-heading-2-line-height: 1.50;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 2rem;
  --chirp-typography-editorial-heading-1-line-height: 1.50;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 2rem;
  --chirp-typography-product-text-3-line-height: 1.25;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.6rem;
  --chirp-typography-product-text-2-line-height: 1.25;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.4rem;
  --chirp-typography-product-text-1-line-height: 1.29;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 4rem;
  --chirp-typography-product-heading-6-line-height: 1.25;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.6rem;
  --chirp-typography-product-heading-5-line-height: 1.25;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.2rem;
  --chirp-typography-product-heading-4-line-height: 1.25;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.8rem;
  --chirp-typography-product-heading-3-line-height: 1.25;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.4rem;
  --chirp-typography-product-heading-2-line-height: 1.25;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 2rem;
  --chirp-typography-product-heading-1-line-height: 1.25;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-weight-semibold: 600;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-wide: 0.16em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-editorial-heading-weight-stronger: 500;
  --chirp-typography-editorial-heading-weight-strong: 500;
  --chirp-typography-editorial-heading-weight-light: 500;
  --chirp-typography-editorial-heading-weight-normal: 500;
  --chirp-typography-product-heading-weight-stronger: 500;
  --chirp-typography-product-heading-weight-strong: 500;
  --chirp-typography-product-heading-weight-normal: 500;
  --chirp-typography-text-typeface: Gordita, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface-small: 'Canela Text', Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: 'Canela Deck', Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-utility-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-weight: 400;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-weight: 400;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-weight: 400;
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-weight: 500;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-weight: 500;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-small-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-error-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-overline-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-button-medium-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-button-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-button-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-caption-letter-spacing: 0;
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: 0;
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: 0;
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-2-letter-spacing: 0;
  --chirp-typography-editorial-p-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-1-letter-spacing: 0;
  --chirp-typography-editorial-p-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: 0;
  --chirp-typography-section-3-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-2-letter-spacing: 0;
  --chirp-typography-section-2-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-1-letter-spacing: 0;
  --chirp-typography-section-1-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-section-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-display-6-letter-spacing: 0;
  --chirp-typography-display-6-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: 0;
  --chirp-typography-display-5-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: 0;
  --chirp-typography-display-4-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: 0;
  --chirp-typography-display-3-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: 0;
  --chirp-typography-display-2-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: 0;
  --chirp-typography-display-1-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 500;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 500;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 500;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 500;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 500;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 500;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 500;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 500;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 500;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 500;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 500;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 500;
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

custom-properties

@mixin custom-properties($deprecated) { ... }@mixin custom-properties($deprecated) { 
  --chirp-typography-utility-text-case: none;
  --chirp-typography-utility-text-decoration: none;
  --chirp-typography-utility-font-size: 1.4rem;
  --chirp-typography-utility-line-height: 1.43;
  --chirp-typography-utility-7-display-text-case: none;
  --chirp-typography-utility-7-display-text-decoration: none;
  --chirp-typography-utility-7-display-font-size: 2.4rem;
  --chirp-typography-utility-7-display-line-height: 1.17;
  --chirp-typography-utility-6-display-text-case: none;
  --chirp-typography-utility-6-display-text-decoration: none;
  --chirp-typography-utility-6-display-font-size: 2rem;
  --chirp-typography-utility-6-display-line-height: 1.20;
  --chirp-typography-utility-5-display-text-case: none;
  --chirp-typography-utility-5-display-text-decoration: none;
  --chirp-typography-utility-5-display-font-size: 1.8rem;
  --chirp-typography-utility-5-display-line-height: 1.33;
  --chirp-typography-utility-4-display-text-case: none;
  --chirp-typography-utility-4-display-text-decoration: none;
  --chirp-typography-utility-4-display-font-size: 1.6rem;
  --chirp-typography-utility-4-display-line-height: 1.25;
  --chirp-typography-utility-3-display-text-case: none;
  --chirp-typography-utility-3-display-text-decoration: none;
  --chirp-typography-utility-3-display-font-size: 1.4rem;
  --chirp-typography-utility-3-display-line-height: 1.29;
  --chirp-typography-utility-1-open-caps-text-case: uppercase;
  --chirp-typography-utility-1-open-caps-text-decoration: none;
  --chirp-typography-utility-1-open-caps-font-size: 1rem;
  --chirp-typography-utility-1-open-caps-line-height: 1.40;
  --chirp-typography-utility-7-text-case: none;
  --chirp-typography-utility-7-text-decoration: none;
  --chirp-typography-utility-7-font-size: 2.4rem;
  --chirp-typography-utility-7-line-height: 1.17;
  --chirp-typography-utility-6-text-case: none;
  --chirp-typography-utility-6-text-decoration: none;
  --chirp-typography-utility-6-font-size: 2rem;
  --chirp-typography-utility-6-line-height: 1.20;
  --chirp-typography-utility-5-text-case: none;
  --chirp-typography-utility-5-text-decoration: none;
  --chirp-typography-utility-5-font-size: 1.8rem;
  --chirp-typography-utility-5-line-height: 1.33;
  --chirp-typography-utility-4-text-case: none;
  --chirp-typography-utility-4-text-decoration: none;
  --chirp-typography-utility-4-font-size: 1.6rem;
  --chirp-typography-utility-4-line-height: 1.25;
  --chirp-typography-utility-3-text-case: none;
  --chirp-typography-utility-3-text-decoration: none;
  --chirp-typography-utility-3-font-size: 1.4rem;
  --chirp-typography-utility-3-line-height: 1.29;
  --chirp-typography-utility-2-text-case: none;
  --chirp-typography-utility-2-text-decoration: none;
  --chirp-typography-utility-2-font-size: 1.2rem;
  --chirp-typography-utility-2-line-height: 1.33;
  --chirp-typography-utility-1-text-case: none;
  --chirp-typography-utility-1-text-decoration: none;
  --chirp-typography-utility-1-font-size: 1rem;
  --chirp-typography-utility-1-line-height: 1.40;
  --chirp-typography-utility-small-text-case: none;
  --chirp-typography-utility-small-text-decoration: none;
  --chirp-typography-utility-small-font-size: 1.2rem;
  --chirp-typography-utility-small-line-height: 1.50;
  --chirp-typography-menu-text-line-height: 1.43;
  --chirp-typography-menu-text-text-case: none;
  --chirp-typography-menu-text-text-decoration: none;
  --chirp-typography-menu-text-font-size: 1.4rem;
  --chirp-typography-menu-sub-heading-line-height: 1.20;
  --chirp-typography-menu-sub-heading-text-case: none;
  --chirp-typography-menu-sub-heading-text-decoration: none;
  --chirp-typography-menu-sub-heading-font-size: 1.6rem;
  --chirp-typography-menu-heading-text-case: none;
  --chirp-typography-menu-heading-text-decoration: none;
  --chirp-typography-menu-heading-font-size: 1.8rem;
  --chirp-typography-menu-heading-line-height: 1.44;
  --chirp-typography-form-error-text-case: none;
  --chirp-typography-form-error-text-decoration: none;
  --chirp-typography-form-error-font-size: 1.2rem;
  --chirp-typography-form-error-line-height: 1.33;
  --chirp-typography-form-helper-text-case: none;
  --chirp-typography-form-helper-text-decoration: none;
  --chirp-typography-form-helper-font-size: 1.3rem;
  --chirp-typography-form-helper-line-height: 1.54;
  --chirp-typography-form-text-text-case: none;
  --chirp-typography-form-text-text-decoration: none;
  --chirp-typography-form-text-font-size: 1.6rem;
  --chirp-typography-form-text-line-height: 1.25;
  --chirp-typography-form-dropdown-header-font-style: italic;
  --chirp-typography-form-dropdown-header-text-case: none;
  --chirp-typography-form-dropdown-header-text-decoration: none;
  --chirp-typography-form-dropdown-header-font-size: 1.2rem;
  --chirp-typography-form-dropdown-header-line-height: 1.33;
  --chirp-typography-form-label-text-case: none;
  --chirp-typography-form-label-text-decoration: none;
  --chirp-typography-form-label-font-size: 1.4rem;
  --chirp-typography-form-label-line-height: 1.14;
  --chirp-typography-form-grouping-text-case: none;
  --chirp-typography-form-grouping-text-decoration: none;
  --chirp-typography-form-grouping-font-size: 1.6rem;
  --chirp-typography-form-grouping-line-height: 1.25;
  --chirp-typography-overline-text-case: uppercase;
  --chirp-typography-overline-text-decoration: none;
  --chirp-typography-overline-font-size: 1.1rem;
  --chirp-typography-overline-line-height: 1.27;
  --chirp-typography-button-medium-text-case: none;
  --chirp-typography-button-medium-text-decoration: none;
  --chirp-typography-button-medium-font-size: 1.4rem;
  --chirp-typography-button-medium-line-height: 1.43;
  --chirp-typography-button-text-case: none;
  --chirp-typography-button-text-decoration: none;
  --chirp-typography-button-font-size: 1.4rem;
  --chirp-typography-button-line-height: 1.43;
  --chirp-typography-caption-text-case: none;
  --chirp-typography-caption-text-decoration: none;
  --chirp-typography-caption-font-size: 1.2rem;
  --chirp-typography-caption-line-height: 1.25;
  --chirp-typography-paragraph-2-text-case: none;
  --chirp-typography-paragraph-2-text-decoration: none;
  --chirp-typography-paragraph-2-font-size: 1.4rem;
  --chirp-typography-paragraph-2-line-height: 1.29;
  --chirp-typography-paragraph-1-text-case: none;
  --chirp-typography-paragraph-1-text-decoration: none;
  --chirp-typography-paragraph-1-font-size: 1.6rem;
  --chirp-typography-paragraph-1-line-height: 1.25;
  --chirp-typography-editorial-p-2-text-case: none;
  --chirp-typography-editorial-p-2-text-decoration: none;
  --chirp-typography-editorial-p-2-font-size: 1.4rem;
  --chirp-typography-editorial-p-2-line-height: 1.50;
  --chirp-typography-editorial-p-1-text-case: none;
  --chirp-typography-editorial-p-1-text-decoration: none;
  --chirp-typography-editorial-p-1-font-size: 1.6rem;
  --chirp-typography-editorial-p-1-line-height: 1.50;
  --chirp-typography-section-3-text-case: none;
  --chirp-typography-section-3-text-decoration: none;
  --chirp-typography-section-3-font-size: 1.4rem;
  --chirp-typography-section-3-line-height: 1.29;
  --chirp-typography-section-2-text-case: none;
  --chirp-typography-section-2-text-decoration: none;
  --chirp-typography-section-2-font-size: 1.6rem;
  --chirp-typography-section-2-line-height: 1.25;
  --chirp-typography-section-1-text-case: none;
  --chirp-typography-section-1-text-decoration: none;
  --chirp-typography-section-1-font-size: 2rem;
  --chirp-typography-section-1-line-height: 1.25;
  --chirp-typography-display-6-text-case: none;
  --chirp-typography-display-6-text-decoration: none;
  --chirp-typography-display-6-font-size: 2rem;
  --chirp-typography-display-6-line-height: 1.25;
  --chirp-typography-display-5-text-case: none;
  --chirp-typography-display-5-text-decoration: none;
  --chirp-typography-display-5-font-size: 2.4rem;
  --chirp-typography-display-5-line-height: 1.25;
  --chirp-typography-display-4-text-case: none;
  --chirp-typography-display-4-text-decoration: none;
  --chirp-typography-display-4-font-size: 2.8rem;
  --chirp-typography-display-4-line-height: 1.25;
  --chirp-typography-display-3-text-case: none;
  --chirp-typography-display-3-text-decoration: none;
  --chirp-typography-display-3-font-size: 3.2rem;
  --chirp-typography-display-3-line-height: 1.25;
  --chirp-typography-display-2-text-case: none;
  --chirp-typography-display-2-text-decoration: none;
  --chirp-typography-display-2-font-size: 3.6rem;
  --chirp-typography-display-2-line-height: 1.25;
  --chirp-typography-display-1-text-case: none;
  --chirp-typography-display-1-text-decoration: none;
  --chirp-typography-display-1-font-size: 4rem;
  --chirp-typography-display-1-line-height: 1.25;
  --chirp-typography-utility-weight-stronger: 700;
  --chirp-typography-utility-weight-normal: 400;
  --chirp-typography-editorial-text-weight-stronger: 700;
  --chirp-typography-editorial-text-weight-normal: 400;
  --chirp-typography-product-text-weight-stronger: 700;
  --chirp-typography-product-text-weight-normal: 400;
  --chirp-typography-editorial-heading-weight-stronger: 700;
  --chirp-typography-editorial-heading-weight-light: 300;
  --chirp-typography-editorial-heading-weight-normal: 400;
  --chirp-typography-product-heading-weight-stronger: 700;
  --chirp-typography-product-heading-weight-normal: 400;
  --chirp-typography-editorial-text-3-text-case: none;
  --chirp-typography-editorial-text-3-text-decoration: none;
  --chirp-typography-editorial-text-3-font-size: 2rem;
  --chirp-typography-editorial-text-3-line-height: 1.50;
  --chirp-typography-editorial-text-2-text-case: none;
  --chirp-typography-editorial-text-2-text-decoration: none;
  --chirp-typography-editorial-text-2-font-size: 1.6rem;
  --chirp-typography-editorial-text-2-line-height: 1.50;
  --chirp-typography-editorial-text-1-text-case: none;
  --chirp-typography-editorial-text-1-text-decoration: none;
  --chirp-typography-editorial-text-1-font-size: 1.4rem;
  --chirp-typography-editorial-text-1-line-height: 1.50;
  --chirp-typography-editorial-heading-6-text-case: none;
  --chirp-typography-editorial-heading-6-text-decoration: none;
  --chirp-typography-editorial-heading-6-font-size: 5.6rem;
  --chirp-typography-editorial-heading-6-line-height: 1.25;
  --chirp-typography-editorial-heading-5-text-case: none;
  --chirp-typography-editorial-heading-5-text-decoration: none;
  --chirp-typography-editorial-heading-5-font-size: 4.8rem;
  --chirp-typography-editorial-heading-5-line-height: 1.25;
  --chirp-typography-editorial-heading-4-text-case: none;
  --chirp-typography-editorial-heading-4-text-decoration: none;
  --chirp-typography-editorial-heading-4-font-size: 4rem;
  --chirp-typography-editorial-heading-4-line-height: 1.25;
  --chirp-typography-editorial-heading-3-text-case: none;
  --chirp-typography-editorial-heading-3-text-decoration: none;
  --chirp-typography-editorial-heading-3-font-size: 3.2rem;
  --chirp-typography-editorial-heading-3-line-height: 1.50;
  --chirp-typography-editorial-heading-2-text-case: none;
  --chirp-typography-editorial-heading-2-text-decoration: none;
  --chirp-typography-editorial-heading-2-font-size: 2.4rem;
  --chirp-typography-editorial-heading-2-line-height: 1.50;
  --chirp-typography-editorial-heading-1-text-case: none;
  --chirp-typography-editorial-heading-1-text-decoration: none;
  --chirp-typography-editorial-heading-1-font-size: 2rem;
  --chirp-typography-editorial-heading-1-line-height: 1.50;
  --chirp-typography-product-text-3-text-case: none;
  --chirp-typography-product-text-3-text-decoration: none;
  --chirp-typography-product-text-3-font-size: 2rem;
  --chirp-typography-product-text-3-line-height: 1.25;
  --chirp-typography-product-text-2-text-case: none;
  --chirp-typography-product-text-2-text-decoration: none;
  --chirp-typography-product-text-2-font-size: 1.6rem;
  --chirp-typography-product-text-2-line-height: 1.25;
  --chirp-typography-product-text-1-text-case: none;
  --chirp-typography-product-text-1-text-decoration: none;
  --chirp-typography-product-text-1-font-size: 1.4rem;
  --chirp-typography-product-text-1-line-height: 1.29;
  --chirp-typography-product-heading-6-text-case: none;
  --chirp-typography-product-heading-6-text-decoration: none;
  --chirp-typography-product-heading-6-font-size: 4rem;
  --chirp-typography-product-heading-6-line-height: 1.25;
  --chirp-typography-product-heading-5-text-case: none;
  --chirp-typography-product-heading-5-text-decoration: none;
  --chirp-typography-product-heading-5-font-size: 3.6rem;
  --chirp-typography-product-heading-5-line-height: 1.25;
  --chirp-typography-product-heading-4-text-case: none;
  --chirp-typography-product-heading-4-text-decoration: none;
  --chirp-typography-product-heading-4-font-size: 3.2rem;
  --chirp-typography-product-heading-4-line-height: 1.25;
  --chirp-typography-product-heading-3-text-case: none;
  --chirp-typography-product-heading-3-text-decoration: none;
  --chirp-typography-product-heading-3-font-size: 2.8rem;
  --chirp-typography-product-heading-3-line-height: 1.25;
  --chirp-typography-product-heading-2-text-case: none;
  --chirp-typography-product-heading-2-text-decoration: none;
  --chirp-typography-product-heading-2-font-size: 2.4rem;
  --chirp-typography-product-heading-2-line-height: 1.25;
  --chirp-typography-product-heading-1-text-case: none;
  --chirp-typography-product-heading-1-text-decoration: none;
  --chirp-typography-product-heading-1-font-size: 2rem;
  --chirp-typography-product-heading-1-line-height: 1.25;
  --chirp-typography-weight-heavy: 800;
  --chirp-typography-weight-medium: 500;
  --chirp-typography-weight-semibold: 600;
  --chirp-typography-weight-bold: 700;
  --chirp-typography-weight-normal: 400;
  --chirp-typography-ls-tight: -0.03em;
  --chirp-typography-ls-wide: 0.16em;
  --chirp-typography-ls-loose: 0.01em;
  --chirp-typography-ls-standard: 0;
  --chirp-typography-text-typeface: 'Work Sans', Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface-small: Poppins, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-display-typeface: Poppins, Verdana, 'Lucida Sans', 'Helvetica Neue', Arial, Roboto, sans-serif;
  --chirp-typography-utility-weight-strong: 600;
  --chirp-typography-editorial-text-weight-strong: 600;
  --chirp-typography-product-text-weight-strong: 600;
  --chirp-typography-editorial-heading-weight-strong: 600;
  --chirp-typography-product-heading-weight-strong: 600;
  --chirp-typography-price-small-strikethrough-text-case: none;
  --chirp-typography-price-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-small-strikethrough-font-size: 1.6rem;
  --chirp-typography-price-small-strikethrough-line-height: 1.25;
  --chirp-typography-price-xx-small-strikethrough-text-case: none;
  --chirp-typography-price-xx-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-xx-small-strikethrough-font-size: 1.2rem;
  --chirp-typography-price-xx-small-strikethrough-line-height: 1.25;
  --chirp-typography-price-x-small-strikethrough-text-case: none;
  --chirp-typography-price-x-small-strikethrough-text-decoration: line-through;
  --chirp-typography-price-x-small-strikethrough-font-size: 1.4rem;
  --chirp-typography-price-x-small-strikethrough-line-height: 1.29;
  --chirp-typography-price-x-large-text-case: none;
  --chirp-typography-price-x-large-text-decoration: none;
  --chirp-typography-price-x-large-font-size: 2.4rem;
  --chirp-typography-price-x-large-line-height: 1.17;
  --chirp-typography-price-large-text-case: none;
  --chirp-typography-price-large-text-decoration: none;
  --chirp-typography-price-large-font-size: 2rem;
  --chirp-typography-price-large-line-height: 1.20;
  --chirp-typography-price-medium-text-case: none;
  --chirp-typography-price-medium-text-decoration: none;
  --chirp-typography-price-medium-font-size: 1.8rem;
  --chirp-typography-price-medium-line-height: 1.22;
  --chirp-typography-price-small-text-case: none;
  --chirp-typography-price-small-text-decoration: none;
  --chirp-typography-price-small-font-size: 1.6rem;
  --chirp-typography-price-small-line-height: 1.25;
  --chirp-typography-utility-letter-spacing: 0;
  --chirp-typography-utility-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-utility-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-utility-7-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-7-display-letter-spacing: 0;
  --chirp-typography-utility-7-display-font-weight: 400;
  --chirp-typography-utility-6-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-6-display-letter-spacing: 0;
  --chirp-typography-utility-6-display-font-weight: 400;
  --chirp-typography-utility-5-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-5-display-letter-spacing: 0;
  --chirp-typography-utility-5-display-font-weight: 400;
  --chirp-typography-utility-4-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-4-display-letter-spacing: 0;
  --chirp-typography-utility-4-display-font-weight: 400;
  --chirp-typography-utility-3-display-font-family: var(--chirp-typography-display-typeface-small);
  --chirp-typography-utility-3-display-letter-spacing: 0;
  --chirp-typography-utility-3-display-font-weight: 400;
  --chirp-typography-utility-1-open-caps-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-open-caps-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-utility-1-open-caps-font-weight: 400;
  --chirp-typography-utility-7-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-7-letter-spacing: 0;
  --chirp-typography-utility-7-font-weight: 400;
  --chirp-typography-utility-6-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-6-letter-spacing: 0;
  --chirp-typography-utility-6-font-weight: 400;
  --chirp-typography-utility-5-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-5-letter-spacing: 0;
  --chirp-typography-utility-5-font-weight: 400;
  --chirp-typography-utility-4-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-4-letter-spacing: 0;
  --chirp-typography-utility-4-font-weight: 400;
  --chirp-typography-utility-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-3-letter-spacing: 0;
  --chirp-typography-utility-3-font-weight: 400;
  --chirp-typography-utility-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-2-letter-spacing: 0;
  --chirp-typography-utility-2-font-weight: 400;
  --chirp-typography-utility-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-utility-1-letter-spacing: 0;
  --chirp-typography-utility-1-font-weight: 400;
  --chirp-typography-utility-small-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-utility-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-utility-small-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-menu-text-letter-spacing: 0;
  --chirp-typography-menu-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-menu-text-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-menu-sub-heading-letter-spacing: 0;
  --chirp-typography-menu-sub-heading-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-menu-sub-heading-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-menu-heading-letter-spacing: 0;
  --chirp-typography-menu-heading-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-menu-heading-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-error-letter-spacing: 0;
  --chirp-typography-form-error-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-error-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-helper-letter-spacing: 0;
  --chirp-typography-form-helper-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-helper-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-text-letter-spacing: 0;
  --chirp-typography-form-text-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-form-text-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-dropdown-header-letter-spacing: 0;
  --chirp-typography-form-dropdown-header-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-dropdown-header-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-label-letter-spacing: 0;
  --chirp-typography-form-label-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-form-label-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-form-grouping-letter-spacing: 0;
  --chirp-typography-form-grouping-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-form-grouping-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-overline-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-medium-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-button-medium-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-button-medium-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-button-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-button-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-button-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-caption-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-caption-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-2-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-paragraph-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-paragraph-1-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-paragraph-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-2-letter-spacing: 0;
  --chirp-typography-editorial-p-2-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-p-1-letter-spacing: 0;
  --chirp-typography-editorial-p-1-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-editorial-p-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-section-3-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-section-3-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-2-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-section-2-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-section-1-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-section-1-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-6-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-6-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-5-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-5-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-4-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-4-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-3-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-3-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-2-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-display-1-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-display-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-display-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-3-letter-spacing: 0;
  --chirp-typography-editorial-text-3-font-weight: 400;
  --chirp-typography-editorial-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-2-letter-spacing: 0;
  --chirp-typography-editorial-text-2-font-weight: 400;
  --chirp-typography-editorial-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-editorial-text-1-letter-spacing: 0;
  --chirp-typography-editorial-text-1-font-weight: 400;
  --chirp-typography-editorial-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-6-letter-spacing: 0;
  --chirp-typography-editorial-heading-6-font-weight: 400;
  --chirp-typography-editorial-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-5-letter-spacing: 0;
  --chirp-typography-editorial-heading-5-font-weight: 400;
  --chirp-typography-editorial-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-4-letter-spacing: 0;
  --chirp-typography-editorial-heading-4-font-weight: 400;
  --chirp-typography-editorial-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-3-letter-spacing: 0;
  --chirp-typography-editorial-heading-3-font-weight: 400;
  --chirp-typography-editorial-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-2-letter-spacing: 0;
  --chirp-typography-editorial-heading-2-font-weight: 400;
  --chirp-typography-editorial-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-editorial-heading-1-letter-spacing: 0;
  --chirp-typography-editorial-heading-1-font-weight: 400;
  --chirp-typography-product-text-3-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-3-letter-spacing: 0;
  --chirp-typography-product-text-3-font-weight: 400;
  --chirp-typography-product-text-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-2-letter-spacing: 0;
  --chirp-typography-product-text-2-font-weight: 400;
  --chirp-typography-product-text-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-product-text-1-letter-spacing: 0;
  --chirp-typography-product-text-1-font-weight: 400;
  --chirp-typography-product-heading-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-6-letter-spacing: 0;
  --chirp-typography-product-heading-6-font-weight: 400;
  --chirp-typography-product-heading-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-5-letter-spacing: 0;
  --chirp-typography-product-heading-5-font-weight: 400;
  --chirp-typography-product-heading-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-4-letter-spacing: 0;
  --chirp-typography-product-heading-4-font-weight: 400;
  --chirp-typography-product-heading-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-3-letter-spacing: 0;
  --chirp-typography-product-heading-3-font-weight: 400;
  --chirp-typography-product-heading-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-2-letter-spacing: 0;
  --chirp-typography-product-heading-2-font-weight: 400;
  --chirp-typography-product-heading-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-product-heading-1-letter-spacing: 0;
  --chirp-typography-product-heading-1-font-weight: 400;
  --chirp-typography-price-small-strikethrough-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-xx-small-strikethrough-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-xx-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-xx-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-small-strikethrough-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-x-small-strikethrough-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-price-x-small-strikethrough-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-x-large-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-x-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-x-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-large-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-large-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-large-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-medium-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-medium-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-medium-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-price-small-letter-spacing: var(--chirp-typography-ls-tight);
  --chirp-typography-price-small-font-weight: var(--chirp-typography-weight-semibold);
  --chirp-typography-price-small-font-family: var(--chirp-typography-text-typeface);

  @if $deprecated {
  --chirp-typography-deprecated-hero-4-alternate-text-case: none;
  --chirp-typography-deprecated-hero-4-alternate-text-decoration: none;
  --chirp-typography-deprecated-hero-4-alternate-font-size: 5rem;
  --chirp-typography-deprecated-hero-4-alternate-line-height: 1.12;
  --chirp-typography-deprecated-hero-3-alternate-text-case: none;
  --chirp-typography-deprecated-hero-3-alternate-text-decoration: none;
  --chirp-typography-deprecated-hero-3-alternate-font-size: 6rem;
  --chirp-typography-deprecated-hero-3-alternate-line-height: 1.10;
  --chirp-typography-deprecated-hero-2-alternate-text-case: none;
  --chirp-typography-deprecated-hero-2-alternate-text-decoration: none;
  --chirp-typography-deprecated-hero-2-alternate-font-size: 7.2rem;
  --chirp-typography-deprecated-hero-2-alternate-line-height: 1.08;
  --chirp-typography-deprecated-hero-1-alternate-text-case: none;
  --chirp-typography-deprecated-hero-1-alternate-text-decoration: none;
  --chirp-typography-deprecated-hero-1-alternate-font-size: 9.6rem;
  --chirp-typography-deprecated-hero-1-alternate-line-height: 1.06;
  --chirp-typography-deprecated-hero-4-text-case: none;
  --chirp-typography-deprecated-hero-4-text-decoration: none;
  --chirp-typography-deprecated-hero-4-font-size: 5rem;
  --chirp-typography-deprecated-hero-4-line-height: 1.12;
  --chirp-typography-deprecated-hero-3-text-case: none;
  --chirp-typography-deprecated-hero-3-text-decoration: none;
  --chirp-typography-deprecated-hero-3-font-size: 6rem;
  --chirp-typography-deprecated-hero-3-line-height: 1.10;
  --chirp-typography-deprecated-hero-2-text-case: none;
  --chirp-typography-deprecated-hero-2-text-decoration: none;
  --chirp-typography-deprecated-hero-2-font-size: 7.2rem;
  --chirp-typography-deprecated-hero-2-line-height: 1.08;
  --chirp-typography-deprecated-hero-1-text-case: none;
  --chirp-typography-deprecated-hero-1-text-decoration: none;
  --chirp-typography-deprecated-hero-1-font-size: 9.6rem;
  --chirp-typography-deprecated-hero-1-line-height: 1.06;
  --chirp-typography-deprecated-overline-text-case: uppercase;
  --chirp-typography-deprecated-overline-text-decoration: none;
  --chirp-typography-deprecated-overline-font-size: 1.1rem;
  --chirp-typography-deprecated-overline-line-height: 1.27;
  --chirp-typography-deprecated-button-text-case: none;
  --chirp-typography-deprecated-button-text-decoration: none;
  --chirp-typography-deprecated-button-font-size: 1.4rem;
  --chirp-typography-deprecated-button-line-height: 1.43;
  --chirp-typography-deprecated-caption-text-case: none;
  --chirp-typography-deprecated-caption-text-decoration: none;
  --chirp-typography-deprecated-caption-font-size: 1.2rem;
  --chirp-typography-deprecated-caption-line-height: 1.25;
  --chirp-typography-deprecated-paragraph-2-text-case: none;
  --chirp-typography-deprecated-paragraph-2-text-decoration: none;
  --chirp-typography-deprecated-paragraph-2-font-size: 1.4rem;
  --chirp-typography-deprecated-paragraph-2-line-height: 1.29;
  --chirp-typography-deprecated-paragraph-1-text-case: none;
  --chirp-typography-deprecated-paragraph-1-text-decoration: none;
  --chirp-typography-deprecated-paragraph-1-font-size: 1.6rem;
  --chirp-typography-deprecated-paragraph-1-line-height: 1.25;
  --chirp-typography-deprecated-section-2-text-case: none;
  --chirp-typography-deprecated-section-2-text-decoration: none;
  --chirp-typography-deprecated-section-2-font-size: 1.6rem;
  --chirp-typography-deprecated-section-2-line-height: 1.25;
  --chirp-typography-deprecated-section-1-text-case: none;
  --chirp-typography-deprecated-section-1-text-decoration: none;
  --chirp-typography-deprecated-section-1-font-size: 2rem;
  --chirp-typography-deprecated-section-1-line-height: 1.25;
  --chirp-typography-deprecated-display-6-text-case: none;
  --chirp-typography-deprecated-display-6-text-decoration: none;
  --chirp-typography-deprecated-display-6-font-size: 2rem;
  --chirp-typography-deprecated-display-6-line-height: 1.25;
  --chirp-typography-deprecated-display-5-text-case: none;
  --chirp-typography-deprecated-display-5-text-decoration: none;
  --chirp-typography-deprecated-display-5-font-size: 2.4rem;
  --chirp-typography-deprecated-display-5-line-height: 1.25;
  --chirp-typography-deprecated-display-4-text-case: none;
  --chirp-typography-deprecated-display-4-text-decoration: none;
  --chirp-typography-deprecated-display-4-font-size: 2.8rem;
  --chirp-typography-deprecated-display-4-line-height: 1.25;
  --chirp-typography-deprecated-display-3-text-case: none;
  --chirp-typography-deprecated-display-3-text-decoration: none;
  --chirp-typography-deprecated-display-3-font-size: 3.2rem;
  --chirp-typography-deprecated-display-3-line-height: 1.25;
  --chirp-typography-deprecated-display-2-text-case: none;
  --chirp-typography-deprecated-display-2-text-decoration: none;
  --chirp-typography-deprecated-display-2-font-size: 3.6rem;
  --chirp-typography-deprecated-display-2-line-height: 1.25;
  --chirp-typography-deprecated-display-1-text-case: none;
  --chirp-typography-deprecated-display-1-text-decoration: none;
  --chirp-typography-deprecated-display-1-font-size: 4rem;
  --chirp-typography-deprecated-display-1-line-height: 1.25;
  --chirp-typography-deprecated-hero-4-alternate-letter-spacing: 0;
  --chirp-typography-deprecated-hero-4-alternate-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-hero-4-alternate-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-3-alternate-letter-spacing: 0;
  --chirp-typography-deprecated-hero-3-alternate-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-hero-3-alternate-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-2-alternate-letter-spacing: 0;
  --chirp-typography-deprecated-hero-2-alternate-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-hero-2-alternate-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-1-alternate-letter-spacing: 0;
  --chirp-typography-deprecated-hero-1-alternate-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-hero-1-alternate-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-4-letter-spacing: 0;
  --chirp-typography-deprecated-hero-4-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-hero-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-3-letter-spacing: 0;
  --chirp-typography-deprecated-hero-3-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-hero-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-2-letter-spacing: 0;
  --chirp-typography-deprecated-hero-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-hero-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-hero-1-letter-spacing: 0;
  --chirp-typography-deprecated-hero-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-hero-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-overline-letter-spacing: var(--chirp-typography-ls-wide);
  --chirp-typography-deprecated-overline-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-overline-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-button-letter-spacing: var(--chirp-typography-ls-loose);
  --chirp-typography-deprecated-button-font-weight: var(--chirp-typography-weight-normal);
  --chirp-typography-deprecated-button-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-caption-letter-spacing: 0;
  --chirp-typography-deprecated-caption-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-caption-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-deprecated-paragraph-2-letter-spacing: 0;
  --chirp-typography-deprecated-paragraph-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-paragraph-2-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-deprecated-paragraph-1-letter-spacing: 0;
  --chirp-typography-deprecated-paragraph-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-paragraph-1-font-family: var(--chirp-typography-text-typeface);
  --chirp-typography-deprecated-section-2-letter-spacing: 0;
  --chirp-typography-deprecated-section-2-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-section-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-section-1-letter-spacing: 0;
  --chirp-typography-deprecated-section-1-font-weight: var(--chirp-typography-weight-bold);
  --chirp-typography-deprecated-section-1-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-6-letter-spacing: 0;
  --chirp-typography-deprecated-display-6-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-6-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-5-letter-spacing: 0;
  --chirp-typography-deprecated-display-5-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-5-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-4-letter-spacing: 0;
  --chirp-typography-deprecated-display-4-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-4-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-3-letter-spacing: 0;
  --chirp-typography-deprecated-display-3-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-3-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-2-letter-spacing: 0;
  --chirp-typography-deprecated-display-2-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-2-font-family: var(--chirp-typography-display-typeface);
  --chirp-typography-deprecated-display-1-letter-spacing: 0;
  --chirp-typography-deprecated-display-1-font-weight: var(--chirp-typography-weight-medium);
  --chirp-typography-deprecated-display-1-font-family: var(--chirp-typography-display-typeface);
  }
 }
Description

Mixin to output CSS custom properties for this token set

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$deprecated

include deprecated tokens in the output

Boolean none

base

@mixin base() { ... }@mixin base() { 
  // updated
  display: flex;

  // overflow: visible;
  overflow: hidden;
 }
Description

Workflow base styles

Parameters

None.

panel

@mixin panel() { ... }@mixin panel() { 
  @include elevation.elevation('high');
  @include typography.style-as('paragraph-1');

  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: settings.$z-index;
  width: 100%;
  max-width: settings.$max-width;
  display: flex;
  flex-direction: column;
  background-color: settings.$background-color;
  color: settings.$text-color;

  @include media.query('max-sm') {
    max-width: none;
  }

  @media (forced-colors: active) {
    outline: unit.rem(2px) solid;
  }
 }
Description

Workflow panel

Parameters

None.

Requires

header

@mixin header() { ... }@mixin header() { 
  padding: spacing.get('s3', 's4');
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: kib-divider.$divider-size-xs solid kib-divider.$divider-color-default;
 }
Description

Header wrapper

Parameters

None.

Requires

title

@mixin title() { ... }@mixin title() { 
  padding: 0;
  margin: 0;
  @include typography.style-as('section-2');

  margin-right: auto;
  transition: transform settings.$transition-duration;

  /**
   * Title will receive focus on step change.
   * It's considered acceptable to hide focus outline for this use case only.
   */
  &:focus {
    outline: 0;
  }
 }
Description

Workflow title

Parameters

None.

Requires

title-success

@mixin title-success() { ... }@mixin title-success() { 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: settings.$title-success-text-color;
 }
Description

Workflow title when in a success state

Parameters

None.

Requires

title-with-back

@mixin title-with-back() { ... }@mixin title-with-back() { 
  position: relative;
  left: (#{settings.$control-size}) + (unit.rem(8px)) * -1;
  transform: translateX(unit.rem(44px));
 }
Description

Workflow title when back button is visible

Parameters

None.

Requires

title-icon

@mixin title-icon() { ... }@mixin title-icon() { 
  margin-right: spacing.get('s2');
  width: settings.$title-success-icon-size;
  height: settings.$title-success-icon-size;
 }
Description

Workflow title icon when in success state

Parameters

None.

Requires

control-back

@mixin control-back() { ... }@mixin control-back() { 
  position: relative;
  margin-right: spacing.get('s4');
 }
Description

'Back' control

Parameters

None.

Requires

control-icon-back

@mixin control-icon-back() { ... }@mixin control-icon-back() { 
  width: settings.$control-icon-back-size;
  height: settings.$control-icon-back-size;
 }
Description

Styles for 'Back' control icon

Parameters

None.

Requires

content-shadows

@mixin content-shadows() { ... }@mixin content-shadows() { 
  &::after,
  &::before {
    content: '';
    display: block;
    position: sticky;
    height: spacing.get('s4');
    width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 200ms;
  }

  &::before {
    @if $show == true {
      top: 0;
      background: radial-gradient(
          farthest-side at 50% 0,
          #{color.get('ui-bg', 'overlay', 'primary')},
          transparent
        )
        center
        top;
    }
  }

  &::after {
    @if $show == true {
      display: none;
      bottom: 0;
      background: radial-gradient(
          farthest-side at 50% 100%,
          #{color.get('ui-bg', 'overlay', 'primary')},
          transparent
        )
        center
        bottom;
    }
  }
 }
Description

Content overflow shadows as pseudo-elements

Parameters

None.

Requires

content

@mixin content() { ... }@mixin content() { 
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden auto;
 }
Description

Workflow content container

Parameters

None.

content-with-sheet

@mixin content-with-sheet() { ... }@mixin content-with-sheet() { 
  @include content-shadows(true);
 }
Description

Workflow content container with sheet

Parameters

None.

Requires

content-at-start

@mixin content-at-start() { ... }@mixin content-at-start() { 
  &::before {
    opacity: 0;
  }
 }
Description

When content overflow scroll is at start position (top)

Parameters

None.

content-at-end

@mixin content-at-end() { ... }@mixin content-at-end() { 
  &::after {
    opacity: 0;
  }
 }
Description

When content overflow scroll is at end position (bottom)

Parameters

None.

content-has-overflow

@mixin content-has-overflow() { ... }@mixin content-has-overflow() { 
  &::after {
    display: block;
  }
 }
Description

When content overflow scroll is at start position (top)

Parameters

None.

content-stepped

@mixin content-stepped() { ... }@mixin content-stepped() { 
  flex-direction: row;
  overflow: hidden;
  padding: 0;

  &::after,
  &::before {
    display: none;
  }
 }
Description

Stepped workflow content modifier

Parameters

None.

content-single-panel-actions

@mixin content-single-panel-actions() { ... }@mixin content-single-panel-actions() { 
  flex-grow: initial;
  flex-basis: initial;
  padding: spacing.get(0, 's4');

  @include media.query('max-sm') {
    margin-bottom: auto;
  }
 }
Description

Single panel actions content modifier

Parameters

None.

Requires

steps-wrapper

@mixin steps-wrapper() { ... }@mixin steps-wrapper() { 
  display: flex;
  flex-grow: 1;
  width: 100%;
  min-height: 300px;
 }
Description

Workflow steps wrapper styles

Parameters

None.

step

@mixin step() { ... }@mixin step() { 
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: fit-content;
 }
Description

Workflow step container

Parameters

None.

step-content

@mixin step-content() { ... }@mixin step-content() { 
  @include content-shadows;

  padding: spacing.get(0, 's4');
  overflow-y: auto;

  @include media.query('max-sm') {
    margin-bottom: auto;
  }
 }
Description

Workflow step content

Parameters

None.

Requires

steps-wrapper-with-sheet

@mixin steps-wrapper-with-sheet() { ... }@mixin steps-wrapper-with-sheet() { 
  width: inherit;
  height: 100vh;
  min-height: inherit;
 }
Description

Workflow steps wrapper with sheet styles

Parameters

None.

step-with-sheet

@mixin step-with-sheet() { ... }@mixin step-with-sheet() { 
  min-height: inherit;
  height: calc(100vh - 7rem);
 }
Description

Workflow step container with sheet

Parameters

None.

step-with-popup

@mixin step-with-popup() { ... }@mixin step-with-popup() { 
  min-height: inherit;
  height: 100vh;
 }
Description

Workflow step container with sheet

Parameters

None.

step-content-with-sheet

@mixin step-content-with-sheet() { ... }@mixin step-content-with-sheet() { 
  @include content-shadows(true);

  padding: spacing.get(0, 's4');
 }
Description

Workflow step content with sheet

Parameters

None.

Requires

step-actions

@mixin step-actions() { ... }@mixin step-actions() { 
  padding: spacing.get('s3', 's4', 's4');
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;

  @include media.query('max-sm') {
    border-top: kib-divider.$divider-size-xs solid kib-divider.$divider-color-default;
  }
 }
Description

Workflow step actions

Parameters

None.

Requires

step-transition-common

@mixin step-transition-common() { ... }@mixin step-transition-common() { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: {
    duration: settings.$transition-duration;
    property: opacity, transform;
    timing-function: ease-in-out;
  }

  @media screen and (prefers-reduced-motion: reduce) {
    transition: none;
  }
 }
Description

Styles custom classes for forward/back step animation

Parameters

None.

Requires

step-transition-forward

@mixin step-transition-forward() { ... }@mixin step-transition-forward() { 
  opacity: 0;
  transform: translateX(100%);
 }
Description

Transition styles for forward step animation

Parameters

None.

step-transition-backward

@mixin step-transition-backward() { ... }@mixin step-transition-backward() { 
  opacity: 0;
  transform: translateX(-100%);
 }
Description

Transition styles for backward step animation

Parameters

None.

step-transition-react-visible

@mixin step-transition-react-visible() { ... }@mixin step-transition-react-visible() { 
  opacity: 1;
  transform: translateX(0);
 }
Description

React-specific styles for -active transition classes

Parameters

None.

backdrop

@mixin backdrop($background) { ... }@mixin backdrop($background) { 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: settings.$backdrop-z-index;
  background-color: $background;
 }
Description

Overlay backdrop

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$background

(optional) specify the desired backdrop color

Color none
Requires

control

@mixin control() { ... }@mixin control() { 
  @include kib-button-new.generate-styles('utility', 'tertiary', 'medium', true);
 }
Description

Common header control styles

Parameters

None.

Variables

card-sizes

$card-sizes: (
  'xs': 264px,
  // <=360px
  'sm': 319px,
  // 361-647px
  'md': 296px,
  // 648-1024px
  'lg': 336px // 1025+
);
Description

Card size breakpoints from design

aspect-ratio-breakpoint

$aspect-ratio-breakpoint: 1025px;
Description

Aspect ratio breakpoints

default-border-width

$default-border-width: unit.rem(1px) !default;
Description

Default border width

Type

Number

Used by

hover-border-width

$hover-border-width: unit.rem(2px) !default;
Description

Hover border width

Type

Number

default-border-color

$default-border-color: color.get('field', '07');
Description

Default border color

Type

Color

Used by

error-state-border-color

$error-state-border-color: color.get('field', '06');
Description

Error state border color

Type

Color

Used by

error-state-text-color

$error-state-text-color: color.get('text', 'error');
Description

Error state text color

Type

Color

Used by

title-color

$title-color: color.get('text', 'fields');
Description

Title color

Type

Color

Used by

read-only-background

$read-only-background: color.get('field', '02');
Description

Read Only background color

Type

Color

Used by

read-only-text

$read-only-text: color.get('text', 'secondary');
Description

Read Only text color

Type

Color

Used by

disabled-border-color

$disabled-border-color: color.get('field', '05');
Description

Disabled border color

Type

Color

Used by

input-text-color

$input-text-color: color.get('field', '05');
Description

Input default text color

Type

Color

Used by

disabled-input-text-color

$disabled-input-text-color: color.get('field', '05');
Description

Disabled input text color

Type

Color

control-border-width

$control-border-width: unit.rem(1px) !default;
Description

Control border default width

Type

Number

control-border-color

$control-border-color: color.get('field', '07') !default;
Description

Control border color

Type

Color

control-outline-color

$control-outline-color: color.get('field', '08') !default;
Description

Control outline color

Type

Color

control-background-color-autofill

$control-background-color-autofill: color.get('field', '03');
Description

Control field autofill text color

Type

Color

control-border-color-focus

$control-border-color-focus: color.get('field', '04') !default;
Description

Control border color on focus

Type

Color

control-border-width-large

$control-border-width-large: unit.rem(2px) !default;
Description

Control border large width

Type

Number

control-outline-width

$control-outline-width: unit.rem(6px) !default;
Description

Control outline width

Type

Number

preferred-theme

$preferred-theme: common.$preferred-theme !default;
Description

Name of the preferred theme to look for properties first. If not found it will fallback to common.$default-theme.

Type

String

themes

$themes: (...);$themes: (
  base: common.prepare-typography-theme-map(tokensWeb.$chirp-typography),
  petmd: common.prepare-typography-theme-map(tokensPetMD.$chirp-typography),
  gordita: common.prepare-typography-theme-map(tokensGordita.$chirp-typography),
  gordita-2025: common.prepare-typography-theme-map(tokensGordita2025.$chirp-typography),
  enterprise: common.prepare-typography-theme-map(tokensEnterprise.$chirp-typography),
  fresh: common.prepare-typography-theme-map(tokensFresh.$chirp-typography)
);
Description

Map of typography token themes with type style declarations.

Type

Map

type-style-categories

$type-style-categories: 'product-heading', 'product-text', 'editorial-heading', 'editorial-text',
  'utility';
Description

List of type style categories. There's probably a better and automated way of getting this but it will have to do for now.

Type

List

aliases

$aliases: (...);$aliases: (
  'paragraph': 'editorial-p-1'
);
Description

Map of type style aliases to facilitate deprecation and removal of type styles

Type

Map

Used by

chirp-experimental-choice-dark-ct-button-action-subtle-pressed-overlay

$chirp-experimental-choice-dark-ct-button-action-subtle-pressed-overlay: #ffffff00 !default;
Description

Sass variables

chirp-themes

$chirp-themes: (
  'base': (
    'light': (
      'ui-bg': (
        '10': $chirp-base-light-ui-bg-10,
        '11': $chirp-base-light-ui-bg-11,
        '12': $chirp-base-light-ui-bg-12,
        '13': $chirp-base-light-ui-bg-13,
        '14': $chirp-base-light-ui-bg-14,
        '15': $chirp-base-light-ui-bg-15,
        '16': $chirp-base-light-ui-bg-16,
        '17': $chirp-base-light-ui-bg-17,
        '18': $chirp-base-light-ui-bg-18,
        '19': $chirp-base-light-ui-bg-19,
        '20': $chirp-base-light-ui-bg-20,
        '21': $chirp-base-light-ui-bg-21,
        'primary': $chirp-base-light-ui-bg-primary,
        '02': $chirp-base-light-ui-bg-02,
        '03': $chirp-base-light-ui-bg-03,
        '04': $chirp-base-light-ui-bg-04,
        '05': $chirp-base-light-ui-bg-05,
        '06': $chirp-base-light-ui-bg-06,
        '07': $chirp-base-light-ui-bg-07,
        '08': $chirp-base-light-ui-bg-08,
        'primary-inverse': $chirp-base-light-ui-bg-primary-inverse,
        '09': $chirp-base-light-ui-bg-09,
        'overlay': (
          'primary': $chirp-base-light-ui-bg-overlay-primary,
          '02': $chirp-base-light-ui-bg-overlay-02
        ),
        'brand': (
          'primary': $chirp-base-light-ui-bg-brand-primary,
          'alternate': $chirp-base-light-ui-bg-brand-alternate,
          'accent': (
            '10': $chirp-base-light-ui-bg-brand-accent-10,
            '11': $chirp-base-light-ui-bg-brand-accent-11,
            '12': $chirp-base-light-ui-bg-brand-accent-12,
            '13': $chirp-base-light-ui-bg-brand-accent-13,
            '14': $chirp-base-light-ui-bg-brand-accent-14,
            '15': $chirp-base-light-ui-bg-brand-accent-15,
            '01': $chirp-base-light-ui-bg-brand-accent-01,
            '02': $chirp-base-light-ui-bg-brand-accent-02,
            '03': $chirp-base-light-ui-bg-brand-accent-03,
            '04': $chirp-base-light-ui-bg-brand-accent-04,
            '05': $chirp-base-light-ui-bg-brand-accent-05,
            '06': $chirp-base-light-ui-bg-brand-accent-06,
            '07': $chirp-base-light-ui-bg-brand-accent-07,
            '08': $chirp-base-light-ui-bg-brand-accent-08,
            '09': $chirp-base-light-ui-bg-brand-accent-09
          )
        )
      ),
      'text': (
        'primary': $chirp-base-light-text-primary,
        'secondary': $chirp-base-light-text-secondary,
        'placeholder': $chirp-base-light-text-placeholder,
        'tertiary': $chirp-base-light-text-tertiary,
        'error': $chirp-base-light-text-error,
        'inverse': $chirp-base-light-text-inverse,
        'inverseemphasis': $chirp-base-light-text-inverseemphasis,
        'display': $chirp-base-light-text-display,
        'fields': $chirp-base-light-text-fields,
        'static': (
          'light': (
            'primary': $chirp-base-light-text-static-light-primary,
            'alternate': $chirp-base-light-text-static-light-alternate
          ),
          'dark': (
            'primary': $chirp-base-light-text-static-dark-primary
          )
        )
      ),
      'action': (
        'transaction': (
          'primary': $chirp-base-light-action-transaction-primary,
          '02': $chirp-base-light-action-transaction-02,
          '03': $chirp-base-light-action-transaction-03,
          'text': $chirp-base-light-action-transaction-text,
          'secondary': (
            'primary': $chirp-base-light-action-transaction-secondary-primary,
            '02': $chirp-base-light-action-transaction-secondary-02,
            '03': $chirp-base-light-action-transaction-secondary-03,
            'text': $chirp-base-light-action-transaction-secondary-text
          )
        ),
        'cta': (
          'primary': (
            'primary': $chirp-base-light-action-cta-primary-primary,
            '02': $chirp-base-light-action-cta-primary-02,
            '03': $chirp-base-light-action-cta-primary-03,
            'text': $chirp-base-light-action-cta-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-light-action-cta-alternate-primary,
            '02': $chirp-base-light-action-cta-alternate-02,
            '03': $chirp-base-light-action-cta-alternate-03,
            'text': $chirp-base-light-action-cta-alternate-text
          ),
          'alternate-inverse': (
            'primary': $chirp-base-light-action-cta-alternate-inverse-primary,
            '02': $chirp-base-light-action-cta-alternate-inverse-02,
            '03': $chirp-base-light-action-cta-alternate-inverse-03,
            'text': $chirp-base-light-action-cta-alternate-inverse-text
          )
        ),
        'utility': (
          'primary': (
            'primary': $chirp-base-light-action-utility-primary-primary,
            '02': $chirp-base-light-action-utility-primary-02,
            '03': $chirp-base-light-action-utility-primary-03,
            'text': $chirp-base-light-action-utility-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-light-action-utility-alternate-primary,
            '02': $chirp-base-light-action-utility-alternate-02,
            '03': $chirp-base-light-action-utility-alternate-03,
            'text': $chirp-base-light-action-utility-alternate-text
          )
        ),
        'danger': (
          'primary': (
            'primary': $chirp-base-light-action-danger-primary-primary,
            '02': $chirp-base-light-action-danger-primary-02,
            '03': $chirp-base-light-action-danger-primary-03,
            'text': $chirp-base-light-action-danger-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-light-action-danger-alternate-primary,
            '02': $chirp-base-light-action-danger-alternate-02,
            '03': $chirp-base-light-action-danger-alternate-03,
            'text': $chirp-base-light-action-danger-alternate-text
          )
        ),
        'switch': (
          'foreground': $chirp-base-light-action-switch-foreground,
          '02': $chirp-base-light-action-switch-02,
          'focus': $chirp-base-light-action-switch-focus,
          'background': (
            'off': (
              'primary': $chirp-base-light-action-switch-background-off-primary,
              '02': $chirp-base-light-action-switch-background-off-02
            ),
            'on': (
              'primary': $chirp-base-light-action-switch-background-on-primary,
              '02': $chirp-base-light-action-switch-background-on-02,
              '03': $chirp-base-light-action-switch-background-on-03
            )
          )
        ),
        'selection-control': (
          'off': (
            'primary': $chirp-base-light-action-selection-control-off-primary,
            '02': $chirp-base-light-action-selection-control-off-02
          ),
          'on': (
            'primary': $chirp-base-light-action-selection-control-on-primary,
            '02': $chirp-base-light-action-selection-control-on-02,
            '03': $chirp-base-light-action-selection-control-on-03
          )
        ),
        'nudge': (
          'primary': (
            'primary': $chirp-base-light-action-nudge-primary-primary,
            '02': $chirp-base-light-action-nudge-primary-02,
            '03': $chirp-base-light-action-nudge-primary-03,
            'text': $chirp-base-light-action-nudge-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-light-action-nudge-alternate-primary,
            '02': $chirp-base-light-action-nudge-alternate-02,
            '03': $chirp-base-light-action-nudge-alternate-03,
            'text': $chirp-base-light-action-nudge-alternate-text
          )
        ),
        'inverse': (
          'primary': (
            'primary': $chirp-base-light-action-inverse-primary-primary,
            '02': $chirp-base-light-action-inverse-primary-02,
            '03': $chirp-base-light-action-inverse-primary-03,
            'text': $chirp-base-light-action-inverse-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-light-action-inverse-alternate-primary,
            '02': $chirp-base-light-action-inverse-alternate-02,
            '03': $chirp-base-light-action-inverse-alternate-03,
            'text': $chirp-base-light-action-inverse-alternate-text
          )
        ),
        'view-toggle': (
          'container': (
            'default-bg': $chirp-base-light-action-view-toggle-container-default-bg,
            'border': $chirp-base-light-action-view-toggle-container-border
          ),
          'off': (
            'default-bg': $chirp-base-light-action-view-toggle-off-default-bg,
            'hover-bg': $chirp-base-light-action-view-toggle-off-hover-bg,
            'pressed-bg': $chirp-base-light-action-view-toggle-off-pressed-bg
          ),
          'on': (
            'default-bg': $chirp-base-light-action-view-toggle-on-default-bg,
            'border': $chirp-base-light-action-view-toggle-on-border
          )
        )
      ),
      'message': (
        'success': (
          'primary': $chirp-base-light-message-success-primary,
          '02': $chirp-base-light-message-success-02,
          '03': $chirp-base-light-message-success-03,
          '04': $chirp-base-light-message-success-04,
          '05': $chirp-base-light-message-success-05,
          '06': $chirp-base-light-message-success-06
        ),
        'warning': (
          'primary': $chirp-base-light-message-warning-primary,
          '02': $chirp-base-light-message-warning-02,
          '03': $chirp-base-light-message-warning-03,
          '04': $chirp-base-light-message-warning-04,
          '05': $chirp-base-light-message-warning-05,
          '06': $chirp-base-light-message-warning-06
        ),
        'error': (
          'primary': $chirp-base-light-message-error-primary,
          '02': $chirp-base-light-message-error-02,
          '03': $chirp-base-light-message-error-03,
          '04': $chirp-base-light-message-error-04,
          '05': $chirp-base-light-message-error-05,
          '06': $chirp-base-light-message-error-06
        ),
        'info': (
          'primary': $chirp-base-light-message-info-primary,
          '02': $chirp-base-light-message-info-02,
          '03': $chirp-base-light-message-info-03,
          '04': $chirp-base-light-message-info-04,
          '05': $chirp-base-light-message-info-05,
          '06': $chirp-base-light-message-info-06
        ),
        'neutral': (
          'primary': $chirp-base-light-message-neutral-primary,
          '02': $chirp-base-light-message-neutral-02,
          '03': $chirp-base-light-message-neutral-03,
          '04': $chirp-base-light-message-neutral-04,
          '05': $chirp-base-light-message-neutral-05,
          '06': $chirp-base-light-message-neutral-06
        ),
        'info-subtle': (
          'primary': $chirp-base-light-message-info-subtle-primary,
          '02': $chirp-base-light-message-info-subtle-02,
          '03': $chirp-base-light-message-info-subtle-03,
          '04': $chirp-base-light-message-info-subtle-04,
          '05': $chirp-base-light-message-info-subtle-05,
          '06': $chirp-base-light-message-info-subtle-06
        ),
        'caution': (
          'primary': $chirp-base-light-message-caution-primary,
          '02': $chirp-base-light-message-caution-02,
          '03': $chirp-base-light-message-caution-03,
          '04': $chirp-base-light-message-caution-04,
          '05': $chirp-base-light-message-caution-05,
          '06': $chirp-base-light-message-caution-06
        )
      ),
      'link': (
        'active': (
          'primary': $chirp-base-light-link-active-primary,
          'secondary': $chirp-base-light-link-active-secondary,
          'inverse': $chirp-base-light-link-active-inverse
        ),
        'visited': (
          'primary': $chirp-base-light-link-visited-primary,
          'secondary': $chirp-base-light-link-visited-secondary,
          'inverse': $chirp-base-light-link-visited-inverse
        ),
        'hover': (
          'primary': $chirp-base-light-link-hover-primary,
          'secondary': $chirp-base-light-link-hover-secondary,
          'inverse': $chirp-base-light-link-hover-inverse
        ),
        'pressed': (
          'primary': $chirp-base-light-link-pressed-primary,
          'secondary': $chirp-base-light-link-pressed-secondary,
          'inverse': $chirp-base-light-link-pressed-inverse
        ),
        'focus': (
          'primary': $chirp-base-light-link-focus-primary,
          'secondary': $chirp-base-light-link-focus-secondary,
          'inverse': $chirp-base-light-link-focus-inverse,
          'tertiary': $chirp-base-light-link-focus-tertiary
        )
      ),
      'ui-elements': (
        'price': (
          'primary': $chirp-base-light-ui-elements-price-primary,
          '02': $chirp-base-light-ui-elements-price-02,
          '03': $chirp-base-light-ui-elements-price-03
        ),
        'rating': (
          'primary': $chirp-base-light-ui-elements-rating-primary,
          '02': $chirp-base-light-ui-elements-rating-02,
          'overlay': $chirp-base-light-ui-elements-rating-overlay
        ),
        'flag': (
          'new': (
            'primary': $chirp-base-light-ui-elements-flag-new-primary,
            'text': $chirp-base-light-ui-elements-flag-new-text
          ),
          'deal': (
            'primary': $chirp-base-light-ui-elements-flag-deal-primary,
            'text': $chirp-base-light-ui-elements-flag-deal-text
          ),
          'out-of-stock': (
            'primary': $chirp-base-light-ui-elements-flag-out-of-stock-primary,
            'text': $chirp-base-light-ui-elements-flag-out-of-stock-text
          )
        ),
        'promotion': (
          'primary': $chirp-base-light-ui-elements-promotion-primary,
          'alternate': $chirp-base-light-ui-elements-promotion-alternate,
          'text': $chirp-base-light-ui-elements-promotion-text
        ),
        'skeleton': (
          'primary': $chirp-base-light-ui-elements-skeleton-primary,
          '02': $chirp-base-light-ui-elements-skeleton-02,
          '03': $chirp-base-light-ui-elements-skeleton-03
        ),
        'privacy': (
          'primary': $chirp-base-light-ui-elements-privacy-primary,
          '02': $chirp-base-light-ui-elements-privacy-02
        ),
        'controls': (
          'default': (
            'active': $chirp-base-light-ui-elements-controls-default-active,
            'hover': $chirp-base-light-ui-elements-controls-default-hover,
            'selected': $chirp-base-light-ui-elements-controls-default-selected
          ),
          'inverse': (
            'active': $chirp-base-light-ui-elements-controls-inverse-active,
            'hover': $chirp-base-light-ui-elements-controls-inverse-hover,
            'selected': $chirp-base-light-ui-elements-controls-inverse-selected
          ),
          'always-light': (
            'active': $chirp-base-light-ui-elements-controls-always-light-active,
            'hover': $chirp-base-light-ui-elements-controls-always-light-hover,
            'selected': $chirp-base-light-ui-elements-controls-always-light-selected
          ),
          'always-dark': (
            'active': $chirp-base-light-ui-elements-controls-always-dark-active,
            'hover': $chirp-base-light-ui-elements-controls-always-dark-hover,
            'selected': $chirp-base-light-ui-elements-controls-always-dark-selected
          )
        )
      ),
      'logos': (
        'as': (
          'primary': $chirp-base-light-logos-as-primary,
          'secondary': $chirp-base-light-logos-as-secondary,
          'inverse': $chirp-base-light-logos-as-inverse
        ),
        'petmd': (
          'vetverified': (
            'inverse': $chirp-base-light-logos-petmd-vetverified-inverse,
            'primary': $chirp-base-light-logos-petmd-vetverified-primary,
            '02': $chirp-base-light-logos-petmd-vetverified-02,
            '04': $chirp-base-light-logos-petmd-vetverified-04,
            '03': $chirp-base-light-logos-petmd-vetverified-03
          ),
          'primary': $chirp-base-light-logos-petmd-primary,
          'secondary': $chirp-base-light-logos-petmd-secondary
        ),
        'chewy': (
          'primary': $chirp-base-light-logos-chewy-primary
        ),
        'health': (
          'primary': $chirp-base-light-logos-health-primary
        ),
        'ext': (
          'google': (
            'primary': $chirp-base-light-logos-ext-google-primary,
            '02': $chirp-base-light-logos-ext-google-02,
            '03': $chirp-base-light-logos-ext-google-03,
            '04': $chirp-base-light-logos-ext-google-04,
            '05': $chirp-base-light-logos-ext-google-05
          ),
          'pinterest': (
            'primary': $chirp-base-light-logos-ext-pinterest-primary
          ),
          'tiktok': (
            'primary': $chirp-base-light-logos-ext-tiktok-primary,
            '02': $chirp-base-light-logos-ext-tiktok-02
          ),
          'lemonade': (
            'primary': $chirp-base-light-logos-ext-lemonade-primary,
            '02': $chirp-base-light-logos-ext-lemonade-02,
            '03': $chirp-base-light-logos-ext-lemonade-03
          ),
          'trupanion': (
            'primary': $chirp-base-light-logos-ext-trupanion-primary,
            '02': $chirp-base-light-logos-ext-trupanion-02,
            '03': $chirp-base-light-logos-ext-trupanion-03
          )
        ),
        'loyalty': (
          'primary': $chirp-base-light-logos-loyalty-primary,
          'inverse': $chirp-base-light-logos-loyalty-inverse
        ),
        'getreal': (
          'primary': $chirp-base-light-logos-getreal-primary
        )
      ),
      'icon': (
        'frozen': $chirp-base-light-icon-frozen,
        'rx': $chirp-base-light-icon-rx,
        'fresh': $chirp-base-light-icon-fresh,
        'exclusive': $chirp-base-light-icon-exclusive,
        'personalized': $chirp-base-light-icon-personalized,
        'vetdiet': $chirp-base-light-icon-vetdiet,
        'androidmodal': $chirp-base-light-icon-androidmodal,
        'chewy-blue': $chirp-base-light-icon-chewy-blue,
        'chewy-navy': $chirp-base-light-icon-chewy-navy,
        'green1': $chirp-base-light-icon-green1,
        'green2': $chirp-base-light-icon-green2,
        'red': $chirp-base-light-icon-red,
        'emerald': $chirp-base-light-icon-emerald,
        'magenta': $chirp-base-light-icon-magenta
      ),
      'field': (
        '10': $chirp-base-light-field-10,
        'primary': $chirp-base-light-field-primary,
        '02': $chirp-base-light-field-02,
        '03': $chirp-base-light-field-03,
        '04': $chirp-base-light-field-04,
        '05': $chirp-base-light-field-05,
        '06': $chirp-base-light-field-06,
        '07': $chirp-base-light-field-07,
        '08': $chirp-base-light-field-08,
        '09': $chirp-base-light-field-09,
        'filter': (
          'bg': $chirp-base-light-field-filter-bg,
          'bg-hover': $chirp-base-light-field-filter-bg-hover,
          'bg-pressed': $chirp-base-light-field-filter-bg-pressed,
          'text': $chirp-base-light-field-filter-text
        )
      ),
      'menu': (
        'primary': (
          'active': (
            'primary': $chirp-base-light-menu-primary-active-primary,
            'text': $chirp-base-light-menu-primary-active-text
          ),
          'selected': (
            'primary': $chirp-base-light-menu-primary-selected-primary,
            'text': $chirp-base-light-menu-primary-selected-text
          ),
          'hover': (
            'primary': $chirp-base-light-menu-primary-hover-primary,
            'text': $chirp-base-light-menu-primary-hover-text
          ),
          'pressed': (
            'primary': $chirp-base-light-menu-primary-pressed-primary,
            'text': $chirp-base-light-menu-primary-pressed-text
          ),
          'focused': (
            'primary': $chirp-base-light-menu-primary-focused-primary,
            'text': $chirp-base-light-menu-primary-focused-text,
            'border': $chirp-base-light-menu-primary-focused-border
          )
        ),
        'alternate': (
          'active': (
            'primary': $chirp-base-light-menu-alternate-active-primary,
            'text': $chirp-base-light-menu-alternate-active-text
          ),
          'selected': (
            'primary': $chirp-base-light-menu-alternate-selected-primary,
            'text': $chirp-base-light-menu-alternate-selected-text
          ),
          'hover': (
            'primary': $chirp-base-light-menu-alternate-hover-primary,
            'text': $chirp-base-light-menu-alternate-hover-text
          ),
          'pressed': (
            'primary': $chirp-base-light-menu-alternate-pressed-primary,
            'text': $chirp-base-light-menu-alternate-pressed-text
          ),
          'focused': (
            'primary': $chirp-base-light-menu-alternate-focused-primary,
            'text': $chirp-base-light-menu-alternate-focused-text,
            'border': $chirp-base-light-menu-alternate-focused-border
          )
        ),
        'quick': (
          'active': (
            'primary': $chirp-base-light-menu-quick-active-primary,
            'text': $chirp-base-light-menu-quick-active-text
          ),
          'pressed': (
            'primary': $chirp-base-light-menu-quick-pressed-primary,
            'text': $chirp-base-light-menu-quick-pressed-text
          ),
          'disabled': (
            'primary': $chirp-base-light-menu-quick-disabled-primary,
            'text': $chirp-base-light-menu-quick-disabled-text
          )
        )
      ),
      'chip': (
        '01': (
          'bg-primary': $chirp-base-light-chip-01-bg-primary,
          'bg-low': $chirp-base-light-chip-01-bg-low,
          'bg-high': $chirp-base-light-chip-01-bg-high,
          'text': $chirp-base-light-chip-01-text,
          'text-02': $chirp-base-light-chip-01-text-02
        ),
        '02': (
          'bg-primary': $chirp-base-light-chip-02-bg-primary,
          'bg-low': $chirp-base-light-chip-02-bg-low,
          'bg-high': $chirp-base-light-chip-02-bg-high,
          'text': $chirp-base-light-chip-02-text,
          'text-02': $chirp-base-light-chip-02-text-02
        ),
        '03': (
          'bg-primary': $chirp-base-light-chip-03-bg-primary,
          'bg-low': $chirp-base-light-chip-03-bg-low,
          'bg-high': $chirp-base-light-chip-03-bg-high,
          'text': $chirp-base-light-chip-03-text,
          'text-02': $chirp-base-light-chip-03-text-02
        ),
        '04': (
          'bg-primary': $chirp-base-light-chip-04-bg-primary,
          'bg-low': $chirp-base-light-chip-04-bg-low,
          'bg-high': $chirp-base-light-chip-04-bg-high,
          'text': $chirp-base-light-chip-04-text,
          'text-02': $chirp-base-light-chip-04-text-02
        ),
        '05': (
          'bg-primary': $chirp-base-light-chip-05-bg-primary,
          'bg-low': $chirp-base-light-chip-05-bg-low,
          'bg-high': $chirp-base-light-chip-05-bg-high,
          'text': $chirp-base-light-chip-05-text,
          'text-02': $chirp-base-light-chip-05-text-02
        ),
        '06': (
          'bg-primary': $chirp-base-light-chip-06-bg-primary,
          'bg-low': $chirp-base-light-chip-06-bg-low,
          'bg-high': $chirp-base-light-chip-06-bg-high,
          'text': $chirp-base-light-chip-06-text,
          'text-02': $chirp-base-light-chip-06-text-02
        ),
        '07': (
          'bg-primary': $chirp-base-light-chip-07-bg-primary,
          'bg-low': $chirp-base-light-chip-07-bg-low,
          'bg-high': $chirp-base-light-chip-07-bg-high,
          'text': $chirp-base-light-chip-07-text,
          'text-02': $chirp-base-light-chip-07-text-02
        )
      ),
      'static': (
        'gray1': (
          '50': $chirp-base-light-static-gray1-50,
          '900': $chirp-base-light-static-gray1-900,
          '900a50': $chirp-base-light-static-gray1-900a50,
          '900a03': $chirp-base-light-static-gray1-900a03
        ),
        'mint3': (
          '50': $chirp-base-light-static-mint3-50,
          '100': $chirp-base-light-static-mint3-100,
          '200': $chirp-base-light-static-mint3-200
        ),
        'blue1': (
          '600': $chirp-base-light-static-blue1-600,
          '700': $chirp-base-light-static-blue1-700,
          '800': $chirp-base-light-static-blue1-800,
          '900': $chirp-base-light-static-blue1-900
        )
      ),
      'progress': (
        '01': (
          'primary': $chirp-base-light-progress-01-primary,
          'secondary': $chirp-base-light-progress-01-secondary,
          'inverse': $chirp-base-light-progress-01-inverse
        ),
        '02': (
          'primary': $chirp-base-light-progress-02-primary,
          'secondary': $chirp-base-light-progress-02-secondary,
          'inverse': $chirp-base-light-progress-02-inverse
        ),
        '03': (
          'primary': $chirp-base-light-progress-03-primary,
          'secondary': $chirp-base-light-progress-03-secondary,
          'inverse': $chirp-base-light-progress-03-inverse
        )
      ),
      'choice': (
        'available-yes': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-yes-selected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-selected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-selected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-selected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-selected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-yes-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-yes-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-yes-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-yes-unselected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-yes-unselected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-yes-unselected-disabled-halo-color
            )
          )
        ),
        'available-no': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-selected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-selected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-selected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-selected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-selected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-no-selected-disabled-text-color-primary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-selected-disabled-text-color-tertiary,
              'text-color-secondary': $chirp-base-light-choice-available-no-selected-disabled-text-color-secondary,
              'bg-color': $chirp-base-light-choice-available-no-selected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-no-selected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-no-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-no-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-no-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-no-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-no-unselected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-no-unselected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-no-unselected-disabled-halo-color
            )
          )
        ),
        'available-other': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-other-selected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-selected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-selected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-selected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-other-selected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-other-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-active-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-active-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-hover-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-hover-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-focus-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-focus-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-pressed-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-pressed-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-error-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-error-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-light-choice-available-other-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-light-choice-available-other-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-light-choice-available-other-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-light-choice-available-other-unselected-disabled-bg-color,
              'border-color': $chirp-base-light-choice-available-other-unselected-disabled-border-color,
              'halo-color': $chirp-base-light-choice-available-other-unselected-disabled-halo-color
            )
          )
        )
      ),
      'button': (
        'action': (
          'text': $chirp-base-light-button-action-text,
          'icon': $chirp-base-light-button-action-icon,
          'border': $chirp-base-light-button-action-border,
          'bg-color-1': $chirp-base-light-button-action-bg-color-1,
          'bg-color-2': $chirp-base-light-button-action-bg-color-2,
          'bg-color-3': $chirp-base-light-button-action-bg-color-3,
          'focus-halo': $chirp-base-light-button-action-focus-halo,
          'focus-border': $chirp-base-light-button-action-focus-border,
          'bg-active-alt': $chirp-base-light-button-action-bg-active-alt,
          'bg-focus-alt': $chirp-base-light-button-action-bg-focus-alt,
          'bg-pressed-alt': $chirp-base-light-button-action-bg-pressed-alt,
          'focus-halo-alt': $chirp-base-light-button-action-focus-halo-alt,
          'focus-border-alt': $chirp-base-light-button-action-focus-border-alt,
          'text-alt': $chirp-base-light-button-action-text-alt,
          'icon-alt': $chirp-base-light-button-action-icon-alt,
          'border-secondary': $chirp-base-light-button-action-border-secondary,
          'border-tertiary': $chirp-base-light-button-action-border-tertiary
        ),
        'common': (
          'overlay-highlight': $chirp-base-light-button-common-overlay-highlight,
          'overlay-lowlight': $chirp-base-light-button-common-overlay-lowlight,
          'transparent': $chirp-base-light-button-common-transparent
        ),
        'utility': (
          'text': $chirp-base-light-button-utility-text,
          'icon': $chirp-base-light-button-utility-icon,
          'border': $chirp-base-light-button-utility-border,
          'bg-color-1': $chirp-base-light-button-utility-bg-color-1,
          'bg-color-2': $chirp-base-light-button-utility-bg-color-2,
          'bg-color-3': $chirp-base-light-button-utility-bg-color-3,
          'focus-halo': $chirp-base-light-button-utility-focus-halo,
          'focus-border': $chirp-base-light-button-utility-focus-border,
          'bg-active-alt': $chirp-base-light-button-utility-bg-active-alt,
          'bg-focus-alt': $chirp-base-light-button-utility-bg-focus-alt,
          'bg-pressed-alt': $chirp-base-light-button-utility-bg-pressed-alt,
          'focus-halo-alt': $chirp-base-light-button-utility-focus-halo-alt,
          'focus-border-alt': $chirp-base-light-button-utility-focus-border-alt,
          'text-alt': $chirp-base-light-button-utility-text-alt,
          'icon-alt': $chirp-base-light-button-utility-icon-alt,
          'border-secondary': $chirp-base-light-button-utility-border-secondary,
          'border-tertiary': $chirp-base-light-button-utility-border-tertiary
        ),
        'destructive': (
          'text': $chirp-base-light-button-destructive-text,
          'icon': $chirp-base-light-button-destructive-icon,
          'border': $chirp-base-light-button-destructive-border,
          'bg-color-1': $chirp-base-light-button-destructive-bg-color-1,
          'bg-color-2': $chirp-base-light-button-destructive-bg-color-2,
          'bg-color-3': $chirp-base-light-button-destructive-bg-color-3,
          'focus-halo': $chirp-base-light-button-destructive-focus-halo,
          'focus-border': $chirp-base-light-button-destructive-focus-border,
          'bg-active-alt': $chirp-base-light-button-destructive-bg-active-alt,
          'bg-focus-alt': $chirp-base-light-button-destructive-bg-focus-alt,
          'bg-pressed-alt': $chirp-base-light-button-destructive-bg-pressed-alt,
          'focus-halo-alt': $chirp-base-light-button-destructive-focus-halo-alt,
          'focus-border-alt': $chirp-base-light-button-destructive-focus-border-alt,
          'text-alt': $chirp-base-light-button-destructive-text-alt,
          'icon-alt': $chirp-base-light-button-destructive-icon-alt,
          'border-secondary': $chirp-base-light-button-destructive-border-secondary,
          'border-tertiary': $chirp-base-light-button-destructive-border-tertiary
        ),
        'transactional': (
          'text': $chirp-base-light-button-transactional-text,
          'icon': $chirp-base-light-button-transactional-icon,
          'border': $chirp-base-light-button-transactional-border,
          'bg-color-1': $chirp-base-light-button-transactional-bg-color-1,
          'bg-color-2': $chirp-base-light-button-transactional-bg-color-2,
          'bg-color-3': $chirp-base-light-button-transactional-bg-color-3,
          'focus-halo': $chirp-base-light-button-transactional-focus-halo,
          'focus-border': $chirp-base-light-button-transactional-focus-border,
          'bg-active-alt': $chirp-base-light-button-transactional-bg-active-alt,
          'bg-focus-alt': $chirp-base-light-button-transactional-bg-focus-alt,
          'bg-pressed-alt': $chirp-base-light-button-transactional-bg-pressed-alt,
          'focus-halo-alt': $chirp-base-light-button-transactional-focus-halo-alt,
          'focus-border-alt': $chirp-base-light-button-transactional-focus-border-alt,
          'text-alt': $chirp-base-light-button-transactional-text-alt,
          'icon-alt': $chirp-base-light-button-transactional-icon-alt,
          'border-secondary': $chirp-base-light-button-transactional-border-secondary,
          'border-tertiary': $chirp-base-light-button-transactional-border-tertiary
        )
      ),
      'ct': (
        'swatch': (
          'available-yes': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-selected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-selected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-selected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-selected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-selected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-selected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-selected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-selected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-selected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-selected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-selected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-selected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-selected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-selected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-unselected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-unselected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-unselected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-unselected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-unselected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-unselected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-yes-unselected-pressed-halo-color
              )
            )
          ),
          'available-no': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-selected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-selected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-selected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-selected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-selected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-selected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-selected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-selected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-selected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-selected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-selected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-selected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-selected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-selected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-selected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-selected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-unselected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-unselected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-unselected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-unselected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-unselected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-unselected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-unselected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-unselected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-unselected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-unselected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-no-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-no-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-no-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-no-unselected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-no-unselected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-no-unselected-pressed-halo-color
              )
            )
          ),
          'available-other': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-selected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-selected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-selected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-selected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-selected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-selected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-selected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-selected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-selected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-selected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-selected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-selected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-selected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-selected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-selected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-selected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-unselected-active-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-unselected-active-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-unselected-active-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-unselected-active-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-unselected-hover-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-unselected-hover-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-unselected-hover-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-unselected-focus-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-unselected-focus-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-unselected-focus-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-light-ct-swatch-available-other-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-light-ct-swatch-available-other-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-light-ct-swatch-available-other-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-light-ct-swatch-available-other-unselected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-swatch-available-other-unselected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-swatch-available-other-unselected-pressed-halo-color
              )
            )
          )
        ),
        'button': (
          'action': (
            'primary': (
              'active': (
                'text-color': $chirp-base-light-ct-button-action-primary-active-text-color,
                'icon-color': $chirp-base-light-ct-button-action-primary-active-icon-color,
                'border-color': $chirp-base-light-ct-button-action-primary-active-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-primary-active-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-primary-active-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-primary-active-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-primary-active-halo-color,
                'overlay': $chirp-base-light-ct-button-action-primary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-base-light-ct-button-action-primary-hover-text-color,
                'icon-color': $chirp-base-light-ct-button-action-primary-hover-icon-color,
                'border-color': $chirp-base-light-ct-button-action-primary-hover-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-primary-hover-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-primary-hover-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-primary-hover-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-primary-hover-halo-color,
                'overlay': $chirp-base-light-ct-button-action-primary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-base-light-ct-button-action-primary-focus-text-color,
                'icon-color': $chirp-base-light-ct-button-action-primary-focus-icon-color,
                'border-color': $chirp-base-light-ct-button-action-primary-focus-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-primary-focus-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-primary-focus-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-primary-focus-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-primary-focus-halo-color,
                'overlay': $chirp-base-light-ct-button-action-primary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-base-light-ct-button-action-primary-pressed-text-color,
                'icon-color': $chirp-base-light-ct-button-action-primary-pressed-icon-color,
                'border-color': $chirp-base-light-ct-button-action-primary-pressed-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-primary-pressed-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-primary-pressed-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-primary-pressed-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-primary-pressed-halo-color,
                'overlay': $chirp-base-light-ct-button-action-primary-pressed-overlay
              )
            ),
            'secondary': (
              'active': (
                'text-color': $chirp-base-light-ct-button-action-secondary-active-text-color,
                'icon-color': $chirp-base-light-ct-button-action-secondary-active-icon-color,
                'border-color': $chirp-base-light-ct-button-action-secondary-active-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-secondary-active-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-secondary-active-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-secondary-active-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-secondary-active-halo-color,
                'overlay': $chirp-base-light-ct-button-action-secondary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-base-light-ct-button-action-secondary-hover-text-color,
                'icon-color': $chirp-base-light-ct-button-action-secondary-hover-icon-color,
                'border-color': $chirp-base-light-ct-button-action-secondary-hover-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-secondary-hover-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-secondary-hover-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-secondary-hover-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-secondary-hover-halo-color,
                'overlay': $chirp-base-light-ct-button-action-secondary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-base-light-ct-button-action-secondary-focus-text-color,
                'icon-color': $chirp-base-light-ct-button-action-secondary-focus-icon-color,
                'border-color': $chirp-base-light-ct-button-action-secondary-focus-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-secondary-focus-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-secondary-focus-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-secondary-focus-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-secondary-focus-halo-color,
                'overlay': $chirp-base-light-ct-button-action-secondary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-base-light-ct-button-action-secondary-pressed-text-color,
                'icon-color': $chirp-base-light-ct-button-action-secondary-pressed-icon-color,
                'border-color': $chirp-base-light-ct-button-action-secondary-pressed-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-secondary-pressed-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-secondary-pressed-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-secondary-pressed-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-secondary-pressed-halo-color,
                'overlay': $chirp-base-light-ct-button-action-secondary-pressed-overlay
              )
            ),
            'tertiary': (
              'active': (
                'text-color': $chirp-base-light-ct-button-action-tertiary-active-text-color,
                'icon-color': $chirp-base-light-ct-button-action-tertiary-active-icon-color,
                'border-color': $chirp-base-light-ct-button-action-tertiary-active-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-tertiary-active-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-tertiary-active-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-tertiary-active-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-tertiary-active-halo-color,
                'overlay': $chirp-base-light-ct-button-action-tertiary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-base-light-ct-button-action-tertiary-hover-text-color,
                'icon-color': $chirp-base-light-ct-button-action-tertiary-hover-icon-color,
                'border-color': $chirp-base-light-ct-button-action-tertiary-hover-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-tertiary-hover-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-tertiary-hover-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-tertiary-hover-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-tertiary-hover-halo-color,
                'overlay': $chirp-base-light-ct-button-action-tertiary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-base-light-ct-button-action-tertiary-focus-text-color,
                'icon-color': $chirp-base-light-ct-button-action-tertiary-focus-icon-color,
                'border-color': $chirp-base-light-ct-button-action-tertiary-focus-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-tertiary-focus-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-tertiary-focus-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-tertiary-focus-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-tertiary-focus-halo-color,
                'overlay': $chirp-base-light-ct-button-action-tertiary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-base-light-ct-button-action-tertiary-pressed-text-color,
                'icon-color': $chirp-base-light-ct-button-action-tertiary-pressed-icon-color,
                'border-color': $chirp-base-light-ct-button-action-tertiary-pressed-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-tertiary-pressed-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-tertiary-pressed-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-tertiary-pressed-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-tertiary-pressed-halo-color,
                'overlay': $chirp-base-light-ct-button-action-tertiary-pressed-overlay
              )
            ),
            'subtle': (
              'active': (
                'text-color': $chirp-base-light-ct-button-action-subtle-active-text-color,
                'icon-color': $chirp-base-light-ct-button-action-subtle-active-icon-color,
                'border-color': $chirp-base-light-ct-button-action-subtle-active-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-subtle-active-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-subtle-active-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-subtle-active-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-subtle-active-halo-color,
                'overlay': $chirp-base-light-ct-button-action-subtle-active-overlay
              ),
              'hover': (
                'text-color': $chirp-base-light-ct-button-action-subtle-hover-text-color,
                'icon-color': $chirp-base-light-ct-button-action-subtle-hover-icon-color,
                'border-color': $chirp-base-light-ct-button-action-subtle-hover-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-subtle-hover-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-subtle-hover-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-subtle-hover-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-subtle-hover-halo-color,
                'overlay': $chirp-base-light-ct-button-action-subtle-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-base-light-ct-button-action-subtle-focus-text-color,
                'icon-color': $chirp-base-light-ct-button-action-subtle-focus-icon-color,
                'border-color': $chirp-base-light-ct-button-action-subtle-focus-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-subtle-focus-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-subtle-focus-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-subtle-focus-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-subtle-focus-halo-color,
                'overlay': $chirp-base-light-ct-button-action-subtle-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-base-light-ct-button-action-subtle-pressed-text-color,
                'icon-color': $chirp-base-light-ct-button-action-subtle-pressed-icon-color,
                'border-color': $chirp-base-light-ct-button-action-subtle-pressed-border-color,
                'bg-color-1': $chirp-base-light-ct-button-action-subtle-pressed-bg-color-1,
                'bg-color-2': $chirp-base-light-ct-button-action-subtle-pressed-bg-color-2,
                'bg-color-3': $chirp-base-light-ct-button-action-subtle-pressed-bg-color-3,
                'halo-color': $chirp-base-light-ct-button-action-subtle-pressed-halo-color,
                'overlay': $chirp-base-light-ct-button-action-subtle-pressed-overlay
              )
            )
          )
        ),
        'selection-card': (
          'available-yes': (
            'selected': (
              'active': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-selected-active-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-selected-active-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-selected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-selected-hover-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-selected-hover-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-selected-focus-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-selected-focus-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-selected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-selected-disabled-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-selected-disabled-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-selected-disabled-halo-color
              )
            ),
            'unselected': (
              'active': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-unselected-active-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-unselected-active-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-unselected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-base-light-ct-selection-card-available-yes-unselected-disabled-bg-color,
                'border-color': $chirp-base-light-ct-selection-card-available-yes-unselected-disabled-border-color,
                'halo-color': $chirp-base-light-ct-selection-card-available-yes-unselected-disabled-halo-color
              )
            )
          )
        )
      ),
      'shadow': (
        'low-emphasis': $chirp-base-light-shadow-low-emphasis,
        'medium-emphasis': $chirp-base-light-shadow-medium-emphasis,
        'high-emphasis': $chirp-base-light-shadow-high-emphasis
      )
    ),
    'dark': (
      'ui-bg': (
        '10': $chirp-base-dark-ui-bg-10,
        '11': $chirp-base-dark-ui-bg-11,
        '12': $chirp-base-dark-ui-bg-12,
        '15': $chirp-base-dark-ui-bg-15,
        '16': $chirp-base-dark-ui-bg-16,
        '17': $chirp-base-dark-ui-bg-17,
        '18': $chirp-base-dark-ui-bg-18,
        '19': $chirp-base-dark-ui-bg-19,
        'primary': $chirp-base-dark-ui-bg-primary,
        '02': $chirp-base-dark-ui-bg-02,
        '03': $chirp-base-dark-ui-bg-03,
        '04': $chirp-base-dark-ui-bg-04,
        '05': $chirp-base-dark-ui-bg-05,
        '06': $chirp-base-dark-ui-bg-06,
        '07': $chirp-base-dark-ui-bg-07,
        '08': $chirp-base-dark-ui-bg-08,
        'primary-inverse': $chirp-base-dark-ui-bg-primary-inverse,
        'overlay': (
          'primary': $chirp-base-dark-ui-bg-overlay-primary,
          '02': $chirp-base-dark-ui-bg-overlay-02
        ),
        'brand': (
          'primary': $chirp-base-dark-ui-bg-brand-primary,
          'alternate': $chirp-base-dark-ui-bg-brand-alternate,
          'accent': (
            '01': $chirp-base-dark-ui-bg-brand-accent-01
          )
        )
      ),
      'text': (
        'primary': $chirp-base-dark-text-primary,
        'secondary': $chirp-base-dark-text-secondary,
        'placeholder': $chirp-base-dark-text-placeholder,
        'tertiary': $chirp-base-dark-text-tertiary,
        'error': $chirp-base-dark-text-error,
        'inverse': $chirp-base-dark-text-inverse,
        'inverseemphasis': $chirp-base-dark-text-inverseemphasis,
        'display': $chirp-base-dark-text-display,
        'fields': $chirp-base-dark-text-fields
      ),
      'action': (
        'switch': (
          'foreground': $chirp-base-dark-action-switch-foreground,
          '02': $chirp-base-dark-action-switch-02,
          'focus': $chirp-base-dark-action-switch-focus,
          'background': (
            'off': (
              'primary': $chirp-base-dark-action-switch-background-off-primary,
              '02': $chirp-base-dark-action-switch-background-off-02
            ),
            'on': (
              'primary': $chirp-base-dark-action-switch-background-on-primary,
              '02': $chirp-base-dark-action-switch-background-on-02,
              '03': $chirp-base-dark-action-switch-background-on-03
            )
          )
        ),
        'selection-control': (
          'off': (
            'primary': $chirp-base-dark-action-selection-control-off-primary,
            '02': $chirp-base-dark-action-selection-control-off-02
          ),
          'on': (
            'primary': $chirp-base-dark-action-selection-control-on-primary,
            '02': $chirp-base-dark-action-selection-control-on-02,
            '03': $chirp-base-dark-action-selection-control-on-03
          )
        ),
        'cta': (
          'alternate-inverse': (
            'primary': $chirp-base-dark-action-cta-alternate-inverse-primary,
            '02': $chirp-base-dark-action-cta-alternate-inverse-02,
            '03': $chirp-base-dark-action-cta-alternate-inverse-03,
            'text': $chirp-base-dark-action-cta-alternate-inverse-text
          ),
          'alternate': (
            'primary': $chirp-base-dark-action-cta-alternate-primary,
            '02': $chirp-base-dark-action-cta-alternate-02,
            '03': $chirp-base-dark-action-cta-alternate-03,
            'text': $chirp-base-dark-action-cta-alternate-text
          ),
          'primary': (
            'primary': $chirp-base-dark-action-cta-primary-primary,
            '02': $chirp-base-dark-action-cta-primary-02,
            '03': $chirp-base-dark-action-cta-primary-03,
            'text': $chirp-base-dark-action-cta-primary-text
          )
        ),
        'utility': (
          'primary': (
            'primary': $chirp-base-dark-action-utility-primary-primary,
            '02': $chirp-base-dark-action-utility-primary-02,
            '03': $chirp-base-dark-action-utility-primary-03,
            'text': $chirp-base-dark-action-utility-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-dark-action-utility-alternate-primary,
            '02': $chirp-base-dark-action-utility-alternate-02,
            '03': $chirp-base-dark-action-utility-alternate-03,
            'text': $chirp-base-dark-action-utility-alternate-text
          )
        ),
        'danger': (
          'primary': (
            'primary': $chirp-base-dark-action-danger-primary-primary,
            '02': $chirp-base-dark-action-danger-primary-02,
            '03': $chirp-base-dark-action-danger-primary-03,
            'text': $chirp-base-dark-action-danger-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-dark-action-danger-alternate-primary,
            '02': $chirp-base-dark-action-danger-alternate-02,
            '03': $chirp-base-dark-action-danger-alternate-03,
            'text': $chirp-base-dark-action-danger-alternate-text
          )
        ),
        'nudge': (
          'primary': (
            'primary': $chirp-base-dark-action-nudge-primary-primary,
            '02': $chirp-base-dark-action-nudge-primary-02,
            '03': $chirp-base-dark-action-nudge-primary-03,
            'text': $chirp-base-dark-action-nudge-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-dark-action-nudge-alternate-primary,
            '02': $chirp-base-dark-action-nudge-alternate-02,
            '03': $chirp-base-dark-action-nudge-alternate-03,
            'text': $chirp-base-dark-action-nudge-alternate-text
          )
        ),
        'inverse': (
          'primary': (
            'primary': $chirp-base-dark-action-inverse-primary-primary,
            '02': $chirp-base-dark-action-inverse-primary-02,
            '03': $chirp-base-dark-action-inverse-primary-03,
            'text': $chirp-base-dark-action-inverse-primary-text
          ),
          'alternate': (
            'primary': $chirp-base-dark-action-inverse-alternate-primary,
            '02': $chirp-base-dark-action-inverse-alternate-02,
            '03': $chirp-base-dark-action-inverse-alternate-03,
            'text': $chirp-base-dark-action-inverse-alternate-text
          )
        ),
        'view-toggle': (
          'container': (
            'default-bg': $chirp-base-dark-action-view-toggle-container-default-bg,
            'border': $chirp-base-dark-action-view-toggle-container-border
          ),
          'off': (
            'default-bg': $chirp-base-dark-action-view-toggle-off-default-bg,
            'hover-bg': $chirp-base-dark-action-view-toggle-off-hover-bg,
            'pressed-bg': $chirp-base-dark-action-view-toggle-off-pressed-bg
          ),
          'on': (
            'default-bg': $chirp-base-dark-action-view-toggle-on-default-bg,
            'border': $chirp-base-dark-action-view-toggle-on-border
          )
        ),
        'choice': (
          'available': (
            'selected': (
              'bg': (
                'active': $chirp-base-dark-action-choice-available-selected-bg-active,
                'hover': $chirp-base-dark-action-choice-available-selected-bg-hover,
                'focus': $chirp-base-dark-action-choice-available-selected-bg-focus,
                'pressed': $chirp-base-dark-action-choice-available-selected-bg-pressed,
                'error': $chirp-base-dark-action-choice-available-selected-bg-error
              ),
              'border': (
                'active': $chirp-base-dark-action-choice-available-selected-border-active,
                'hover': $chirp-base-dark-action-choice-available-selected-border-hover,
                'focus': $chirp-base-dark-action-choice-available-selected-border-focus,
                'pressed': $chirp-base-dark-action-choice-available-selected-border-pressed,
                'error': $chirp-base-dark-action-choice-available-selected-border-error
              )
            ),
            'unselected': (
              'bg': (
                'active': $chirp-base-dark-action-choice-available-unselected-bg-active,
                'hover': $chirp-base-dark-action-choice-available-unselected-bg-hover,
                'focus': $chirp-base-dark-action-choice-available-unselected-bg-focus,
                'pressed': $chirp-base-dark-action-choice-available-unselected-bg-pressed,
                'error': $chirp-base-dark-action-choice-available-unselected-bg-error
              ),
              'border': (
                'active': $chirp-base-dark-action-choice-available-unselected-border-active,
                'hover': $chirp-base-dark-action-choice-available-unselected-border-hover,
                'focus': $chirp-base-dark-action-choice-available-unselected-border-focus,
                'pressed': $chirp-base-dark-action-choice-available-unselected-border-pressed,
                'error': $chirp-base-dark-action-choice-available-unselected-border-error
              )
            )
          ),
          'unavailable': (
            'selected': (
              'bg': (
                'active': $chirp-base-dark-action-choice-unavailable-selected-bg-active,
                'hover': $chirp-base-dark-action-choice-unavailable-selected-bg-hover,
                'focus': $chirp-base-dark-action-choice-unavailable-selected-bg-focus,
                'pressed': $chirp-base-dark-action-choice-unavailable-selected-bg-pressed
              ),
              'border': (
                'active': $chirp-base-dark-action-choice-unavailable-selected-border-active,
                'hover': $chirp-base-dark-action-choice-unavailable-selected-border-hover,
                'focus': $chirp-base-dark-action-choice-unavailable-selected-border-focus,
                'pressed': $chirp-base-dark-action-choice-unavailable-selected-border-pressed
              )
            ),
            'unselected': (
              'bg': (
                'active': $chirp-base-dark-action-choice-unavailable-unselected-bg-active,
                'hover': $chirp-base-dark-action-choice-unavailable-unselected-bg-hover,
                'focus': $chirp-base-dark-action-choice-unavailable-unselected-bg-focus,
                'pressed': $chirp-base-dark-action-choice-unavailable-unselected-bg-pressed,
                'disabled': $chirp-base-dark-action-choice-unavailable-unselected-bg-disabled
              ),
              'border': (
                'active': $chirp-base-dark-action-choice-unavailable-unselected-border-active,
                'hover': $chirp-base-dark-action-choice-unavailable-unselected-border-hover,
                'focus': $chirp-base-dark-action-choice-unavailable-unselected-border-focus,
                'pressed': $chirp-base-dark-action-choice-unavailable-unselected-border-pressed,
                'disabled': $chirp-base-dark-action-choice-unavailable-unselected-border-disabled
              )
            )
          )
        )
      ),
      'message': (
        'success': (
          'primary': $chirp-base-dark-message-success-primary,
          '02': $chirp-base-dark-message-success-02,
          '03': $chirp-base-dark-message-success-03,
          '04': $chirp-base-dark-message-success-04,
          '05': $chirp-base-dark-message-success-05,
          '06': $chirp-base-dark-message-success-06
        ),
        'warning': (
          'primary': $chirp-base-dark-message-warning-primary,
          '02': $chirp-base-dark-message-warning-02,
          '03': $chirp-base-dark-message-warning-03,
          '04': $chirp-base-dark-message-warning-04,
          '05': $chirp-base-dark-message-warning-05,
          '06': $chirp-base-dark-message-warning-06
        ),
        'error': (
          'primary': $chirp-base-dark-message-error-primary,
          '02': $chirp-base-dark-message-error-02,
          '03': $chirp-base-dark-message-error-03,
          '04': $chirp-base-dark-message-error-04,
          '05': $chirp-base-dark-message-error-05,
          '06': $chirp-base-dark-message-error-06
        ),
        'info': (
          'primary': $chirp-base-dark-message-info-primary,
          '02': $chirp-base-dark-message-info-02,
          '03': $chirp-base-dark-message-info-03,
          '04': $chirp-base-dark-message-info-04,
          '05': $chirp-base-dark-message-info-05,
          '06': $chirp-base-dark-message-info-06
        ),
        'info-subtle': (
          'primary': $chirp-base-dark-message-info-subtle-primary,
          '02': $chirp-base-dark-message-info-subtle-02,
          '03': $chirp-base-dark-message-info-subtle-03,
          '04': $chirp-base-dark-message-info-subtle-04,
          '05': $chirp-base-dark-message-info-subtle-05,
          '06': $chirp-base-dark-message-info-subtle-06
        ),
        'caution': (
          'primary': $chirp-base-dark-message-caution-primary,
          '02': $chirp-base-dark-message-caution-02,
          '03': $chirp-base-dark-message-caution-03,
          '04': $chirp-base-dark-message-caution-04,
          '05': $chirp-base-dark-message-caution-05,
          '06': $chirp-base-dark-message-caution-06
        )
      ),
      'link': (
        'active': (
          'primary': $chirp-base-dark-link-active-primary,
          'secondary': $chirp-base-dark-link-active-secondary,
          'inverse': $chirp-base-dark-link-active-inverse
        ),
        'visited': (
          'primary': $chirp-base-dark-link-visited-primary,
          'secondary': $chirp-base-dark-link-visited-secondary,
          'inverse': $chirp-base-dark-link-visited-inverse
        ),
        'hover': (
          'primary': $chirp-base-dark-link-hover-primary,
          'secondary': $chirp-base-dark-link-hover-secondary,
          'inverse': $chirp-base-dark-link-hover-inverse
        ),
        'pressed': (
          'primary': $chirp-base-dark-link-pressed-primary,
          'secondary': $chirp-base-dark-link-pressed-secondary,
          'inverse': $chirp-base-dark-link-pressed-inverse
        ),
        'focus': (
          'primary': $chirp-base-dark-link-focus-primary,
          'secondary': $chirp-base-dark-link-focus-secondary,
          'inverse': $chirp-base-dark-link-focus-inverse,
          'tertiary': $chirp-base-dark-link-focus-tertiary
        )
      ),
      'ui-elements': (
        'price': (
          'primary': $chirp-base-dark-ui-elements-price-primary,
          '02': $chirp-base-dark-ui-elements-price-02,
          '03': $chirp-base-dark-ui-elements-price-03
        ),
        'skeleton': (
          'primary': $chirp-base-dark-ui-elements-skeleton-primary,
          '02': $chirp-base-dark-ui-elements-skeleton-02,
          '03': $chirp-base-dark-ui-elements-skeleton-03
        ),
        'flag': (
          'out-of-stock': (
            'primary': $chirp-base-dark-ui-elements-flag-out-of-stock-primary,
            'text': $chirp-base-dark-ui-elements-flag-out-of-stock-text
          )
        ),
        'privacy': (
          'primary': $chirp-base-dark-ui-elements-privacy-primary,
          '02': $chirp-base-dark-ui-elements-privacy-02
        ),
        'rating': (
          'primary': $chirp-base-dark-ui-elements-rating-primary,
          '02': $chirp-base-dark-ui-elements-rating-02,
          'overlay': $chirp-base-dark-ui-elements-rating-overlay
        ),
        'controls': (
          'default': (
            'active': $chirp-base-dark-ui-elements-controls-default-active,
            'hover': $chirp-base-dark-ui-elements-controls-default-hover,
            'selected': $chirp-base-dark-ui-elements-controls-default-selected
          ),
          'inverse': (
            'active': $chirp-base-dark-ui-elements-controls-inverse-active,
            'hover': $chirp-base-dark-ui-elements-controls-inverse-hover,
            'selected': $chirp-base-dark-ui-elements-controls-inverse-selected
          ),
          'always-light': (
            'active': $chirp-base-dark-ui-elements-controls-always-light-active,
            'hover': $chirp-base-dark-ui-elements-controls-always-light-hover,
            'selected': $chirp-base-dark-ui-elements-controls-always-light-selected
          ),
          'always-dark': (
            'active': $chirp-base-dark-ui-elements-controls-always-dark-active,
            'hover': $chirp-base-dark-ui-elements-controls-always-dark-hover,
            'selected': $chirp-base-dark-ui-elements-controls-always-dark-selected
          )
        )
      ),
      'logos': (
        'as': (
          'primary': $chirp-base-dark-logos-as-primary,
          'secondary': $chirp-base-dark-logos-as-secondary
        ),
        'chewy': (
          'primary': $chirp-base-dark-logos-chewy-primary
        ),
        'health': (
          'primary': $chirp-base-dark-logos-health-primary
        ),
        'ext': (
          'google': (
            'primary': $chirp-base-dark-logos-ext-google-primary
          ),
          'pinterest': (
            'primary': $chirp-base-dark-logos-ext-pinterest-primary
          ),
          'tiktok': (
            'primary': $chirp-base-dark-logos-ext-tiktok-primary,
            '02': $chirp-base-dark-logos-ext-tiktok-02
          )
        ),
        'loyalty': (
          'primary': $chirp-base-dark-logos-loyalty-primary
        ),
        'petmd': (
          'primary': $chirp-base-dark-logos-petmd-primary,
          'secondary': $chirp-base-dark-logos-petmd-secondary
        )
      ),
      'icon': (
        'frozen': $chirp-base-dark-icon-frozen,
        'rx': $chirp-base-dark-icon-rx,
        'fresh': $chirp-base-dark-icon-fresh,
        'exclusive': $chirp-base-dark-icon-exclusive,
        'personalized': $chirp-base-dark-icon-personalized,
        'vetdiet': $chirp-base-dark-icon-vetdiet,
        'androidmodal': $chirp-base-dark-icon-androidmodal,
        'chewy-blue': $chirp-base-dark-icon-chewy-blue,
        'chewy-navy': $chirp-base-dark-icon-chewy-navy,
        'green1': $chirp-base-dark-icon-green1,
        'green2': $chirp-base-dark-icon-green2,
        'red': $chirp-base-dark-icon-red
      ),
      'field': (
        'primary': $chirp-base-dark-field-primary,
        '02': $chirp-base-dark-field-02,
        '03': $chirp-base-dark-field-03,
        '04': $chirp-base-dark-field-04,
        '05': $chirp-base-dark-field-05,
        '06': $chirp-base-dark-field-06,
        'filter': (
          'bg': $chirp-base-dark-field-filter-bg,
          'bg-hover': $chirp-base-dark-field-filter-bg-hover,
          'bg-pressed': $chirp-base-dark-field-filter-bg-pressed,
          'text': $chirp-base-dark-field-filter-text
        )
      ),
      'chip': (
        '01': (
          'bg-primary': $chirp-base-dark-chip-01-bg-primary,
          'bg-low': $chirp-base-dark-chip-01-bg-low,
          'bg-high': $chirp-base-dark-chip-01-bg-high,
          'text': $chirp-base-dark-chip-01-text,
          'text-02': $chirp-base-dark-chip-01-text-02
        ),
        '02': (
          'bg-primary': $chirp-base-dark-chip-02-bg-primary,
          'bg-low': $chirp-base-dark-chip-02-bg-low,
          'bg-high': $chirp-base-dark-chip-02-bg-high,
          'text': $chirp-base-dark-chip-02-text,
          'text-02': $chirp-base-dark-chip-02-text-02
        ),
        '03': (
          'bg-primary': $chirp-base-dark-chip-03-bg-primary,
          'bg-low': $chirp-base-dark-chip-03-bg-low,
          'bg-high': $chirp-base-dark-chip-03-bg-high,
          'text': $chirp-base-dark-chip-03-text,
          'text-02': $chirp-base-dark-chip-03-text-02
        ),
        '04': (
          'bg-primary': $chirp-base-dark-chip-04-bg-primary,
          'bg-low': $chirp-base-dark-chip-04-bg-low,
          'bg-high': $chirp-base-dark-chip-04-bg-high,
          'text': $chirp-base-dark-chip-04-text,
          'text-02': $chirp-base-dark-chip-04-text-02
        ),
        '05': (
          'bg-primary': $chirp-base-dark-chip-05-bg-primary,
          'bg-low': $chirp-base-dark-chip-05-bg-low,
          'bg-high': $chirp-base-dark-chip-05-bg-high,
          'text': $chirp-base-dark-chip-05-text,
          'text-02': $chirp-base-dark-chip-05-text-02
        ),
        '06': (
          'bg-primary': $chirp-base-dark-chip-06-bg-primary,
          'bg-low': $chirp-base-dark-chip-06-bg-low,
          'bg-high': $chirp-base-dark-chip-06-bg-high,
          'text': $chirp-base-dark-chip-06-text,
          'text-02': $chirp-base-dark-chip-06-text-02
        ),
        '07': (
          'bg-primary': $chirp-base-dark-chip-07-bg-primary,
          'bg-low': $chirp-base-dark-chip-07-bg-low,
          'bg-high': $chirp-base-dark-chip-07-bg-high,
          'text': $chirp-base-dark-chip-07-text,
          'text-02': $chirp-base-dark-chip-07-text-02
        )
      ),
      'menu': (
        'quick': (
          'active': (
            'primary': $chirp-base-dark-menu-quick-active-primary,
            'text': $chirp-base-dark-menu-quick-active-text
          ),
          'pressed': (
            'primary': $chirp-base-dark-menu-quick-pressed-primary,
            'text': $chirp-base-dark-menu-quick-pressed-text
          ),
          'disabled': (
            'primary': $chirp-base-dark-menu-quick-disabled-primary,
            'text': $chirp-base-dark-menu-quick-disabled-text
          )
        )
      ),
      'choice': (
        'available-yes': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-selected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-selected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-selected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-selected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-selected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-yes-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-yes-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-yes-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-yes-unselected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-yes-unselected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-yes-unselected-disabled-halo-color
            )
          )
        ),
        'available-no': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-no-selected-disabled-text-color-primary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-selected-disabled-text-color-tertiary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-selected-disabled-text-color-secondary,
              'bg-color': $chirp-base-dark-choice-available-no-selected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-selected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-no-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-no-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-no-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-no-unselected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-no-unselected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-no-unselected-disabled-halo-color
            )
          )
        ),
        'available-other': (
          'selected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-other-selected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-selected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-selected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-selected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-selected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-selected-disabled-halo-color
            )
          ),
          'unselected': (
            'active': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-active-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-active-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-active-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-active-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-active-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-active-halo-color
            ),
            'hover': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-hover-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-hover-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-hover-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-hover-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-hover-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-hover-halo-color
            ),
            'focus': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-focus-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-focus-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-focus-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-focus-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-focus-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-focus-halo-color
            ),
            'pressed': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-pressed-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-pressed-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-pressed-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-pressed-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-pressed-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-pressed-halo-color
            ),
            'error': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-error-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-error-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-error-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-error-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-error-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-error-halo-color
            ),
            'disabled': (
              'text-color-primary': $chirp-base-dark-choice-available-other-unselected-disabled-text-color-primary,
              'text-color-secondary': $chirp-base-dark-choice-available-other-unselected-disabled-text-color-secondary,
              'text-color-tertiary': $chirp-base-dark-choice-available-other-unselected-disabled-text-color-tertiary,
              'bg-color': $chirp-base-dark-choice-available-other-unselected-disabled-bg-color,
              'border-color': $chirp-base-dark-choice-available-other-unselected-disabled-border-color,
              'halo-color': $chirp-base-dark-choice-available-other-unselected-disabled-halo-color
            )
          )
        )
      ),
      'ct': (
        'swatch': (
          'available-yes': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-selected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-selected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-selected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-selected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-selected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-selected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-selected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-selected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-selected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-selected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-selected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-selected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-selected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-unselected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-unselected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-unselected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-unselected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-yes-unselected-pressed-halo-color
              )
            )
          ),
          'available-no': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-selected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-selected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-selected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-selected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-selected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-selected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-selected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-selected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-selected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-selected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-selected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-selected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-selected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-selected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-selected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-selected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-unselected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-unselected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-unselected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-unselected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-unselected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-unselected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-unselected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-unselected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-unselected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-unselected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-no-unselected-pressed-halo-color
              )
            )
          ),
          'available-other': (
            'selected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-selected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-selected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-selected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-selected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-selected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-selected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-selected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-selected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-selected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-selected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-selected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-selected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-selected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-selected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-selected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-selected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-selected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-selected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-selected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-selected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-unselected-active-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-unselected-active-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-unselected-active-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-unselected-active-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-unselected-active-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-unselected-hover-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-unselected-hover-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-unselected-hover-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-unselected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-unselected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-unselected-focus-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-unselected-focus-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-unselected-focus-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-unselected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-unselected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-primary,
                'text-secondary': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-text-tertiary,
                'bg-color': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-swatch-available-other-unselected-pressed-halo-color
              )
            )
          )
        ),
        'selection-card': (
          'available-yes': (
            'selected': (
              'active': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-selected-active-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-selected-active-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-selected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-selected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-selected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-selected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-selected-focus-border-color,
                'halo': $chirp-base-dark-ct-selection-card-available-yes-selected-focus-halo,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-selected-pressed-border-color,
                'halo': $chirp-base-dark-ct-selection-card-available-yes-selected-pressed-halo,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-selected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-selected-disabled-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-selected-disabled-border-color,
                'halo': $chirp-base-dark-ct-selection-card-available-yes-selected-disabled-halo,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-selected-disabled-halo-color
              )
            ),
            'unselected': (
              'active': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-active-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-active-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-bg-color,
                'border-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-border-color,
                'halo-color': $chirp-base-dark-ct-selection-card-available-yes-unselected-disabled-halo-color
              )
            )
          )
        )
      ),
      'shadow': (
        'low-emphasis': $chirp-base-dark-shadow-low-emphasis,
        'medium-emphasis': $chirp-base-dark-shadow-medium-emphasis,
        'high-emphasis': $chirp-base-dark-shadow-high-emphasis
      )
    )
  ),
  'petmd': (
    'light': (
      'ui-bg': (
        '02': $chirp-petmd-light-ui-bg-02,
        '03': $chirp-petmd-light-ui-bg-03,
        '04': $chirp-petmd-light-ui-bg-04,
        '05': $chirp-petmd-light-ui-bg-05,
        '06': $chirp-petmd-light-ui-bg-06,
        '07': $chirp-petmd-light-ui-bg-07,
        'brand': (
          'primary': $chirp-petmd-light-ui-bg-brand-primary,
          'alternate': $chirp-petmd-light-ui-bg-brand-alternate,
          'accent': (
            '10': $chirp-petmd-light-ui-bg-brand-accent-10,
            '11': $chirp-petmd-light-ui-bg-brand-accent-11,
            '12': $chirp-petmd-light-ui-bg-brand-accent-12,
            '13': $chirp-petmd-light-ui-bg-brand-accent-13,
            '01': $chirp-petmd-light-ui-bg-brand-accent-01,
            '02': $chirp-petmd-light-ui-bg-brand-accent-02,
            '03': $chirp-petmd-light-ui-bg-brand-accent-03,
            '04': $chirp-petmd-light-ui-bg-brand-accent-04,
            '05': $chirp-petmd-light-ui-bg-brand-accent-05,
            '06': $chirp-petmd-light-ui-bg-brand-accent-06,
            '07': $chirp-petmd-light-ui-bg-brand-accent-07,
            '08': $chirp-petmd-light-ui-bg-brand-accent-08,
            '09': $chirp-petmd-light-ui-bg-brand-accent-09
          )
        ),
        'overlay': (
          '02': $chirp-petmd-light-ui-bg-overlay-02
        )
      ),
      'text': (
        'display': $chirp-petmd-light-text-display
      ),
      'link': (
        'active': (
          'primary': $chirp-petmd-light-link-active-primary,
          'secondary': $chirp-petmd-light-link-active-secondary
        ),
        'visited': (
          'primary': $chirp-petmd-light-link-visited-primary,
          'secondary': $chirp-petmd-light-link-visited-secondary
        ),
        'hover': (
          'primary': $chirp-petmd-light-link-hover-primary,
          'secondary': $chirp-petmd-light-link-hover-secondary
        ),
        'pressed': (
          'primary': $chirp-petmd-light-link-pressed-primary,
          'secondary': $chirp-petmd-light-link-pressed-secondary
        ),
        'focus': (
          'primary': $chirp-petmd-light-link-focus-primary,
          'secondary': $chirp-petmd-light-link-focus-secondary
        )
      ),
      'action': (
        'cta': (
          'primary': (
            'primary': $chirp-petmd-light-action-cta-primary-primary,
            '03': $chirp-petmd-light-action-cta-primary-03,
            '02': $chirp-petmd-light-action-cta-primary-02,
            'text': $chirp-petmd-light-action-cta-primary-text
          ),
          'alternate': (
            '02': $chirp-petmd-light-action-cta-alternate-02,
            'primary': $chirp-petmd-light-action-cta-alternate-primary,
            '03': $chirp-petmd-light-action-cta-alternate-03,
            'text': $chirp-petmd-light-action-cta-alternate-text
          )
        ),
        'switch': (
          'background': (
            'on': (
              'primary': $chirp-petmd-light-action-switch-background-on-primary,
              '02': $chirp-petmd-light-action-switch-background-on-02,
              '03': $chirp-petmd-light-action-switch-background-on-03
            )
          )
        ),
        'selection-control': (
          'on': (
            'primary': $chirp-petmd-light-action-selection-control-on-primary,
            '02': $chirp-petmd-light-action-selection-control-on-02
          )
        )
      ),
      'field': (
        '10': $chirp-petmd-light-field-10,
        'primary': $chirp-petmd-light-field-primary,
        '02': $chirp-petmd-light-field-02,
        '03': $chirp-petmd-light-field-03,
        '04': $chirp-petmd-light-field-04,
        '05': $chirp-petmd-light-field-05,
        '06': $chirp-petmd-light-field-06,
        '07': $chirp-petmd-light-field-07,
        '08': $chirp-petmd-light-field-08,
        '09': $chirp-petmd-light-field-09,
        'filter': (
          'text': $chirp-petmd-light-field-filter-text
        )
      ),
      'message': (
        'info': (
          'primary': $chirp-petmd-light-message-info-primary,
          '02': $chirp-petmd-light-message-info-02,
          '03': $chirp-petmd-light-message-info-03
        )
      ),
      'chip': (
        '01': (
          'bg-primary': $chirp-petmd-light-chip-01-bg-primary,
          'bg-low': $chirp-petmd-light-chip-01-bg-low,
          'text-02': $chirp-petmd-light-chip-01-text-02
        ),
        '02': (
          'bg-primary': $chirp-petmd-light-chip-02-bg-primary,
          'bg-low': $chirp-petmd-light-chip-02-bg-low,
          'bg-high': $chirp-petmd-light-chip-02-bg-high
        )
      ),
      'static': (
        'teal1': (
          '500': $chirp-petmd-light-static-teal1-500
        )
      ),
      'logos': (
        'petmd': (
          'primary': $chirp-petmd-light-logos-petmd-primary,
          'inverse': $chirp-petmd-light-logos-petmd-inverse
        )
      )
    )
  ),
  'enterprise': (
    'light': (
      'ui-bg': (
        'brand': (
          'primary': $chirp-enterprise-light-ui-bg-brand-primary,
          'alternate': $chirp-enterprise-light-ui-bg-brand-alternate,
          'accent': (
            '01': $chirp-enterprise-light-ui-bg-brand-accent-01,
            '02': $chirp-enterprise-light-ui-bg-brand-accent-02,
            '03': $chirp-enterprise-light-ui-bg-brand-accent-03,
            '04': $chirp-enterprise-light-ui-bg-brand-accent-04,
            '05': $chirp-enterprise-light-ui-bg-brand-accent-05,
            '06': $chirp-enterprise-light-ui-bg-brand-accent-06
          )
        )
      ),
      'menu': (
        'primary': (
          'active': (
            'primary': $chirp-enterprise-light-menu-primary-active-primary,
            'text': $chirp-enterprise-light-menu-primary-active-text
          ),
          'selected': (
            'primary': $chirp-enterprise-light-menu-primary-selected-primary,
            'text': $chirp-enterprise-light-menu-primary-selected-text
          ),
          'hover': (
            'primary': $chirp-enterprise-light-menu-primary-hover-primary,
            'text': $chirp-enterprise-light-menu-primary-hover-text
          ),
          'pressed': (
            'primary': $chirp-enterprise-light-menu-primary-pressed-primary,
            'text': $chirp-enterprise-light-menu-primary-pressed-text
          ),
          'focused': (
            'primary': $chirp-enterprise-light-menu-primary-focused-primary,
            'text': $chirp-enterprise-light-menu-primary-focused-text,
            'border': $chirp-enterprise-light-menu-primary-focused-border
          )
        )
      ),
      'message': (
        'success': (
          'primary': $chirp-enterprise-light-message-success-primary,
          '02': $chirp-enterprise-light-message-success-02,
          '03': $chirp-enterprise-light-message-success-03,
          '04': $chirp-enterprise-light-message-success-04,
          '05': $chirp-enterprise-light-message-success-05,
          '06': $chirp-enterprise-light-message-success-06
        ),
        'warning': (
          'primary': $chirp-enterprise-light-message-warning-primary,
          '02': $chirp-enterprise-light-message-warning-02,
          '03': $chirp-enterprise-light-message-warning-03,
          '04': $chirp-enterprise-light-message-warning-04,
          '05': $chirp-enterprise-light-message-warning-05,
          '06': $chirp-enterprise-light-message-warning-06
        ),
        'error': (
          'primary': $chirp-enterprise-light-message-error-primary,
          '02': $chirp-enterprise-light-message-error-02,
          '03': $chirp-enterprise-light-message-error-03,
          '04': $chirp-enterprise-light-message-error-04,
          '05': $chirp-enterprise-light-message-error-05,
          '06': $chirp-enterprise-light-message-error-06
        ),
        'info': (
          'primary': $chirp-enterprise-light-message-info-primary,
          '02': $chirp-enterprise-light-message-info-02,
          '03': $chirp-enterprise-light-message-info-03,
          '04': $chirp-enterprise-light-message-info-04,
          '05': $chirp-enterprise-light-message-info-05,
          '06': $chirp-enterprise-light-message-info-06
        ),
        'neutral': (
          'primary': $chirp-enterprise-light-message-neutral-primary,
          '02': $chirp-enterprise-light-message-neutral-02,
          '03': $chirp-enterprise-light-message-neutral-03,
          '04': $chirp-enterprise-light-message-neutral-04,
          '05': $chirp-enterprise-light-message-neutral-05,
          '06': $chirp-enterprise-light-message-neutral-06
        )
      )
    )
  ),
  'insurance': (
    'light': (
      'ui-bg': (
        'brand': (
          'accent': (
            '10': $chirp-insurance-light-ui-bg-brand-accent-10
          )
        )
      )
    )
  ),
  'chirp-2025': (
    'light': (
      'ui-bg': (
        'primary': $chirp-chirp-2025-light-ui-bg-primary
      ),
      'text': (
        'primary': $chirp-chirp-2025-light-text-primary,
        'secondary': $chirp-chirp-2025-light-text-secondary,
        'placeholder': $chirp-chirp-2025-light-text-placeholder,
        'tertiary': $chirp-chirp-2025-light-text-tertiary,
        'error': $chirp-chirp-2025-light-text-error,
        'display': $chirp-chirp-2025-light-text-display
      ),
      'menu': (
        'primary': (
          'focused': (
            'primary': $chirp-chirp-2025-light-menu-primary-focused-primary
          ),
          'active': (
            'primary': $chirp-chirp-2025-light-menu-primary-active-primary
          )
        ),
        'alternate': (
          'focused': (
            'primary': $chirp-chirp-2025-light-menu-alternate-focused-primary
          ),
          'active': (
            'primary': $chirp-chirp-2025-light-menu-alternate-active-primary
          )
        )
      ),
      'action': (
        'choice': (
          'available': (
            'selected': (
              'bg': (
                'active': $chirp-chirp-2025-light-action-choice-available-selected-bg-active,
                'hover': $chirp-chirp-2025-light-action-choice-available-selected-bg-hover,
                'focus': $chirp-chirp-2025-light-action-choice-available-selected-bg-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-available-selected-bg-pressed,
                'error': $chirp-chirp-2025-light-action-choice-available-selected-bg-error
              ),
              'border': (
                'active': $chirp-chirp-2025-light-action-choice-available-selected-border-active,
                'hover': $chirp-chirp-2025-light-action-choice-available-selected-border-hover,
                'focus': $chirp-chirp-2025-light-action-choice-available-selected-border-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-available-selected-border-pressed,
                'error': $chirp-chirp-2025-light-action-choice-available-selected-border-error
              )
            ),
            'unselected': (
              'bg': (
                'active': $chirp-chirp-2025-light-action-choice-available-unselected-bg-active,
                'hover': $chirp-chirp-2025-light-action-choice-available-unselected-bg-hover,
                'focus': $chirp-chirp-2025-light-action-choice-available-unselected-bg-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-available-unselected-bg-pressed,
                'error': $chirp-chirp-2025-light-action-choice-available-unselected-bg-error
              ),
              'border': (
                'active': $chirp-chirp-2025-light-action-choice-available-unselected-border-active,
                'hover': $chirp-chirp-2025-light-action-choice-available-unselected-border-hover,
                'focus': $chirp-chirp-2025-light-action-choice-available-unselected-border-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-available-unselected-border-pressed,
                'error': $chirp-chirp-2025-light-action-choice-available-unselected-border-error
              )
            )
          ),
          'unavailable': (
            'selected': (
              'bg': (
                'active': $chirp-chirp-2025-light-action-choice-unavailable-selected-bg-active,
                'hover': $chirp-chirp-2025-light-action-choice-unavailable-selected-bg-hover,
                'focus': $chirp-chirp-2025-light-action-choice-unavailable-selected-bg-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-unavailable-selected-bg-pressed
              ),
              'border': (
                'active': $chirp-chirp-2025-light-action-choice-unavailable-selected-border-active,
                'hover': $chirp-chirp-2025-light-action-choice-unavailable-selected-border-hover,
                'focus': $chirp-chirp-2025-light-action-choice-unavailable-selected-border-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-unavailable-selected-border-pressed
              )
            ),
            'unselected': (
              'bg': (
                'active': $chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-active,
                'hover': $chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-hover,
                'focus': $chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-pressed,
                'disabled': $chirp-chirp-2025-light-action-choice-unavailable-unselected-bg-disabled
              ),
              'border': (
                'active': $chirp-chirp-2025-light-action-choice-unavailable-unselected-border-active,
                'hover': $chirp-chirp-2025-light-action-choice-unavailable-unselected-border-hover,
                'focus': $chirp-chirp-2025-light-action-choice-unavailable-unselected-border-focus,
                'pressed': $chirp-chirp-2025-light-action-choice-unavailable-unselected-border-pressed,
                'disabled': $chirp-chirp-2025-light-action-choice-unavailable-unselected-border-disabled
              )
            )
          )
        )
      )
    )
  ),
  'fresh': (
    'light': (
      'link': (
        'active': (
          'primary': $chirp-fresh-light-link-active-primary
        ),
        'visited': (
          'primary': $chirp-fresh-light-link-visited-primary
        ),
        'hover': (
          'primary': $chirp-fresh-light-link-hover-primary
        ),
        'pressed': (
          'primary': $chirp-fresh-light-link-pressed-primary
        ),
        'focus': (
          'primary': $chirp-fresh-light-link-focus-primary
        )
      ),
      'action': (
        'cta': (
          'primary': (
            'primary': $chirp-fresh-light-action-cta-primary-primary,
            '03': $chirp-fresh-light-action-cta-primary-03,
            '02': $chirp-fresh-light-action-cta-primary-02,
            'text': $chirp-fresh-light-action-cta-primary-text
          ),
          'alternate': (
            '02': $chirp-fresh-light-action-cta-alternate-02,
            'primary': $chirp-fresh-light-action-cta-alternate-primary,
            '03': $chirp-fresh-light-action-cta-alternate-03,
            'text': $chirp-fresh-light-action-cta-alternate-text
          )
        ),
        'utility': (
          'primary': (
            'primary': $chirp-fresh-light-action-utility-primary-primary,
            '02': $chirp-fresh-light-action-utility-primary-02,
            '03': $chirp-fresh-light-action-utility-primary-03,
            'text': $chirp-fresh-light-action-utility-primary-text
          )
        )
      ),
      'field': (
        '10': $chirp-fresh-light-field-10,
        'primary': $chirp-fresh-light-field-primary,
        '02': $chirp-fresh-light-field-02,
        '03': $chirp-fresh-light-field-03,
        '04': $chirp-fresh-light-field-04,
        '05': $chirp-fresh-light-field-05,
        '06': $chirp-fresh-light-field-06,
        '07': $chirp-fresh-light-field-07,
        '08': $chirp-fresh-light-field-08,
        '09': $chirp-fresh-light-field-09,
        'filter': (
          'bg': $chirp-fresh-light-field-filter-bg,
          'bg-hover': $chirp-fresh-light-field-filter-bg-hover,
          'bg-pressed': $chirp-fresh-light-field-filter-bg-pressed,
          'text': $chirp-fresh-light-field-filter-text
        )
      ),
      'ui-bg': (
        'brand': (
          'primary': $chirp-fresh-light-ui-bg-brand-primary,
          'alternate': $chirp-fresh-light-ui-bg-brand-alternate,
          'accent': (
            '01': $chirp-fresh-light-ui-bg-brand-accent-01,
            '02': $chirp-fresh-light-ui-bg-brand-accent-02,
            '03': $chirp-fresh-light-ui-bg-brand-accent-03,
            '04': $chirp-fresh-light-ui-bg-brand-accent-04,
            '05': $chirp-fresh-light-ui-bg-brand-accent-05,
            '06': $chirp-fresh-light-ui-bg-brand-accent-06,
            '07': $chirp-fresh-light-ui-bg-brand-accent-07
          )
        )
      ),
      'text': (
        'display': $chirp-fresh-light-text-display
      )
    )
  ),
  'experimental-choice': (
    'light': (
      'ct': (
        'swatch': (
          'available-yes': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-yes-unselected-pressed-halo-color
              )
            )
          ),
          'available-no': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-no-unselected-pressed-halo-color
              )
            )
          ),
          'available-other': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-swatch-available-other-unselected-pressed-halo-color
              )
            )
          )
        ),
        'selection-card': (
          'available-yes': (
            'selected': (
              'active': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-border-color,
                'halo': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-halo,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-border-color,
                'halo': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-halo,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-border-color,
                'halo': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-halo,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-selected-disabled-halo-color
              )
            ),
            'unselected': (
              'active': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-bg-color,
                'border-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-border-color,
                'halo-color': $chirp-experimental-choice-light-ct-selection-card-available-yes-unselected-disabled-halo-color
              )
            )
          )
        ),
        'button': (
          'action': (
            'primary': (
              'active': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-primary-active-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-primary-active-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-primary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-primary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-primary-active-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-primary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-primary-hover-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-primary-hover-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-primary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-primary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-primary-hover-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-primary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-primary-focus-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-primary-focus-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-primary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-primary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-primary-focus-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-primary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-primary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-primary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-primary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-primary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-primary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-primary-pressed-overlay
              )
            ),
            'secondary': (
              'active': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-secondary-active-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-secondary-active-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-secondary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-secondary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-secondary-active-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-secondary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-secondary-hover-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-secondary-hover-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-secondary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-secondary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-secondary-hover-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-secondary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-secondary-focus-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-secondary-focus-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-secondary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-secondary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-secondary-focus-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-secondary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-secondary-pressed-overlay
              )
            ),
            'tertiary': (
              'active': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-tertiary-active-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-tertiary-active-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-tertiary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-tertiary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-tertiary-active-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-tertiary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-tertiary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-tertiary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-tertiary-pressed-overlay
              )
            ),
            'subtle': (
              'active': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-subtle-active-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-subtle-active-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-subtle-active-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-subtle-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-subtle-active-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-subtle-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-subtle-hover-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-subtle-hover-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-subtle-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-subtle-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-subtle-hover-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-subtle-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-subtle-focus-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-subtle-focus-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-subtle-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-subtle-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-subtle-focus-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-subtle-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-text-color,
                'icon-color': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-icon-color,
                'border-color': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-halo-color,
                'overlay': $chirp-experimental-choice-light-ct-button-action-subtle-pressed-overlay
              )
            )
          )
        )
      )
    ),
    'dark': (
      'ct': (
        'swatch': (
          'available-yes': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-yes-unselected-pressed-halo-color
              )
            )
          ),
          'available-no': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-no-unselected-pressed-halo-color
              )
            )
          ),
          'available-other': (
            'selected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-selected-pressed-halo-color
              )
            ),
            'unselected': (
              'active': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-active-halo-color
              ),
              'hover': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-hover-halo-color
              ),
              'focus': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-focus-halo-color
              ),
              'pressed': (
                'text-primary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-primary,
                'text-secondary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-secondary,
                'text-tertiary': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-text-tertiary,
                'bg-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-swatch-available-other-unselected-pressed-halo-color
              )
            )
          )
        ),
        'selection-card': (
          'available-yes': (
            'selected': (
              'active': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-selected-disabled-halo-color
              )
            ),
            'unselected': (
              'active': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-active-halo-color
              ),
              'hover': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-hover-halo-color
              ),
              'focus': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-focus-halo-color
              ),
              'pressed': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-pressed-halo-color
              ),
              'disabled': (
                'bg-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-bg-color,
                'border-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-border-color,
                'halo-color': $chirp-experimental-choice-dark-ct-selection-card-available-yes-unselected-disabled-halo-color
              )
            )
          )
        ),
        'button': (
          'action': (
            'primary': (
              'active': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-primary-active-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-primary-active-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-primary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-primary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-primary-active-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-primary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-primary-hover-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-primary-hover-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-primary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-primary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-primary-hover-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-primary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-primary-focus-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-primary-focus-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-primary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-primary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-primary-focus-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-primary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-primary-pressed-overlay
              )
            ),
            'secondary': (
              'active': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-secondary-active-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-secondary-active-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-secondary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-secondary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-secondary-active-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-secondary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-secondary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-secondary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-secondary-pressed-overlay
              )
            ),
            'tertiary': (
              'active': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-tertiary-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-tertiary-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-tertiary-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-tertiary-pressed-overlay
              )
            ),
            'subtle': (
              'active': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-subtle-active-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-subtle-active-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-subtle-active-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-subtle-active-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-subtle-active-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-subtle-active-overlay
              ),
              'hover': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-subtle-hover-overlay
              ),
              'focus': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-subtle-focus-overlay
              ),
              'pressed': (
                'text-color': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-text-color,
                'icon-color': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-icon-color,
                'border-color': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-border-color,
                'bg-color-1': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-1,
                'bg-color-2': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-2,
                'bg-color-3': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-bg-color-3,
                'halo-color': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-halo-color,
                'overlay': $chirp-experimental-choice-dark-ct-button-action-subtle-pressed-overlay
              )
            )
          )
        )
      )
    )
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

Used by

chirp-typography-utility-text-case

$chirp-typography-utility-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'display-typeface': $chirp-typography-display-typeface,
  'text-typeface': $chirp-typography-text-typeface,
  'price': (
    'x-small': (
      'font-family': $chirp-typography-price-x-small-font-family,
      'font-weight': $chirp-typography-price-x-small-font-weight,
      'line-height': $chirp-typography-price-x-small-line-height,
      'font-size': $chirp-typography-price-x-small-font-size,
      'letter-spacing': $chirp-typography-price-x-small-letter-spacing,
      'text-decoration': $chirp-typography-price-x-small-text-decoration,
      'text-case': $chirp-typography-price-x-small-text-case
    ),
    'small': (
      'font-family': $chirp-typography-price-small-font-family,
      'font-weight': $chirp-typography-price-small-font-weight,
      'line-height': $chirp-typography-price-small-line-height,
      'font-size': $chirp-typography-price-small-font-size,
      'letter-spacing': $chirp-typography-price-small-letter-spacing,
      'text-decoration': $chirp-typography-price-small-text-decoration,
      'text-case': $chirp-typography-price-small-text-case
    ),
    'medium': (
      'font-family': $chirp-typography-price-medium-font-family,
      'font-weight': $chirp-typography-price-medium-font-weight,
      'line-height': $chirp-typography-price-medium-line-height,
      'font-size': $chirp-typography-price-medium-font-size,
      'letter-spacing': $chirp-typography-price-medium-letter-spacing,
      'text-decoration': $chirp-typography-price-medium-text-decoration,
      'text-case': $chirp-typography-price-medium-text-case
    ),
    'large': (
      'font-family': $chirp-typography-price-large-font-family,
      'font-weight': $chirp-typography-price-large-font-weight,
      'line-height': $chirp-typography-price-large-line-height,
      'font-size': $chirp-typography-price-large-font-size,
      'letter-spacing': $chirp-typography-price-large-letter-spacing,
      'text-decoration': $chirp-typography-price-large-text-decoration,
      'text-case': $chirp-typography-price-large-text-case
    ),
    'x-large': (
      'font-family': $chirp-typography-price-x-large-font-family,
      'font-weight': $chirp-typography-price-x-large-font-weight,
      'line-height': $chirp-typography-price-x-large-line-height,
      'font-size': $chirp-typography-price-x-large-font-size,
      'letter-spacing': $chirp-typography-price-x-large-letter-spacing,
      'text-decoration': $chirp-typography-price-x-large-text-decoration,
      'text-case': $chirp-typography-price-x-large-text-case
    ),
    'x-small-strikethrough': (
      'font-family': $chirp-typography-price-x-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-x-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-x-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-x-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-x-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-x-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-x-small-strikethrough-text-case
    ),
    'small-strikethrough': (
      'font-family': $chirp-typography-price-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-small-strikethrough-text-case
    )
  ),
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-wide': $chirp-typography-ls-wide,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'weight-medium': $chirp-typography-weight-medium,
  'weight-heavy': $chirp-typography-weight-heavy,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'font-size': $chirp-typography-display-1-font-size,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'line-height': $chirp-typography-form-label-line-height,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'line-height': $chirp-typography-form-helper-line-height,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility-3-display': (
    'font-weight': $chirp-typography-utility-3-display-font-weight,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'font-family': $chirp-typography-utility-3-display-font-family,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case
  ),
  'utility-4-display': (
    'font-weight': $chirp-typography-utility-4-display-font-weight,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing,
    'font-family': $chirp-typography-utility-4-display-font-family,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case
  ),
  'utility-5-display': (
    'font-weight': $chirp-typography-utility-5-display-font-weight,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing,
    'font-family': $chirp-typography-utility-5-display-font-family,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case
  ),
  'utility-6-display': (
    'font-weight': $chirp-typography-utility-6-display-font-weight,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'font-family': $chirp-typography-utility-6-display-font-family,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case
  ),
  'utility-7-display': (
    'font-weight': $chirp-typography-utility-7-display-font-weight,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'font-family': $chirp-typography-utility-7-display-font-family,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

chirp-typography-utility-text-case

$chirp-typography-utility-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'display-typeface': $chirp-typography-display-typeface,
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'weight-medium': $chirp-typography-weight-medium,
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'text-typeface': $chirp-typography-text-typeface,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-wide': $chirp-typography-ls-wide,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'weight-heavy': $chirp-typography-weight-heavy,
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'font-size': $chirp-typography-display-1-font-size,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'editorial-p-1': (
    'font-family': $chirp-typography-editorial-p-1-font-family,
    'font-weight': $chirp-typography-editorial-p-1-font-weight,
    'line-height': $chirp-typography-editorial-p-1-line-height,
    'font-size': $chirp-typography-editorial-p-1-font-size,
    'letter-spacing': $chirp-typography-editorial-p-1-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-1-text-decoration,
    'text-case': $chirp-typography-editorial-p-1-text-case
  ),
  'editorial-p-2': (
    'font-family': $chirp-typography-editorial-p-2-font-family,
    'font-weight': $chirp-typography-editorial-p-2-font-weight,
    'line-height': $chirp-typography-editorial-p-2-line-height,
    'font-size': $chirp-typography-editorial-p-2-font-size,
    'letter-spacing': $chirp-typography-editorial-p-2-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-2-text-decoration,
    'text-case': $chirp-typography-editorial-p-2-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case,
    'line-height': $chirp-typography-form-label-line-height
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case,
    'line-height': $chirp-typography-form-helper-line-height
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-3-display': (
    'font-family': $chirp-typography-utility-3-display-font-family,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case,
    'font-weight': $chirp-typography-utility-3-display-font-weight
  ),
  'utility-4-display': (
    'font-family': $chirp-typography-utility-4-display-font-family,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case,
    'font-weight': $chirp-typography-utility-4-display-font-weight
  ),
  'utility-5-display': (
    'font-family': $chirp-typography-utility-5-display-font-family,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case,
    'font-weight': $chirp-typography-utility-5-display-font-weight
  ),
  'utility-6-display': (
    'font-family': $chirp-typography-utility-6-display-font-family,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case,
    'font-weight': $chirp-typography-utility-6-display-font-weight
  ),
  'utility-7-display': (
    'font-family': $chirp-typography-utility-7-display-font-family,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case,
    'font-weight': $chirp-typography-utility-7-display-font-weight
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

chirp-typography-utility-text-case

$chirp-typography-utility-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'display-typeface': $chirp-typography-display-typeface,
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'price': (
    'small': (
      'font-family': $chirp-typography-price-small-font-family,
      'font-weight': $chirp-typography-price-small-font-weight,
      'line-height': $chirp-typography-price-small-line-height,
      'font-size': $chirp-typography-price-small-font-size,
      'letter-spacing': $chirp-typography-price-small-letter-spacing,
      'text-decoration': $chirp-typography-price-small-text-decoration,
      'text-case': $chirp-typography-price-small-text-case
    ),
    'medium': (
      'font-family': $chirp-typography-price-medium-font-family,
      'font-weight': $chirp-typography-price-medium-font-weight,
      'line-height': $chirp-typography-price-medium-line-height,
      'font-size': $chirp-typography-price-medium-font-size,
      'letter-spacing': $chirp-typography-price-medium-letter-spacing,
      'text-decoration': $chirp-typography-price-medium-text-decoration,
      'text-case': $chirp-typography-price-medium-text-case
    ),
    'large': (
      'font-family': $chirp-typography-price-large-font-family,
      'font-weight': $chirp-typography-price-large-font-weight,
      'line-height': $chirp-typography-price-large-line-height,
      'font-size': $chirp-typography-price-large-font-size,
      'letter-spacing': $chirp-typography-price-large-letter-spacing,
      'text-decoration': $chirp-typography-price-large-text-decoration,
      'text-case': $chirp-typography-price-large-text-case
    ),
    'x-large': (
      'font-family': $chirp-typography-price-x-large-font-family,
      'font-weight': $chirp-typography-price-x-large-font-weight,
      'line-height': $chirp-typography-price-x-large-line-height,
      'font-size': $chirp-typography-price-x-large-font-size,
      'letter-spacing': $chirp-typography-price-x-large-letter-spacing,
      'text-decoration': $chirp-typography-price-x-large-text-decoration,
      'text-case': $chirp-typography-price-x-large-text-case
    ),
    'x-small-strikethrough': (
      'font-family': $chirp-typography-price-x-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-x-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-x-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-x-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-x-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-x-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-x-small-strikethrough-text-case
    ),
    'small-strikethrough': (
      'font-family': $chirp-typography-price-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-small-strikethrough-text-case
    )
  ),
  'ls-wide': $chirp-typography-ls-wide,
  'text-typeface': $chirp-typography-text-typeface,
  'weight-heavy': $chirp-typography-weight-heavy,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-medium': $chirp-typography-weight-medium,
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'font-size': $chirp-typography-display-1-font-size,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'editorial-p-1': (
    'font-family': $chirp-typography-editorial-p-1-font-family,
    'font-weight': $chirp-typography-editorial-p-1-font-weight,
    'line-height': $chirp-typography-editorial-p-1-line-height,
    'font-size': $chirp-typography-editorial-p-1-font-size,
    'letter-spacing': $chirp-typography-editorial-p-1-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-1-text-decoration,
    'text-case': $chirp-typography-editorial-p-1-text-case
  ),
  'editorial-p-2': (
    'font-family': $chirp-typography-editorial-p-2-font-family,
    'font-weight': $chirp-typography-editorial-p-2-font-weight,
    'line-height': $chirp-typography-editorial-p-2-line-height,
    'font-size': $chirp-typography-editorial-p-2-font-size,
    'letter-spacing': $chirp-typography-editorial-p-2-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-2-text-decoration,
    'text-case': $chirp-typography-editorial-p-2-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case,
    'line-height': $chirp-typography-form-label-line-height
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case,
    'line-height': $chirp-typography-form-helper-line-height
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility-4-display': (
    'font-weight': $chirp-typography-utility-4-display-font-weight,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing,
    'font-family': $chirp-typography-utility-4-display-font-family,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case
  ),
  'utility-5-display': (
    'font-weight': $chirp-typography-utility-5-display-font-weight,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing,
    'font-family': $chirp-typography-utility-5-display-font-family,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case
  ),
  'utility-3-display': (
    'font-weight': $chirp-typography-utility-3-display-font-weight,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'font-family': $chirp-typography-utility-3-display-font-family,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case
  ),
  'utility-6-display': (
    'font-weight': $chirp-typography-utility-6-display-font-weight,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'font-family': $chirp-typography-utility-6-display-font-family,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case
  ),
  'utility-7-display': (
    'font-weight': $chirp-typography-utility-7-display-font-weight,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'font-family': $chirp-typography-utility-7-display-font-family,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

chirp-typography-utility-text-case

$chirp-typography-utility-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'display-typeface': $chirp-typography-display-typeface,
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'price': (
    'small': (
      'font-family': $chirp-typography-price-small-font-family,
      'font-weight': $chirp-typography-price-small-font-weight,
      'line-height': $chirp-typography-price-small-line-height,
      'font-size': $chirp-typography-price-small-font-size,
      'letter-spacing': $chirp-typography-price-small-letter-spacing,
      'text-decoration': $chirp-typography-price-small-text-decoration,
      'text-case': $chirp-typography-price-small-text-case
    ),
    'medium': (
      'font-family': $chirp-typography-price-medium-font-family,
      'font-weight': $chirp-typography-price-medium-font-weight,
      'line-height': $chirp-typography-price-medium-line-height,
      'font-size': $chirp-typography-price-medium-font-size,
      'letter-spacing': $chirp-typography-price-medium-letter-spacing,
      'text-decoration': $chirp-typography-price-medium-text-decoration,
      'text-case': $chirp-typography-price-medium-text-case
    ),
    'large': (
      'font-family': $chirp-typography-price-large-font-family,
      'font-weight': $chirp-typography-price-large-font-weight,
      'line-height': $chirp-typography-price-large-line-height,
      'font-size': $chirp-typography-price-large-font-size,
      'letter-spacing': $chirp-typography-price-large-letter-spacing,
      'text-decoration': $chirp-typography-price-large-text-decoration,
      'text-case': $chirp-typography-price-large-text-case
    ),
    'x-large': (
      'font-family': $chirp-typography-price-x-large-font-family,
      'font-weight': $chirp-typography-price-x-large-font-weight,
      'line-height': $chirp-typography-price-x-large-line-height,
      'font-size': $chirp-typography-price-x-large-font-size,
      'letter-spacing': $chirp-typography-price-x-large-letter-spacing,
      'text-decoration': $chirp-typography-price-x-large-text-decoration,
      'text-case': $chirp-typography-price-x-large-text-case
    ),
    'x-small-strikethrough': (
      'font-family': $chirp-typography-price-x-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-x-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-x-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-x-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-x-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-x-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-x-small-strikethrough-text-case
    ),
    'small-strikethrough': (
      'font-family': $chirp-typography-price-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-small-strikethrough-text-case
    )
  ),
  'ls-wide': $chirp-typography-ls-wide,
  'text-typeface': $chirp-typography-text-typeface,
  'weight-heavy': $chirp-typography-weight-heavy,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-medium': $chirp-typography-weight-medium,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'font-size': $chirp-typography-display-1-font-size,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'editorial-p-1': (
    'font-family': $chirp-typography-editorial-p-1-font-family,
    'font-weight': $chirp-typography-editorial-p-1-font-weight,
    'line-height': $chirp-typography-editorial-p-1-line-height,
    'font-size': $chirp-typography-editorial-p-1-font-size,
    'letter-spacing': $chirp-typography-editorial-p-1-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-1-text-decoration,
    'text-case': $chirp-typography-editorial-p-1-text-case
  ),
  'editorial-p-2': (
    'font-family': $chirp-typography-editorial-p-2-font-family,
    'font-weight': $chirp-typography-editorial-p-2-font-weight,
    'line-height': $chirp-typography-editorial-p-2-line-height,
    'font-size': $chirp-typography-editorial-p-2-font-size,
    'letter-spacing': $chirp-typography-editorial-p-2-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-2-text-decoration,
    'text-case': $chirp-typography-editorial-p-2-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case,
    'line-height': $chirp-typography-form-label-line-height
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case,
    'line-height': $chirp-typography-form-helper-line-height
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-4-display': (
    'font-family': $chirp-typography-utility-4-display-font-family,
    'font-weight': $chirp-typography-utility-4-display-font-weight,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing
  ),
  'utility-5-display': (
    'font-family': $chirp-typography-utility-5-display-font-family,
    'font-weight': $chirp-typography-utility-5-display-font-weight,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility-3-display': (
    'font-weight': $chirp-typography-utility-3-display-font-weight,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'font-family': $chirp-typography-utility-3-display-font-family,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case
  ),
  'utility-6-display': (
    'font-weight': $chirp-typography-utility-6-display-font-weight,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'font-family': $chirp-typography-utility-6-display-font-family,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case
  ),
  'utility-7-display': (
    'font-weight': $chirp-typography-utility-7-display-font-weight,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'font-family': $chirp-typography-utility-7-display-font-family,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

chirp-typography-utility-text-case

$chirp-typography-utility-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'display-typeface': $chirp-typography-display-typeface,
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'text-typeface': $chirp-typography-text-typeface,
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-wide': $chirp-typography-ls-wide,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'weight-medium': $chirp-typography-weight-medium,
  'weight-heavy': $chirp-typography-weight-heavy,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case,
    'font-size': $chirp-typography-display-1-font-size
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'editorial-p-1': (
    'font-family': $chirp-typography-editorial-p-1-font-family,
    'font-weight': $chirp-typography-editorial-p-1-font-weight,
    'line-height': $chirp-typography-editorial-p-1-line-height,
    'font-size': $chirp-typography-editorial-p-1-font-size,
    'letter-spacing': $chirp-typography-editorial-p-1-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-1-text-decoration,
    'text-case': $chirp-typography-editorial-p-1-text-case
  ),
  'editorial-p-2': (
    'font-family': $chirp-typography-editorial-p-2-font-family,
    'font-weight': $chirp-typography-editorial-p-2-font-weight,
    'line-height': $chirp-typography-editorial-p-2-line-height,
    'font-size': $chirp-typography-editorial-p-2-font-size,
    'letter-spacing': $chirp-typography-editorial-p-2-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-2-text-decoration,
    'text-case': $chirp-typography-editorial-p-2-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'line-height': $chirp-typography-form-label-line-height,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'line-height': $chirp-typography-form-helper-line-height,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-4-display': (
    'font-family': $chirp-typography-utility-4-display-font-family,
    'font-weight': $chirp-typography-utility-4-display-font-weight,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case
  ),
  'utility-5-display': (
    'font-family': $chirp-typography-utility-5-display-font-family,
    'font-weight': $chirp-typography-utility-5-display-font-weight,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility-3-display': (
    'font-weight': $chirp-typography-utility-3-display-font-weight,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'font-family': $chirp-typography-utility-3-display-font-family,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case
  ),
  'utility-6-display': (
    'font-weight': $chirp-typography-utility-6-display-font-weight,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'font-family': $chirp-typography-utility-6-display-font-family,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case
  ),
  'utility-7-display': (
    'font-weight': $chirp-typography-utility-7-display-font-weight,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'font-family': $chirp-typography-utility-7-display-font-family,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

chirp-typography-deprecated-hero-4-alternate-text-case

$chirp-typography-deprecated-hero-4-alternate-text-case: none !default;
Description

Sass variables

chirp-typography

$chirp-typography: (
  'price': (
    'small': (
      'font-family': $chirp-typography-price-small-font-family,
      'font-weight': $chirp-typography-price-small-font-weight,
      'line-height': $chirp-typography-price-small-line-height,
      'font-size': $chirp-typography-price-small-font-size,
      'letter-spacing': $chirp-typography-price-small-letter-spacing,
      'text-decoration': $chirp-typography-price-small-text-decoration,
      'text-case': $chirp-typography-price-small-text-case
    ),
    'medium': (
      'font-family': $chirp-typography-price-medium-font-family,
      'font-weight': $chirp-typography-price-medium-font-weight,
      'line-height': $chirp-typography-price-medium-line-height,
      'font-size': $chirp-typography-price-medium-font-size,
      'letter-spacing': $chirp-typography-price-medium-letter-spacing,
      'text-decoration': $chirp-typography-price-medium-text-decoration,
      'text-case': $chirp-typography-price-medium-text-case
    ),
    'large': (
      'font-family': $chirp-typography-price-large-font-family,
      'font-weight': $chirp-typography-price-large-font-weight,
      'line-height': $chirp-typography-price-large-line-height,
      'font-size': $chirp-typography-price-large-font-size,
      'letter-spacing': $chirp-typography-price-large-letter-spacing,
      'text-decoration': $chirp-typography-price-large-text-decoration,
      'text-case': $chirp-typography-price-large-text-case
    ),
    'x-large': (
      'font-family': $chirp-typography-price-x-large-font-family,
      'font-weight': $chirp-typography-price-x-large-font-weight,
      'line-height': $chirp-typography-price-x-large-line-height,
      'font-size': $chirp-typography-price-x-large-font-size,
      'letter-spacing': $chirp-typography-price-x-large-letter-spacing,
      'text-decoration': $chirp-typography-price-x-large-text-decoration,
      'text-case': $chirp-typography-price-x-large-text-case
    ),
    'x-small-strikethrough': (
      'font-family': $chirp-typography-price-x-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-x-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-x-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-x-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-x-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-x-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-x-small-strikethrough-text-case
    ),
    'xx-small-strikethrough': (
      'font-family': $chirp-typography-price-xx-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-xx-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-xx-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-xx-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-xx-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-xx-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-xx-small-strikethrough-text-case
    ),
    'small-strikethrough': (
      'font-family': $chirp-typography-price-small-strikethrough-font-family,
      'font-weight': $chirp-typography-price-small-strikethrough-font-weight,
      'line-height': $chirp-typography-price-small-strikethrough-line-height,
      'font-size': $chirp-typography-price-small-strikethrough-font-size,
      'letter-spacing': $chirp-typography-price-small-strikethrough-letter-spacing,
      'text-decoration': $chirp-typography-price-small-strikethrough-text-decoration,
      'text-case': $chirp-typography-price-small-strikethrough-text-case
    )
  ),
  'product-heading-weight-strong': $chirp-typography-product-heading-weight-strong,
  'editorial-heading-weight-strong': $chirp-typography-editorial-heading-weight-strong,
  'product-text-weight-strong': $chirp-typography-product-text-weight-strong,
  'editorial-text-weight-strong': $chirp-typography-editorial-text-weight-strong,
  'utility-weight-strong': $chirp-typography-utility-weight-strong,
  'display-typeface': $chirp-typography-display-typeface,
  'display-typeface-small': $chirp-typography-display-typeface-small,
  'text-typeface': $chirp-typography-text-typeface,
  'ls-standard': $chirp-typography-ls-standard,
  'ls-loose': $chirp-typography-ls-loose,
  'ls-wide': $chirp-typography-ls-wide,
  'ls-tight': $chirp-typography-ls-tight,
  'weight-normal': $chirp-typography-weight-normal,
  'weight-bold': $chirp-typography-weight-bold,
  'weight-semibold': $chirp-typography-weight-semibold,
  'weight-medium': $chirp-typography-weight-medium,
  'weight-heavy': $chirp-typography-weight-heavy,
  'product': (
    'heading-1': (
      'font-weight': $chirp-typography-product-heading-1-font-weight,
      'line-height': $chirp-typography-product-heading-1-line-height,
      'font-size': $chirp-typography-product-heading-1-font-size,
      'letter-spacing': $chirp-typography-product-heading-1-letter-spacing,
      'font-family': $chirp-typography-product-heading-1-font-family,
      'text-decoration': $chirp-typography-product-heading-1-text-decoration,
      'text-case': $chirp-typography-product-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-product-heading-2-font-weight,
      'line-height': $chirp-typography-product-heading-2-line-height,
      'font-size': $chirp-typography-product-heading-2-font-size,
      'letter-spacing': $chirp-typography-product-heading-2-letter-spacing,
      'font-family': $chirp-typography-product-heading-2-font-family,
      'text-decoration': $chirp-typography-product-heading-2-text-decoration,
      'text-case': $chirp-typography-product-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-product-heading-3-font-weight,
      'line-height': $chirp-typography-product-heading-3-line-height,
      'font-size': $chirp-typography-product-heading-3-font-size,
      'letter-spacing': $chirp-typography-product-heading-3-letter-spacing,
      'font-family': $chirp-typography-product-heading-3-font-family,
      'text-decoration': $chirp-typography-product-heading-3-text-decoration,
      'text-case': $chirp-typography-product-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-product-heading-4-font-weight,
      'line-height': $chirp-typography-product-heading-4-line-height,
      'font-size': $chirp-typography-product-heading-4-font-size,
      'letter-spacing': $chirp-typography-product-heading-4-letter-spacing,
      'font-family': $chirp-typography-product-heading-4-font-family,
      'text-decoration': $chirp-typography-product-heading-4-text-decoration,
      'text-case': $chirp-typography-product-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-product-heading-5-font-weight,
      'line-height': $chirp-typography-product-heading-5-line-height,
      'font-size': $chirp-typography-product-heading-5-font-size,
      'letter-spacing': $chirp-typography-product-heading-5-letter-spacing,
      'font-family': $chirp-typography-product-heading-5-font-family,
      'text-decoration': $chirp-typography-product-heading-5-text-decoration,
      'text-case': $chirp-typography-product-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-product-heading-6-font-weight,
      'line-height': $chirp-typography-product-heading-6-line-height,
      'font-size': $chirp-typography-product-heading-6-font-size,
      'letter-spacing': $chirp-typography-product-heading-6-letter-spacing,
      'font-family': $chirp-typography-product-heading-6-font-family,
      'text-decoration': $chirp-typography-product-heading-6-text-decoration,
      'text-case': $chirp-typography-product-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-product-text-1-font-weight,
      'line-height': $chirp-typography-product-text-1-line-height,
      'font-size': $chirp-typography-product-text-1-font-size,
      'letter-spacing': $chirp-typography-product-text-1-letter-spacing,
      'font-family': $chirp-typography-product-text-1-font-family,
      'text-decoration': $chirp-typography-product-text-1-text-decoration,
      'text-case': $chirp-typography-product-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-product-text-2-font-weight,
      'line-height': $chirp-typography-product-text-2-line-height,
      'font-size': $chirp-typography-product-text-2-font-size,
      'letter-spacing': $chirp-typography-product-text-2-letter-spacing,
      'font-family': $chirp-typography-product-text-2-font-family,
      'text-decoration': $chirp-typography-product-text-2-text-decoration,
      'text-case': $chirp-typography-product-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-product-text-3-font-weight,
      'line-height': $chirp-typography-product-text-3-line-height,
      'font-size': $chirp-typography-product-text-3-font-size,
      'letter-spacing': $chirp-typography-product-text-3-letter-spacing,
      'font-family': $chirp-typography-product-text-3-font-family,
      'text-decoration': $chirp-typography-product-text-3-text-decoration,
      'text-case': $chirp-typography-product-text-3-text-case
    )
  ),
  'editorial': (
    'heading-1': (
      'font-weight': $chirp-typography-editorial-heading-1-font-weight,
      'line-height': $chirp-typography-editorial-heading-1-line-height,
      'font-size': $chirp-typography-editorial-heading-1-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-1-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-1-font-family,
      'text-decoration': $chirp-typography-editorial-heading-1-text-decoration,
      'text-case': $chirp-typography-editorial-heading-1-text-case
    ),
    'heading-2': (
      'font-weight': $chirp-typography-editorial-heading-2-font-weight,
      'line-height': $chirp-typography-editorial-heading-2-line-height,
      'font-size': $chirp-typography-editorial-heading-2-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-2-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-2-font-family,
      'text-decoration': $chirp-typography-editorial-heading-2-text-decoration,
      'text-case': $chirp-typography-editorial-heading-2-text-case
    ),
    'heading-3': (
      'font-weight': $chirp-typography-editorial-heading-3-font-weight,
      'line-height': $chirp-typography-editorial-heading-3-line-height,
      'font-size': $chirp-typography-editorial-heading-3-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-3-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-3-font-family,
      'text-decoration': $chirp-typography-editorial-heading-3-text-decoration,
      'text-case': $chirp-typography-editorial-heading-3-text-case
    ),
    'heading-4': (
      'font-weight': $chirp-typography-editorial-heading-4-font-weight,
      'line-height': $chirp-typography-editorial-heading-4-line-height,
      'font-size': $chirp-typography-editorial-heading-4-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-4-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-4-font-family,
      'text-decoration': $chirp-typography-editorial-heading-4-text-decoration,
      'text-case': $chirp-typography-editorial-heading-4-text-case
    ),
    'heading-5': (
      'font-weight': $chirp-typography-editorial-heading-5-font-weight,
      'line-height': $chirp-typography-editorial-heading-5-line-height,
      'font-size': $chirp-typography-editorial-heading-5-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-5-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-5-font-family,
      'text-decoration': $chirp-typography-editorial-heading-5-text-decoration,
      'text-case': $chirp-typography-editorial-heading-5-text-case
    ),
    'heading-6': (
      'font-weight': $chirp-typography-editorial-heading-6-font-weight,
      'line-height': $chirp-typography-editorial-heading-6-line-height,
      'font-size': $chirp-typography-editorial-heading-6-font-size,
      'letter-spacing': $chirp-typography-editorial-heading-6-letter-spacing,
      'font-family': $chirp-typography-editorial-heading-6-font-family,
      'text-decoration': $chirp-typography-editorial-heading-6-text-decoration,
      'text-case': $chirp-typography-editorial-heading-6-text-case
    ),
    'text-1': (
      'font-weight': $chirp-typography-editorial-text-1-font-weight,
      'line-height': $chirp-typography-editorial-text-1-line-height,
      'font-size': $chirp-typography-editorial-text-1-font-size,
      'letter-spacing': $chirp-typography-editorial-text-1-letter-spacing,
      'font-family': $chirp-typography-editorial-text-1-font-family,
      'text-decoration': $chirp-typography-editorial-text-1-text-decoration,
      'text-case': $chirp-typography-editorial-text-1-text-case
    ),
    'text-2': (
      'font-weight': $chirp-typography-editorial-text-2-font-weight,
      'line-height': $chirp-typography-editorial-text-2-line-height,
      'font-size': $chirp-typography-editorial-text-2-font-size,
      'letter-spacing': $chirp-typography-editorial-text-2-letter-spacing,
      'font-family': $chirp-typography-editorial-text-2-font-family,
      'text-decoration': $chirp-typography-editorial-text-2-text-decoration,
      'text-case': $chirp-typography-editorial-text-2-text-case
    ),
    'text-3': (
      'font-weight': $chirp-typography-editorial-text-3-font-weight,
      'line-height': $chirp-typography-editorial-text-3-line-height,
      'font-size': $chirp-typography-editorial-text-3-font-size,
      'letter-spacing': $chirp-typography-editorial-text-3-letter-spacing,
      'font-family': $chirp-typography-editorial-text-3-font-family,
      'text-decoration': $chirp-typography-editorial-text-3-text-decoration,
      'text-case': $chirp-typography-editorial-text-3-text-case
    )
  ),
  'product-heading-weight-normal': $chirp-typography-product-heading-weight-normal,
  'product-heading-weight-stronger': $chirp-typography-product-heading-weight-stronger,
  'editorial-heading-weight-normal': $chirp-typography-editorial-heading-weight-normal,
  'editorial-heading-weight-light': $chirp-typography-editorial-heading-weight-light,
  'editorial-heading-weight-stronger': $chirp-typography-editorial-heading-weight-stronger,
  'product-text-weight-normal': $chirp-typography-product-text-weight-normal,
  'product-text-weight-stronger': $chirp-typography-product-text-weight-stronger,
  'editorial-text-weight-normal': $chirp-typography-editorial-text-weight-normal,
  'editorial-text-weight-stronger': $chirp-typography-editorial-text-weight-stronger,
  'utility-weight-normal': $chirp-typography-utility-weight-normal,
  'utility-weight-stronger': $chirp-typography-utility-weight-stronger,
  'display-1': (
    'font-family': $chirp-typography-display-1-font-family,
    'font-weight': $chirp-typography-display-1-font-weight,
    'line-height': $chirp-typography-display-1-line-height,
    'font-size': $chirp-typography-display-1-font-size,
    'letter-spacing': $chirp-typography-display-1-letter-spacing,
    'text-decoration': $chirp-typography-display-1-text-decoration,
    'text-case': $chirp-typography-display-1-text-case
  ),
  'display-2': (
    'font-family': $chirp-typography-display-2-font-family,
    'font-weight': $chirp-typography-display-2-font-weight,
    'line-height': $chirp-typography-display-2-line-height,
    'font-size': $chirp-typography-display-2-font-size,
    'letter-spacing': $chirp-typography-display-2-letter-spacing,
    'text-decoration': $chirp-typography-display-2-text-decoration,
    'text-case': $chirp-typography-display-2-text-case
  ),
  'display-3': (
    'font-family': $chirp-typography-display-3-font-family,
    'font-weight': $chirp-typography-display-3-font-weight,
    'line-height': $chirp-typography-display-3-line-height,
    'font-size': $chirp-typography-display-3-font-size,
    'letter-spacing': $chirp-typography-display-3-letter-spacing,
    'text-decoration': $chirp-typography-display-3-text-decoration,
    'text-case': $chirp-typography-display-3-text-case
  ),
  'display-4': (
    'font-family': $chirp-typography-display-4-font-family,
    'font-weight': $chirp-typography-display-4-font-weight,
    'line-height': $chirp-typography-display-4-line-height,
    'font-size': $chirp-typography-display-4-font-size,
    'letter-spacing': $chirp-typography-display-4-letter-spacing,
    'text-decoration': $chirp-typography-display-4-text-decoration,
    'text-case': $chirp-typography-display-4-text-case
  ),
  'display-5': (
    'font-family': $chirp-typography-display-5-font-family,
    'font-weight': $chirp-typography-display-5-font-weight,
    'line-height': $chirp-typography-display-5-line-height,
    'font-size': $chirp-typography-display-5-font-size,
    'letter-spacing': $chirp-typography-display-5-letter-spacing,
    'text-decoration': $chirp-typography-display-5-text-decoration,
    'text-case': $chirp-typography-display-5-text-case
  ),
  'display-6': (
    'font-family': $chirp-typography-display-6-font-family,
    'font-weight': $chirp-typography-display-6-font-weight,
    'line-height': $chirp-typography-display-6-line-height,
    'font-size': $chirp-typography-display-6-font-size,
    'letter-spacing': $chirp-typography-display-6-letter-spacing,
    'text-decoration': $chirp-typography-display-6-text-decoration,
    'text-case': $chirp-typography-display-6-text-case
  ),
  'section-1': (
    'font-family': $chirp-typography-section-1-font-family,
    'font-weight': $chirp-typography-section-1-font-weight,
    'line-height': $chirp-typography-section-1-line-height,
    'font-size': $chirp-typography-section-1-font-size,
    'letter-spacing': $chirp-typography-section-1-letter-spacing,
    'text-decoration': $chirp-typography-section-1-text-decoration,
    'text-case': $chirp-typography-section-1-text-case
  ),
  'section-2': (
    'font-family': $chirp-typography-section-2-font-family,
    'font-weight': $chirp-typography-section-2-font-weight,
    'line-height': $chirp-typography-section-2-line-height,
    'font-size': $chirp-typography-section-2-font-size,
    'letter-spacing': $chirp-typography-section-2-letter-spacing,
    'text-decoration': $chirp-typography-section-2-text-decoration,
    'text-case': $chirp-typography-section-2-text-case
  ),
  'section-3': (
    'font-family': $chirp-typography-section-3-font-family,
    'font-weight': $chirp-typography-section-3-font-weight,
    'line-height': $chirp-typography-section-3-line-height,
    'font-size': $chirp-typography-section-3-font-size,
    'letter-spacing': $chirp-typography-section-3-letter-spacing,
    'text-decoration': $chirp-typography-section-3-text-decoration,
    'text-case': $chirp-typography-section-3-text-case
  ),
  'editorial-p-1': (
    'font-family': $chirp-typography-editorial-p-1-font-family,
    'font-weight': $chirp-typography-editorial-p-1-font-weight,
    'line-height': $chirp-typography-editorial-p-1-line-height,
    'font-size': $chirp-typography-editorial-p-1-font-size,
    'letter-spacing': $chirp-typography-editorial-p-1-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-1-text-decoration,
    'text-case': $chirp-typography-editorial-p-1-text-case
  ),
  'editorial-p-2': (
    'font-family': $chirp-typography-editorial-p-2-font-family,
    'font-weight': $chirp-typography-editorial-p-2-font-weight,
    'line-height': $chirp-typography-editorial-p-2-line-height,
    'font-size': $chirp-typography-editorial-p-2-font-size,
    'letter-spacing': $chirp-typography-editorial-p-2-letter-spacing,
    'text-decoration': $chirp-typography-editorial-p-2-text-decoration,
    'text-case': $chirp-typography-editorial-p-2-text-case
  ),
  'paragraph-1': (
    'font-family': $chirp-typography-paragraph-1-font-family,
    'font-weight': $chirp-typography-paragraph-1-font-weight,
    'line-height': $chirp-typography-paragraph-1-line-height,
    'font-size': $chirp-typography-paragraph-1-font-size,
    'letter-spacing': $chirp-typography-paragraph-1-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-1-text-decoration,
    'text-case': $chirp-typography-paragraph-1-text-case
  ),
  'paragraph-2': (
    'font-family': $chirp-typography-paragraph-2-font-family,
    'font-weight': $chirp-typography-paragraph-2-font-weight,
    'line-height': $chirp-typography-paragraph-2-line-height,
    'font-size': $chirp-typography-paragraph-2-font-size,
    'letter-spacing': $chirp-typography-paragraph-2-letter-spacing,
    'text-decoration': $chirp-typography-paragraph-2-text-decoration,
    'text-case': $chirp-typography-paragraph-2-text-case
  ),
  'caption': (
    'font-family': $chirp-typography-caption-font-family,
    'font-weight': $chirp-typography-caption-font-weight,
    'line-height': $chirp-typography-caption-line-height,
    'font-size': $chirp-typography-caption-font-size,
    'letter-spacing': $chirp-typography-caption-letter-spacing,
    'text-decoration': $chirp-typography-caption-text-decoration,
    'text-case': $chirp-typography-caption-text-case
  ),
  'button': (
    'font-family': $chirp-typography-button-font-family,
    'font-weight': $chirp-typography-button-font-weight,
    'line-height': $chirp-typography-button-line-height,
    'font-size': $chirp-typography-button-font-size,
    'letter-spacing': $chirp-typography-button-letter-spacing,
    'text-decoration': $chirp-typography-button-text-decoration,
    'text-case': $chirp-typography-button-text-case
  ),
  'button-medium': (
    'font-family': $chirp-typography-button-medium-font-family,
    'font-weight': $chirp-typography-button-medium-font-weight,
    'line-height': $chirp-typography-button-medium-line-height,
    'font-size': $chirp-typography-button-medium-font-size,
    'letter-spacing': $chirp-typography-button-medium-letter-spacing,
    'text-decoration': $chirp-typography-button-medium-text-decoration,
    'text-case': $chirp-typography-button-medium-text-case
  ),
  'overline': (
    'font-family': $chirp-typography-overline-font-family,
    'font-weight': $chirp-typography-overline-font-weight,
    'line-height': $chirp-typography-overline-line-height,
    'font-size': $chirp-typography-overline-font-size,
    'letter-spacing': $chirp-typography-overline-letter-spacing,
    'text-decoration': $chirp-typography-overline-text-decoration,
    'text-case': $chirp-typography-overline-text-case
  ),
  'form-grouping': (
    'font-family': $chirp-typography-form-grouping-font-family,
    'font-weight': $chirp-typography-form-grouping-font-weight,
    'line-height': $chirp-typography-form-grouping-line-height,
    'font-size': $chirp-typography-form-grouping-font-size,
    'letter-spacing': $chirp-typography-form-grouping-letter-spacing,
    'text-decoration': $chirp-typography-form-grouping-text-decoration,
    'text-case': $chirp-typography-form-grouping-text-case
  ),
  'form-label': (
    'font-family': $chirp-typography-form-label-font-family,
    'font-weight': $chirp-typography-form-label-font-weight,
    'line-height': $chirp-typography-form-label-line-height,
    'font-size': $chirp-typography-form-label-font-size,
    'letter-spacing': $chirp-typography-form-label-letter-spacing,
    'text-decoration': $chirp-typography-form-label-text-decoration,
    'text-case': $chirp-typography-form-label-text-case
  ),
  'form-dropdown-header': (
    'font-family': $chirp-typography-form-dropdown-header-font-family,
    'font-weight': $chirp-typography-form-dropdown-header-font-weight,
    'line-height': $chirp-typography-form-dropdown-header-line-height,
    'font-size': $chirp-typography-form-dropdown-header-font-size,
    'letter-spacing': $chirp-typography-form-dropdown-header-letter-spacing,
    'text-decoration': $chirp-typography-form-dropdown-header-text-decoration,
    'text-case': $chirp-typography-form-dropdown-header-text-case,
    'font-style': $chirp-typography-form-dropdown-header-font-style
  ),
  'form-text': (
    'font-family': $chirp-typography-form-text-font-family,
    'font-weight': $chirp-typography-form-text-font-weight,
    'line-height': $chirp-typography-form-text-line-height,
    'font-size': $chirp-typography-form-text-font-size,
    'letter-spacing': $chirp-typography-form-text-letter-spacing,
    'text-decoration': $chirp-typography-form-text-text-decoration,
    'text-case': $chirp-typography-form-text-text-case
  ),
  'form-helper': (
    'font-family': $chirp-typography-form-helper-font-family,
    'font-weight': $chirp-typography-form-helper-font-weight,
    'line-height': $chirp-typography-form-helper-line-height,
    'font-size': $chirp-typography-form-helper-font-size,
    'letter-spacing': $chirp-typography-form-helper-letter-spacing,
    'text-decoration': $chirp-typography-form-helper-text-decoration,
    'text-case': $chirp-typography-form-helper-text-case
  ),
  'form-error': (
    'font-family': $chirp-typography-form-error-font-family,
    'font-weight': $chirp-typography-form-error-font-weight,
    'line-height': $chirp-typography-form-error-line-height,
    'font-size': $chirp-typography-form-error-font-size,
    'letter-spacing': $chirp-typography-form-error-letter-spacing,
    'text-decoration': $chirp-typography-form-error-text-decoration,
    'text-case': $chirp-typography-form-error-text-case
  ),
  'menu-heading': (
    'font-family': $chirp-typography-menu-heading-font-family,
    'font-weight': $chirp-typography-menu-heading-font-weight,
    'line-height': $chirp-typography-menu-heading-line-height,
    'font-size': $chirp-typography-menu-heading-font-size,
    'letter-spacing': $chirp-typography-menu-heading-letter-spacing,
    'text-decoration': $chirp-typography-menu-heading-text-decoration,
    'text-case': $chirp-typography-menu-heading-text-case
  ),
  'menu-sub-heading': (
    'font-family': $chirp-typography-menu-sub-heading-font-family,
    'font-weight': $chirp-typography-menu-sub-heading-font-weight,
    'font-size': $chirp-typography-menu-sub-heading-font-size,
    'letter-spacing': $chirp-typography-menu-sub-heading-letter-spacing,
    'text-decoration': $chirp-typography-menu-sub-heading-text-decoration,
    'text-case': $chirp-typography-menu-sub-heading-text-case,
    'line-height': $chirp-typography-menu-sub-heading-line-height
  ),
  'menu-text': (
    'font-family': $chirp-typography-menu-text-font-family,
    'font-weight': $chirp-typography-menu-text-font-weight,
    'font-size': $chirp-typography-menu-text-font-size,
    'letter-spacing': $chirp-typography-menu-text-letter-spacing,
    'text-decoration': $chirp-typography-menu-text-text-decoration,
    'text-case': $chirp-typography-menu-text-text-case,
    'line-height': $chirp-typography-menu-text-line-height
  ),
  'utility-small': (
    'font-family': $chirp-typography-utility-small-font-family,
    'font-weight': $chirp-typography-utility-small-font-weight,
    'line-height': $chirp-typography-utility-small-line-height,
    'font-size': $chirp-typography-utility-small-font-size,
    'letter-spacing': $chirp-typography-utility-small-letter-spacing,
    'text-decoration': $chirp-typography-utility-small-text-decoration,
    'text-case': $chirp-typography-utility-small-text-case
  ),
  'utility-1': (
    'font-weight': $chirp-typography-utility-1-font-weight,
    'line-height': $chirp-typography-utility-1-line-height,
    'font-size': $chirp-typography-utility-1-font-size,
    'letter-spacing': $chirp-typography-utility-1-letter-spacing,
    'font-family': $chirp-typography-utility-1-font-family,
    'text-decoration': $chirp-typography-utility-1-text-decoration,
    'text-case': $chirp-typography-utility-1-text-case
  ),
  'utility-2': (
    'font-weight': $chirp-typography-utility-2-font-weight,
    'line-height': $chirp-typography-utility-2-line-height,
    'font-size': $chirp-typography-utility-2-font-size,
    'letter-spacing': $chirp-typography-utility-2-letter-spacing,
    'font-family': $chirp-typography-utility-2-font-family,
    'text-decoration': $chirp-typography-utility-2-text-decoration,
    'text-case': $chirp-typography-utility-2-text-case
  ),
  'utility-3': (
    'font-weight': $chirp-typography-utility-3-font-weight,
    'line-height': $chirp-typography-utility-3-line-height,
    'font-size': $chirp-typography-utility-3-font-size,
    'letter-spacing': $chirp-typography-utility-3-letter-spacing,
    'font-family': $chirp-typography-utility-3-font-family,
    'text-decoration': $chirp-typography-utility-3-text-decoration,
    'text-case': $chirp-typography-utility-3-text-case
  ),
  'utility-4': (
    'font-weight': $chirp-typography-utility-4-font-weight,
    'line-height': $chirp-typography-utility-4-line-height,
    'font-size': $chirp-typography-utility-4-font-size,
    'letter-spacing': $chirp-typography-utility-4-letter-spacing,
    'font-family': $chirp-typography-utility-4-font-family,
    'text-decoration': $chirp-typography-utility-4-text-decoration,
    'text-case': $chirp-typography-utility-4-text-case
  ),
  'utility-5': (
    'font-weight': $chirp-typography-utility-5-font-weight,
    'line-height': $chirp-typography-utility-5-line-height,
    'font-size': $chirp-typography-utility-5-font-size,
    'letter-spacing': $chirp-typography-utility-5-letter-spacing,
    'font-family': $chirp-typography-utility-5-font-family,
    'text-decoration': $chirp-typography-utility-5-text-decoration,
    'text-case': $chirp-typography-utility-5-text-case
  ),
  'utility-6': (
    'font-weight': $chirp-typography-utility-6-font-weight,
    'line-height': $chirp-typography-utility-6-line-height,
    'font-size': $chirp-typography-utility-6-font-size,
    'letter-spacing': $chirp-typography-utility-6-letter-spacing,
    'font-family': $chirp-typography-utility-6-font-family,
    'text-decoration': $chirp-typography-utility-6-text-decoration,
    'text-case': $chirp-typography-utility-6-text-case
  ),
  'utility-7': (
    'font-weight': $chirp-typography-utility-7-font-weight,
    'line-height': $chirp-typography-utility-7-line-height,
    'font-size': $chirp-typography-utility-7-font-size,
    'letter-spacing': $chirp-typography-utility-7-letter-spacing,
    'font-family': $chirp-typography-utility-7-font-family,
    'text-decoration': $chirp-typography-utility-7-text-decoration,
    'text-case': $chirp-typography-utility-7-text-case
  ),
  'utility-1-open-caps': (
    'font-weight': $chirp-typography-utility-1-open-caps-font-weight,
    'line-height': $chirp-typography-utility-1-open-caps-line-height,
    'font-size': $chirp-typography-utility-1-open-caps-font-size,
    'letter-spacing': $chirp-typography-utility-1-open-caps-letter-spacing,
    'font-family': $chirp-typography-utility-1-open-caps-font-family,
    'text-decoration': $chirp-typography-utility-1-open-caps-text-decoration,
    'text-case': $chirp-typography-utility-1-open-caps-text-case
  ),
  'utility-3-display': (
    'font-weight': $chirp-typography-utility-3-display-font-weight,
    'line-height': $chirp-typography-utility-3-display-line-height,
    'font-size': $chirp-typography-utility-3-display-font-size,
    'letter-spacing': $chirp-typography-utility-3-display-letter-spacing,
    'font-family': $chirp-typography-utility-3-display-font-family,
    'text-decoration': $chirp-typography-utility-3-display-text-decoration,
    'text-case': $chirp-typography-utility-3-display-text-case
  ),
  'utility-4-display': (
    'font-weight': $chirp-typography-utility-4-display-font-weight,
    'line-height': $chirp-typography-utility-4-display-line-height,
    'font-size': $chirp-typography-utility-4-display-font-size,
    'letter-spacing': $chirp-typography-utility-4-display-letter-spacing,
    'font-family': $chirp-typography-utility-4-display-font-family,
    'text-decoration': $chirp-typography-utility-4-display-text-decoration,
    'text-case': $chirp-typography-utility-4-display-text-case
  ),
  'utility-5-display': (
    'font-weight': $chirp-typography-utility-5-display-font-weight,
    'line-height': $chirp-typography-utility-5-display-line-height,
    'font-size': $chirp-typography-utility-5-display-font-size,
    'letter-spacing': $chirp-typography-utility-5-display-letter-spacing,
    'font-family': $chirp-typography-utility-5-display-font-family,
    'text-decoration': $chirp-typography-utility-5-display-text-decoration,
    'text-case': $chirp-typography-utility-5-display-text-case
  ),
  'utility-6-display': (
    'font-weight': $chirp-typography-utility-6-display-font-weight,
    'line-height': $chirp-typography-utility-6-display-line-height,
    'font-size': $chirp-typography-utility-6-display-font-size,
    'letter-spacing': $chirp-typography-utility-6-display-letter-spacing,
    'font-family': $chirp-typography-utility-6-display-font-family,
    'text-decoration': $chirp-typography-utility-6-display-text-decoration,
    'text-case': $chirp-typography-utility-6-display-text-case
  ),
  'utility-7-display': (
    'font-weight': $chirp-typography-utility-7-display-font-weight,
    'line-height': $chirp-typography-utility-7-display-line-height,
    'font-size': $chirp-typography-utility-7-display-font-size,
    'letter-spacing': $chirp-typography-utility-7-display-letter-spacing,
    'font-family': $chirp-typography-utility-7-display-font-family,
    'text-decoration': $chirp-typography-utility-7-display-text-decoration,
    'text-case': $chirp-typography-utility-7-display-text-case
  ),
  'utility': (
    'font-family': $chirp-typography-utility-font-family,
    'font-weight': $chirp-typography-utility-font-weight,
    'line-height': $chirp-typography-utility-line-height,
    'font-size': $chirp-typography-utility-font-size,
    'letter-spacing': $chirp-typography-utility-letter-spacing,
    'text-decoration': $chirp-typography-utility-text-decoration,
    'text-case': $chirp-typography-utility-text-case
  ),
  'deprecated': (
    'display-1': (
      'font-family': $chirp-typography-deprecated-display-1-font-family,
      'font-weight': $chirp-typography-deprecated-display-1-font-weight,
      'line-height': $chirp-typography-deprecated-display-1-line-height,
      'font-size': $chirp-typography-deprecated-display-1-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-1-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-1-text-decoration,
      'text-case': $chirp-typography-deprecated-display-1-text-case
    ),
    'display-2': (
      'font-family': $chirp-typography-deprecated-display-2-font-family,
      'font-weight': $chirp-typography-deprecated-display-2-font-weight,
      'line-height': $chirp-typography-deprecated-display-2-line-height,
      'font-size': $chirp-typography-deprecated-display-2-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-2-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-2-text-decoration,
      'text-case': $chirp-typography-deprecated-display-2-text-case
    ),
    'display-3': (
      'font-family': $chirp-typography-deprecated-display-3-font-family,
      'font-weight': $chirp-typography-deprecated-display-3-font-weight,
      'line-height': $chirp-typography-deprecated-display-3-line-height,
      'font-size': $chirp-typography-deprecated-display-3-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-3-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-3-text-decoration,
      'text-case': $chirp-typography-deprecated-display-3-text-case
    ),
    'display-4': (
      'font-family': $chirp-typography-deprecated-display-4-font-family,
      'font-weight': $chirp-typography-deprecated-display-4-font-weight,
      'line-height': $chirp-typography-deprecated-display-4-line-height,
      'font-size': $chirp-typography-deprecated-display-4-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-4-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-4-text-decoration,
      'text-case': $chirp-typography-deprecated-display-4-text-case
    ),
    'display-5': (
      'font-family': $chirp-typography-deprecated-display-5-font-family,
      'font-weight': $chirp-typography-deprecated-display-5-font-weight,
      'line-height': $chirp-typography-deprecated-display-5-line-height,
      'font-size': $chirp-typography-deprecated-display-5-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-5-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-5-text-decoration,
      'text-case': $chirp-typography-deprecated-display-5-text-case
    ),
    'display-6': (
      'font-family': $chirp-typography-deprecated-display-6-font-family,
      'font-weight': $chirp-typography-deprecated-display-6-font-weight,
      'line-height': $chirp-typography-deprecated-display-6-line-height,
      'font-size': $chirp-typography-deprecated-display-6-font-size,
      'letter-spacing': $chirp-typography-deprecated-display-6-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-display-6-text-decoration,
      'text-case': $chirp-typography-deprecated-display-6-text-case
    ),
    'section-1': (
      'font-family': $chirp-typography-deprecated-section-1-font-family,
      'font-weight': $chirp-typography-deprecated-section-1-font-weight,
      'line-height': $chirp-typography-deprecated-section-1-line-height,
      'font-size': $chirp-typography-deprecated-section-1-font-size,
      'letter-spacing': $chirp-typography-deprecated-section-1-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-section-1-text-decoration,
      'text-case': $chirp-typography-deprecated-section-1-text-case
    ),
    'section-2': (
      'font-family': $chirp-typography-deprecated-section-2-font-family,
      'font-weight': $chirp-typography-deprecated-section-2-font-weight,
      'line-height': $chirp-typography-deprecated-section-2-line-height,
      'font-size': $chirp-typography-deprecated-section-2-font-size,
      'letter-spacing': $chirp-typography-deprecated-section-2-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-section-2-text-decoration,
      'text-case': $chirp-typography-deprecated-section-2-text-case
    ),
    'paragraph-1': (
      'font-family': $chirp-typography-deprecated-paragraph-1-font-family,
      'font-weight': $chirp-typography-deprecated-paragraph-1-font-weight,
      'line-height': $chirp-typography-deprecated-paragraph-1-line-height,
      'font-size': $chirp-typography-deprecated-paragraph-1-font-size,
      'letter-spacing': $chirp-typography-deprecated-paragraph-1-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-paragraph-1-text-decoration,
      'text-case': $chirp-typography-deprecated-paragraph-1-text-case
    ),
    'paragraph-2': (
      'font-family': $chirp-typography-deprecated-paragraph-2-font-family,
      'font-weight': $chirp-typography-deprecated-paragraph-2-font-weight,
      'line-height': $chirp-typography-deprecated-paragraph-2-line-height,
      'font-size': $chirp-typography-deprecated-paragraph-2-font-size,
      'letter-spacing': $chirp-typography-deprecated-paragraph-2-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-paragraph-2-text-decoration,
      'text-case': $chirp-typography-deprecated-paragraph-2-text-case
    ),
    'caption': (
      'font-family': $chirp-typography-deprecated-caption-font-family,
      'font-weight': $chirp-typography-deprecated-caption-font-weight,
      'line-height': $chirp-typography-deprecated-caption-line-height,
      'font-size': $chirp-typography-deprecated-caption-font-size,
      'letter-spacing': $chirp-typography-deprecated-caption-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-caption-text-decoration,
      'text-case': $chirp-typography-deprecated-caption-text-case
    ),
    'button': (
      'font-family': $chirp-typography-deprecated-button-font-family,
      'font-weight': $chirp-typography-deprecated-button-font-weight,
      'line-height': $chirp-typography-deprecated-button-line-height,
      'font-size': $chirp-typography-deprecated-button-font-size,
      'letter-spacing': $chirp-typography-deprecated-button-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-button-text-decoration,
      'text-case': $chirp-typography-deprecated-button-text-case
    ),
    'overline': (
      'font-family': $chirp-typography-deprecated-overline-font-family,
      'font-weight': $chirp-typography-deprecated-overline-font-weight,
      'line-height': $chirp-typography-deprecated-overline-line-height,
      'font-size': $chirp-typography-deprecated-overline-font-size,
      'letter-spacing': $chirp-typography-deprecated-overline-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-overline-text-decoration,
      'text-case': $chirp-typography-deprecated-overline-text-case
    ),
    'hero-1': (
      'font-family': $chirp-typography-deprecated-hero-1-font-family,
      'font-weight': $chirp-typography-deprecated-hero-1-font-weight,
      'line-height': $chirp-typography-deprecated-hero-1-line-height,
      'font-size': $chirp-typography-deprecated-hero-1-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-1-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-1-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-1-text-case
    ),
    'hero-2': (
      'font-family': $chirp-typography-deprecated-hero-2-font-family,
      'font-weight': $chirp-typography-deprecated-hero-2-font-weight,
      'line-height': $chirp-typography-deprecated-hero-2-line-height,
      'font-size': $chirp-typography-deprecated-hero-2-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-2-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-2-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-2-text-case
    ),
    'hero-3': (
      'font-family': $chirp-typography-deprecated-hero-3-font-family,
      'font-weight': $chirp-typography-deprecated-hero-3-font-weight,
      'line-height': $chirp-typography-deprecated-hero-3-line-height,
      'font-size': $chirp-typography-deprecated-hero-3-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-3-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-3-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-3-text-case
    ),
    'hero-4': (
      'font-family': $chirp-typography-deprecated-hero-4-font-family,
      'font-weight': $chirp-typography-deprecated-hero-4-font-weight,
      'line-height': $chirp-typography-deprecated-hero-4-line-height,
      'font-size': $chirp-typography-deprecated-hero-4-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-4-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-4-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-4-text-case
    ),
    'hero-1-alternate': (
      'font-family': $chirp-typography-deprecated-hero-1-alternate-font-family,
      'font-weight': $chirp-typography-deprecated-hero-1-alternate-font-weight,
      'line-height': $chirp-typography-deprecated-hero-1-alternate-line-height,
      'font-size': $chirp-typography-deprecated-hero-1-alternate-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-1-alternate-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-1-alternate-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-1-alternate-text-case
    ),
    'hero-2-alternate': (
      'font-family': $chirp-typography-deprecated-hero-2-alternate-font-family,
      'font-weight': $chirp-typography-deprecated-hero-2-alternate-font-weight,
      'line-height': $chirp-typography-deprecated-hero-2-alternate-line-height,
      'font-size': $chirp-typography-deprecated-hero-2-alternate-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-2-alternate-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-2-alternate-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-2-alternate-text-case
    ),
    'hero-3-alternate': (
      'font-family': $chirp-typography-deprecated-hero-3-alternate-font-family,
      'font-weight': $chirp-typography-deprecated-hero-3-alternate-font-weight,
      'line-height': $chirp-typography-deprecated-hero-3-alternate-line-height,
      'font-size': $chirp-typography-deprecated-hero-3-alternate-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-3-alternate-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-3-alternate-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-3-alternate-text-case
    ),
    'hero-4-alternate': (
      'font-family': $chirp-typography-deprecated-hero-4-alternate-font-family,
      'font-weight': $chirp-typography-deprecated-hero-4-alternate-font-weight,
      'line-height': $chirp-typography-deprecated-hero-4-alternate-line-height,
      'font-size': $chirp-typography-deprecated-hero-4-alternate-font-size,
      'letter-spacing': $chirp-typography-deprecated-hero-4-alternate-letter-spacing,
      'text-decoration': $chirp-typography-deprecated-hero-4-alternate-text-decoration,
      'text-case': $chirp-typography-deprecated-hero-4-alternate-text-case
    )
  )
);
Description

Modified 'scss/map-deep' template to output custom properties for properties that have references

Functions

-get-spacing-value

@function -get-spacing-value($theme: common.$default-theme, $alias) { ... }@function -get-spacing-value($theme: common.$default-theme, $alias) { 
  $spacings: common.get-theme-map(settings.$themes, $theme);
  $has-key: map.has-key($spacings, $alias);

  @if $has-key == false {
    @error "Spacing not found: '#{$alias}'";
  }

  $value: map.get($spacings, $alias);

  @return unit.rem($value);
 }
Description

Retrieves a spacing unit from a theme's spacing tokens

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$theme

Name of the theme

Stringcommon.$default-theme
$alias

Alias of spacing unit

String none
Returns
Number

Spacing value from the theme

Throws
  • Spacing not found:

Requires
Used by

get-properties

@function get-properties($theme: common.$default-theme) { ... }@function get-properties($theme: common.$default-theme) { 
  $theme-map: common.get-theme-map(settings.$themes, $theme);

  @each $key, $value in $theme-map {
    $theme-map: map.set($theme-map, 'spacing', $key, unit.rem($value));
  }

  @return common.flatten-map($theme-map);
 }
Description

Returns a theme's spacings as a flattened map with kebab-cased names

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$theme

Name of the theme

Stringcommon.$default-theme
Returns
Map

Final flattened map

Requires

get

@function get($spacings...) { ... }@function get($spacings...) { 
  $properties: ();

  @each $value in $spacings {
    @if meta.type-of($value) == number or $value == auto {
      $properties: list.append($properties, $value);
    } @else {
      $property: common.get-property-name('spacing', $value);
      $fallback: -get-spacing-value(common.$default-theme, $value);
      $properties: list.append($properties, var(#{$property}, #{$fallback}));
    }
  }

  // Return the plain value if it's just one. If a list with just one
  // value is returned, type functions will return `list` instead of `string`.
  @if list.length($properties) == 1 {
    @return list.nth($properties, 1);
  }

  @return $properties;
 }
Description

Creates a custom property reference from a list of spacing aliases. Number values and auto are allowed for convenience when writing complex shorthand padding or margin properties.

Parameters
Parameters
parameter Nameparameter Descriptionparameter Typeparameter Default value
$spacings...

Comma separated list of spacing units from a theme. Numbers and auto are also valid.

List none
Returns
List

List of CSS var() function with fallback values

Example

Basic usage

@use '~@chewy/kib-foundations/src/spacing';

.example {
  padding-right: spacing.get('s4');
}

.example-margin {
  margin: spacing.get('s2', auto);
}

.example-padding {
  padding: spacing.get('s3', 0, 's7');
}
Requires