toolkit/themes/shared/design-system/tokens-brand.css

Propagation: No Props Found

Back to Home
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* DO NOT EDIT this file directly, instead modify design-tokens.json
 * and run `npm run build` to see your changes. */

@import url("chrome://global/skin/design-system/tokens-shared.css");

@layer tokens-foundation {
  :root,
  :host(.anonymous-content-host) {
    /** Attention Dot **/
    --attention-dot-color: light-dark(#2ac3a2, #54ffbd);

    /** Background Color **/
    --background-color-canvas: light-dark(var(--color-white), var(--color-gray-90));

    /** Border **/
    --border-color: light-dark(var(--color-gray-50), var(--color-gray-70));
    --border-color-deemphasized: light-dark(var(--color-gray-30), var(--color-gray-70));
    --border-color-interactive: light-dark(var(--color-gray-60), var(--color-gray-50));

    /** Button **/
    --button-background-color: color-mix(in srgb, currentColor 7%, transparent); /* TODO Bug 1821203 - Gray use needs to be consolidated */
    --button-background-color-hover: color-mix(in srgb, currentColor 14%, transparent);
    --button-background-color-active: color-mix(in srgb, currentColor 21%, transparent);
    --button-text-color: light-dark(var(--color-gray-100), var(--color-gray-05));
    --button-text-color-primary: light-dark(var(--color-white), var(--color-gray-100));

    /** Color **/
    --color-accent-primary: light-dark(var(--color-blue-60), var(--color-cyan-30));
    --color-accent-primary-hover: light-dark(var(--color-blue-70), var(--color-cyan-20));
    --color-accent-primary-active: light-dark(var(--color-blue-80), var(--color-cyan-10));

    /** Font Size **/
    --font-size-root: 15px;
    --font-size-xsmall: 0.733rem; /* 11px / Note this token is to be used in rare cases because its hard to read. Please consult with the Design Systems and A11y teams for case-by-case feedback. */
    --font-size-small: 0.867rem; /* 13px */
    --font-size-large: 1.133rem; /* 17px */
    --font-size-xlarge: 1.467rem; /* 22px */
    --font-size-xxlarge: 1.6rem; /* 24px */

    /** Link **/
    --link-color: var(--color-accent-primary);
    --link-color-hover: var(--color-accent-primary-hover);
    --link-color-active: var(--color-accent-primary-active);
    --link-color-visited: var(--link-color);

    /** Page **/
    --page-main-content-width: 664px;

    /** Table Row **/
    --table-row-background-color-alternate: light-dark(#f0f0f4, var(--color-gray-80)); /* TODO Bug 1821203 - Gray use needs to be consolidated */

    /** Text **/
    --text-color: light-dark(var(--color-gray-100), var(--color-gray-05));
  }
}

/* Bug 1879900: Can't nest media queries inside of :host, :root selector
   until Bug 1879349 lands */
@layer tokens-prefers-contrast {
  @media (prefers-contrast) {
    :root,
    :host(.anonymous-content-host) {
      /** Button **/
      --button-text-color-ghost: var(--button-text-color);
      --button-text-color-ghost-disabled: var(--button-text-color-disabled);
    }
  }
}

/* Bug 1879900: Can't nest media queries inside of :host, :root selector
   until Bug 1879349 lands */
@layer tokens-forced-colors {
  @media (forced-colors) {
    :root,
    :host(.anonymous-content-host) {
      /** Button **/
      --button-background-color-ghost: var(--button-background-color);
      --button-background-color-ghost-disabled: var(--button-background-color-disabled);
      --button-text-color-ghost: var(--button-text-color);
      --button-text-color-ghost-disabled: var(--button-text-color-disabled);
    }
  }
}
Back to Home