/* 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-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-gray-05), var(--color-gray-100)); /** Color **/ --color-accent-primary: light-dark(var(--color-blue-50), var(--color-cyan-50)); --color-accent-primary-hover: light-dark(var(--color-blue-60), var(--color-cyan-30)); --color-accent-primary-active: light-dark(var(--color-blue-70), var(--color-cyan-20)); /** Font Size **/ --font-size-root: 15px; --font-size-small: 0.867rem; --font-size-large: 1.133rem; --font-size-xlarge: 1.467rem; --font-size-xxlarge: 1.6rem; /** 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); /** Text **/ --text-color: light-dark(var(--color-gray-100), var(--color-gray-05)); } }