@esri/calcite-design-tokens 4.0.0-next.16 → 4.0.0-next.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/dark.css +22 -22
- package/dist/css/index.css +110 -110
- package/dist/css/light.css +22 -22
- package/dist/docs/core.json +1 -1
- package/dist/docs/dark.json +427 -433
- package/dist/docs/global.json +427 -433
- package/dist/docs/light.json +427 -433
- package/dist/docs/semantic.json +1 -1
- package/dist/es6/dark.d.ts +22 -22
- package/dist/es6/dark.js +22 -22
- package/dist/es6/global.d.ts +28 -28
- package/dist/es6/global.js +44 -44
- package/dist/es6/light.d.ts +22 -22
- package/dist/es6/light.js +22 -22
- package/dist/scss/dark.scss +22 -22
- package/dist/scss/index.scss +44 -44
- package/dist/scss/light.scss +22 -22
- package/package.json +2 -2
package/dist/scss/light.scss
CHANGED
|
@@ -13,17 +13,25 @@ $calcite-color-foreground-1: #ffffff; // Deprecated, use `--calcite-color-surfac
|
|
|
13
13
|
$calcite-color-foreground-2: #f2f2f2; // Deprecated, use `--calcite-color-surface-3` instead
|
|
14
14
|
$calcite-color-foreground-3: #ebebeb; // Deprecated, use `--calcite-color-surface-4` instead
|
|
15
15
|
$calcite-color-foreground-current: #d6efff; // deprecated, use --calcite-color-surface-highlight instead
|
|
16
|
-
$calcite-color-
|
|
17
|
-
$calcite-color-
|
|
18
|
-
$calcite-color-
|
|
19
|
-
$calcite-color-
|
|
20
|
-
$calcite-color-
|
|
21
|
-
$calcite-color-
|
|
22
|
-
$calcite-color-
|
|
16
|
+
$calcite-color-text-1: #141414;
|
|
17
|
+
$calcite-color-text-2: #4a4a4a;
|
|
18
|
+
$calcite-color-text-3: #6b6b6b;
|
|
19
|
+
$calcite-color-text-inverse: #ffffff;
|
|
20
|
+
$calcite-color-text-link: #00619b;
|
|
21
|
+
$calcite-color-text-highlight: #004874;
|
|
22
|
+
$calcite-color-border-1: #d4d4d4;
|
|
23
|
+
$calcite-color-border-2: #dedede;
|
|
24
|
+
$calcite-color-border-3: #ebebeb;
|
|
25
|
+
$calcite-color-border-input: #949494;
|
|
26
|
+
$calcite-color-border-ghost: rgba(0, 0, 0, 0.3);
|
|
27
|
+
$calcite-color-border-white: #ffffff;
|
|
23
28
|
$calcite-color-brand: #007ac2;
|
|
24
29
|
$calcite-color-brand-hover: #00619b;
|
|
25
30
|
$calcite-color-brand-press: #004874;
|
|
26
31
|
$calcite-color-brand-underline: rgba(0, 97, 155, 0.4);
|
|
32
|
+
$calcite-color-inverse: #363636;
|
|
33
|
+
$calcite-color-inverse-hover: #2b2b2b;
|
|
34
|
+
$calcite-color-inverse-press: #212121;
|
|
27
35
|
$calcite-color-status-info: #00619b;
|
|
28
36
|
$calcite-color-status-info-hover: #004874;
|
|
29
37
|
$calcite-color-status-info-press: #00304d;
|
|
@@ -36,19 +44,11 @@ $calcite-color-status-warning-press: #9a5b10;
|
|
|
36
44
|
$calcite-color-status-danger: #d83020;
|
|
37
45
|
$calcite-color-status-danger-hover: #a82b1e;
|
|
38
46
|
$calcite-color-status-danger-press: #7c1d13;
|
|
39
|
-
$calcite-color-
|
|
40
|
-
$calcite-color-
|
|
41
|
-
$calcite-color-
|
|
42
|
-
$calcite-color-
|
|
43
|
-
$calcite-color-
|
|
44
|
-
$calcite-color-
|
|
45
|
-
$calcite-color-
|
|
46
|
-
$calcite-color-text-inverse: #ffffff;
|
|
47
|
-
$calcite-color-text-link: #00619b;
|
|
48
|
-
$calcite-color-border-1: #d4d4d4;
|
|
49
|
-
$calcite-color-border-2: #dedede;
|
|
50
|
-
$calcite-color-border-3: #ebebeb;
|
|
51
|
-
$calcite-color-border-input: #949494;
|
|
52
|
-
$calcite-color-border-ghost: rgba(0, 0, 0, 0.3);
|
|
53
|
-
$calcite-color-border-white: #ffffff;
|
|
47
|
+
$calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
48
|
+
$calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
49
|
+
$calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
50
|
+
$calcite-color-transparent-scrim: rgba(255, 255, 255, 0.85);
|
|
51
|
+
$calcite-color-transparent-tint: rgba(255, 255, 255, 0.8);
|
|
52
|
+
$calcite-color-transparent-inverse-hover: rgba(255, 255, 255, 0.12);
|
|
53
|
+
$calcite-color-transparent-inverse-press: rgba(255, 255, 255, 0.16);
|
|
54
54
|
$calcite-color-focus: $calcite-color-brand;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-design-tokens",
|
|
3
|
-
"version": "4.0.0-next.
|
|
3
|
+
"version": "4.0.0-next.17",
|
|
4
4
|
"description": "Esri's Calcite Design System Tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Calcite",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"vitest": "4.0.16"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "063dde69c93493bed07dd01c957e1b9d8f7dab3b"
|
|
51
51
|
}
|