blob: d3a48f804787ec9aac28d5f37b369d26523c8320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* 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: AccentColor;
/** Background Color **/
--background-color-canvas: Canvas;
/** Border **/
--border-color-interactive: color-mix(in srgb, currentColor 15%, var(--color-gray-60));
/** Button **/
--button-background-color: var(--button-bgcolor); /* TODO Bug 1821203 - Gray use needs to be consolidated */
--button-background-color-hover: var(--button-hover-bgcolor);
--button-background-color-active: var(--button-active-bgcolor);
--button-text-color: var(--button-color);
--button-text-color-primary: var(--button-primary-color);
/** Color **/
--color-accent-primary: var(--button-primary-bgcolor, AccentColor);
--color-accent-primary-hover: var(--button-primary-hover-bgcolor);
--color-accent-primary-active: var(--button-primary-active-bgcolor);
/** Font Size **/
--font-size-root: unset;
--font-size-small: unset;
--font-size-large: unset;
--font-size-xlarge: unset;
--font-size-xxlarge: unset;
/** Link **/
--link-color: LinkText;
--link-color-hover: LinkText;
--link-color-active: ActiveText;
--link-color-visited: var(--link-color);
/** Text **/
--text-color: currentColor;
}
}
|