@esri/calcite-design-tokens 3.0.2-next.0 → 3.0.2-next.1
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/{breakpoint.css → breakpoints.css} +21 -21
- package/dist/css/classes.css +157 -157
- package/dist/css/core.css +313 -317
- package/dist/css/dark.css +40 -40
- package/dist/css/global.css +108 -111
- package/dist/css/index.css +5 -5
- package/dist/css/light.css +41 -41
- package/dist/css/semantic.css +137 -0
- package/dist/docs/core.json +3143 -5334
- package/dist/docs/global.json +2375 -3570
- package/dist/docs/semantic.json +3767 -0
- package/dist/es6/breakpoints.d.ts +50 -0
- package/dist/es6/breakpoints.js +17 -0
- package/dist/es6/core.d.ts +344 -333
- package/dist/es6/core.js +37 -7
- package/dist/es6/global.d.ts +472 -273
- package/dist/es6/global.js +392 -115
- package/dist/es6/semantic.d.ts +175 -0
- package/dist/es6/semantic.js +154 -0
- package/dist/js/core.d.ts +396 -402
- package/dist/js/core.js +2901 -5404
- package/dist/js/global.d.ts +338 -343
- package/dist/js/global.js +2324 -3676
- package/dist/js/semantic.d.ts +199 -0
- package/dist/js/semantic.js +6894 -0
- package/dist/scss/breakpoints.scss +23 -23
- package/dist/scss/core.scss +314 -316
- package/dist/scss/dark.scss +41 -42
- package/dist/scss/global.scss +110 -116
- package/dist/scss/index.scss +4 -4
- package/dist/scss/light.scss +42 -43
- package/dist/scss/mixins.scss +190 -151
- package/dist/scss/semantic.scss +134 -0
- package/package.json +8 -5
package/dist/scss/dark.scss
CHANGED
|
@@ -1,45 +1,44 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 28 Mar 2025 22:09:10 GMT
|
|
4
|
-
*/
|
|
5
1
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
$calcite-color-border-3: #404040;
|
|
10
|
-
$calcite-color-border-2: #4a4a4a;
|
|
11
|
-
$calcite-color-border-1: #555555;
|
|
12
|
-
$calcite-color-text-link: #00a0ff;
|
|
13
|
-
$calcite-color-text-inverse: #151515;
|
|
14
|
-
$calcite-color-text-3: #9f9f9f;
|
|
15
|
-
$calcite-color-text-2: #bfbfbf;
|
|
16
|
-
$calcite-color-text-1: #ffffff;
|
|
17
|
-
$calcite-color-inverse-press: #f3f3f3;
|
|
18
|
-
$calcite-color-inverse-hover: #ffffff;
|
|
19
|
-
$calcite-color-inverse: #f8f8f8;
|
|
20
|
-
$calcite-color-status-danger-press: #d90012;
|
|
21
|
-
$calcite-color-status-danger-hover: #ff0015;
|
|
22
|
-
$calcite-color-status-danger: #fe583e;
|
|
23
|
-
$calcite-color-status-warning-press: #f5d000;
|
|
24
|
-
$calcite-color-status-warning-hover: #ffee33;
|
|
25
|
-
$calcite-color-status-warning: #ffc900;
|
|
26
|
-
$calcite-color-status-success-press: #00b81b;
|
|
27
|
-
$calcite-color-status-success-hover: #3bed52;
|
|
28
|
-
$calcite-color-status-success: #36da43;
|
|
29
|
-
$calcite-color-status-info-press: #009af2;
|
|
30
|
-
$calcite-color-status-info-hover: #3db8ff;
|
|
31
|
-
$calcite-color-status-info: #00a0ff;
|
|
32
|
-
$calcite-color-brand-underline: rgba(0, 160, 255, 0.4);
|
|
33
|
-
$calcite-color-brand-press: #00619b;
|
|
34
|
-
$calcite-color-brand-hover: #007ac2;
|
|
35
|
-
$calcite-color-brand: #009af2;
|
|
36
|
-
$calcite-color-transparent-tint: rgba(43, 43, 43, 0.8);
|
|
37
|
-
$calcite-color-transparent-scrim: rgba(0, 0, 0, 0.85);
|
|
38
|
-
$calcite-color-transparent-press: rgba(255, 255, 255, 0.08);
|
|
39
|
-
$calcite-color-transparent-hover: rgba(255, 255, 255, 0.04);
|
|
40
|
-
$calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
2
|
+
// Calcite Design System
|
|
3
|
+
// Do not edit directly, this file was auto-generated.
|
|
4
|
+
|
|
41
5
|
$calcite-color-foreground-current: #214155;
|
|
42
|
-
$calcite-color-foreground-3: #151515;
|
|
43
|
-
$calcite-color-foreground-2: #202020;
|
|
44
|
-
$calcite-color-foreground-1: #2b2b2b;
|
|
45
6
|
$calcite-color-background: #353535;
|
|
7
|
+
$calcite-color-foreground-1: #2b2b2b;
|
|
8
|
+
$calcite-color-foreground-2: #202020;
|
|
9
|
+
$calcite-color-foreground-3: #151515;
|
|
10
|
+
$calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
11
|
+
$calcite-color-transparent-hover: rgba(255, 255, 255, 0.04);
|
|
12
|
+
$calcite-color-transparent-press: rgba(255, 255, 255, 0.08);
|
|
13
|
+
$calcite-color-transparent-scrim: rgba(0, 0, 0, 0.85);
|
|
14
|
+
$calcite-color-transparent-tint: rgba(43, 43, 43, 0.8);
|
|
15
|
+
$calcite-color-brand: #009af2;
|
|
16
|
+
$calcite-color-brand-hover: #007ac2;
|
|
17
|
+
$calcite-color-brand-press: #00619b;
|
|
18
|
+
$calcite-color-brand-underline: rgba(0, 160, 255, 0.4);
|
|
19
|
+
$calcite-color-status-info: #00a0ff;
|
|
20
|
+
$calcite-color-status-info-hover: #3db8ff;
|
|
21
|
+
$calcite-color-status-info-press: #009af2;
|
|
22
|
+
$calcite-color-status-success: #36da43;
|
|
23
|
+
$calcite-color-status-success-hover: #3bed52;
|
|
24
|
+
$calcite-color-status-success-press: #00b81b;
|
|
25
|
+
$calcite-color-status-warning: #ffc900;
|
|
26
|
+
$calcite-color-status-warning-hover: #ffee33;
|
|
27
|
+
$calcite-color-status-warning-press: #f5d000;
|
|
28
|
+
$calcite-color-status-danger: #fe583e;
|
|
29
|
+
$calcite-color-status-danger-hover: #ff0015;
|
|
30
|
+
$calcite-color-status-danger-press: #d90012;
|
|
31
|
+
$calcite-color-inverse: #f8f8f8;
|
|
32
|
+
$calcite-color-inverse-hover: #ffffff;
|
|
33
|
+
$calcite-color-inverse-press: #f3f3f3;
|
|
34
|
+
$calcite-color-text-1: #ffffff;
|
|
35
|
+
$calcite-color-text-2: #bfbfbf;
|
|
36
|
+
$calcite-color-text-3: #9f9f9f;
|
|
37
|
+
$calcite-color-text-inverse: #151515;
|
|
38
|
+
$calcite-color-text-link: #00a0ff;
|
|
39
|
+
$calcite-color-border-1: #555555;
|
|
40
|
+
$calcite-color-border-2: #4a4a4a;
|
|
41
|
+
$calcite-color-border-3: #404040;
|
|
42
|
+
$calcite-color-border-input: #757575;
|
|
43
|
+
$calcite-color-border-ghost: rgba(117, 117, 117, 0.3);
|
|
44
|
+
$calcite-color-border-white: #f8f8f8;
|
package/dist/scss/global.scss
CHANGED
|
@@ -1,120 +1,114 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 28 Mar 2025 22:09:10 GMT
|
|
4
|
-
*/
|
|
5
1
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
$calcite-
|
|
11
|
-
$calcite-
|
|
12
|
-
$calcite-
|
|
13
|
-
$calcite-
|
|
14
|
-
$calcite-
|
|
15
|
-
$calcite-
|
|
16
|
-
$calcite-
|
|
17
|
-
$calcite-
|
|
18
|
-
$calcite-
|
|
19
|
-
$calcite-
|
|
20
|
-
$calcite-
|
|
21
|
-
$calcite-
|
|
22
|
-
$calcite-
|
|
23
|
-
$calcite-
|
|
24
|
-
$calcite-
|
|
25
|
-
$calcite-spacing-xxs: 0.25rem;
|
|
26
|
-
$calcite-spacing-base: 2px;
|
|
27
|
-
$calcite-spacing-px: 1px;
|
|
28
|
-
$calcite-spacing-none: 0;
|
|
29
|
-
$calcite-spacing-fixed-xxxl: 32px; // deprecated
|
|
30
|
-
$calcite-spacing-fixed-xxl: 20px; // deprecated
|
|
31
|
-
$calcite-spacing-fixed-xl: 16px; // deprecated
|
|
32
|
-
$calcite-spacing-fixed-lg: 14px; // deprecated
|
|
33
|
-
$calcite-spacing-fixed-md: 12px; // deprecated
|
|
34
|
-
$calcite-spacing-fixed-sm: 8px; // deprecated
|
|
35
|
-
$calcite-spacing-fixed-xs: 6px; // deprecated
|
|
36
|
-
$calcite-spacing-fixed-xxs: 4px; // deprecated
|
|
37
|
-
$calcite-size-xxxl: 6rem;
|
|
38
|
-
$calcite-size-xxl: 4rem;
|
|
39
|
-
$calcite-size-xl: 3rem;
|
|
40
|
-
$calcite-size-lg: 2.75rem;
|
|
41
|
-
$calcite-size-md: 2rem;
|
|
42
|
-
$calcite-size-sm: 1.5rem;
|
|
43
|
-
$calcite-size-xs: 1rem;
|
|
44
|
-
$calcite-size-xxs: 0.875rem;
|
|
45
|
-
$calcite-size-xxxs: 0.75rem;
|
|
46
|
-
$calcite-size-px: 1px;
|
|
47
|
-
$calcite-size-fixed-xxxl: 32px; // deprecated
|
|
48
|
-
$calcite-size-fixed-xxl: 24px; // deprecated
|
|
49
|
-
$calcite-size-fixed-xl: 20px; // deprecated
|
|
50
|
-
$calcite-size-fixed-lg: 16px; // deprecated
|
|
51
|
-
$calcite-size-fixed-md-plus: 14px; // deprecated
|
|
52
|
-
$calcite-size-fixed-md: 12px; // deprecated
|
|
53
|
-
$calcite-size-fixed-sm-plus: 10px; // deprecated
|
|
54
|
-
$calcite-size-fixed-sm: 8px; // deprecated
|
|
55
|
-
$calcite-size-fixed-xs: 6px; // deprecated
|
|
56
|
-
$calcite-size-fixed-xxs: 4px; // deprecated
|
|
57
|
-
$calcite-size-fixed-xxxs: 2px; // deprecated
|
|
58
|
-
$calcite-opacity-disabled: 0.5;
|
|
59
|
-
$calcite-opacity-full: 1;
|
|
60
|
-
$calcite-opacity-dark: 0.85;
|
|
61
|
-
$calcite-opacity-half: 0.5;
|
|
62
|
-
$calcite-opacity-light: 0.4;
|
|
63
|
-
$calcite-font-text-case-capitalize: capitalize; // Deprecated
|
|
64
|
-
$calcite-font-text-case-lowercase: lowercase; // Deprecated
|
|
65
|
-
$calcite-font-text-case-uppercase: uppercase; // Deprecated
|
|
66
|
-
$calcite-font-text-case-none: none; // Deprecated
|
|
67
|
-
$calcite-font-text-decoration-underline: underline; // Deprecated
|
|
68
|
-
$calcite-font-text-decoration-none: none; // Deprecated
|
|
69
|
-
$calcite-font-paragraph-spacing-normal: 4px; // Deprecated
|
|
70
|
-
$calcite-font-letter-spacing-wide: 0.4; // Deprecated
|
|
71
|
-
$calcite-font-letter-spacing-normal: 0; // Deprecated
|
|
72
|
-
$calcite-font-letter-spacing-tight: -0.4; // Deprecated
|
|
73
|
-
$calcite-font-line-height-relative-loose: 2; // 2
|
|
74
|
-
$calcite-font-line-height-relative-relaxed: 1.625; // 1.625
|
|
75
|
-
$calcite-font-line-height-relative-normal: 1.5; // 1.5
|
|
76
|
-
$calcite-font-line-height-relative-snug: 1.375; // 1.375
|
|
77
|
-
$calcite-font-line-height-relative-tight: 1.25; // 1.25
|
|
78
|
-
$calcite-font-line-height-relative: auto; // 1
|
|
79
|
-
$calcite-font-line-height-fixed-xl: 24px;
|
|
80
|
-
$calcite-font-line-height-fixed-lg: 20px;
|
|
81
|
-
$calcite-font-line-height-fixed-base: 16px;
|
|
82
|
-
$calcite-font-line-height-fixed-sm: 12px;
|
|
83
|
-
$calcite-font-style-emphasis: italic; // used in ratings
|
|
84
|
-
$calcite-font-size-xxl: 24px;
|
|
85
|
-
$calcite-font-size-xl: 20px;
|
|
86
|
-
$calcite-font-size-lg: 18px;
|
|
87
|
-
$calcite-font-size-md: 16px;
|
|
88
|
-
$calcite-font-size: 14px;
|
|
89
|
-
$calcite-font-size-sm: 12px;
|
|
90
|
-
$calcite-font-size-xs: 10px;
|
|
91
|
-
$calcite-font-weight-bold: 600;
|
|
92
|
-
$calcite-font-weight-semibold: 600;
|
|
93
|
-
$calcite-font-weight-medium: 500;
|
|
2
|
+
// Calcite Design System
|
|
3
|
+
// File to be deprecated in next major release
|
|
4
|
+
// Do not edit directly, this file was auto-generated.
|
|
5
|
+
|
|
6
|
+
$calcite-border-width-none: 0;
|
|
7
|
+
$calcite-border-width-sm: 1px;
|
|
8
|
+
$calcite-border-width-md: 2px;
|
|
9
|
+
$calcite-border-width-lg: 4px;
|
|
10
|
+
$calcite-color-background-none: rgba(255, 255, 255, 0);
|
|
11
|
+
$calcite-container-size-margin: 24px;
|
|
12
|
+
$calcite-container-size-gutter: 16px;
|
|
13
|
+
$calcite-container-size-content-fluid: 100%; // for fluid grid widths
|
|
14
|
+
$calcite-container-size-content-fixed: 1440px; // only for lg breakpoint fixed grid width
|
|
15
|
+
$calcite-corner-radius-sharp: 0;
|
|
16
|
+
$calcite-corner-radius-round: 4px;
|
|
17
|
+
$calcite-corner-radius-pill: 100%;
|
|
18
|
+
$calcite-font-family: 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif; // Primary font with fallbacks
|
|
19
|
+
$calcite-font-family-code: Monaco, Consolas, 'Andale Mono', 'Lucida Console', monospace; // Font family for code with fallbacks
|
|
20
|
+
$calcite-font-weight-light: 300; // For Avenir Next World (secondary font family)
|
|
94
21
|
$calcite-font-weight-regular: 400;
|
|
95
22
|
$calcite-font-weight-normal: 400; // For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"
|
|
96
|
-
$calcite-font-weight-
|
|
97
|
-
$calcite-font-
|
|
98
|
-
|
|
99
|
-
$calcite-font-
|
|
100
|
-
|
|
101
|
-
$calcite-
|
|
102
|
-
$calcite-
|
|
103
|
-
$calcite-
|
|
104
|
-
$calcite-
|
|
105
|
-
$calcite-
|
|
106
|
-
$calcite-
|
|
107
|
-
$calcite-
|
|
108
|
-
$calcite-
|
|
109
|
-
$calcite-
|
|
110
|
-
$calcite-
|
|
111
|
-
$calcite-
|
|
112
|
-
$calcite-
|
|
113
|
-
$calcite-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
$calcite-
|
|
117
|
-
|
|
118
|
-
|
|
23
|
+
$calcite-font-weight-medium: 500;
|
|
24
|
+
$calcite-font-weight-semibold: 600;
|
|
25
|
+
$calcite-font-weight-bold: 600;
|
|
26
|
+
$calcite-font-size-xs: 10px;
|
|
27
|
+
$calcite-font-size-sm: 12px;
|
|
28
|
+
$calcite-font-size: 14px;
|
|
29
|
+
$calcite-font-size-md: 16px;
|
|
30
|
+
$calcite-font-size-lg: 18px;
|
|
31
|
+
$calcite-font-size-xl: 20px;
|
|
32
|
+
$calcite-font-size-xxl: 24px;
|
|
33
|
+
$calcite-font-style-emphasis: italic; // used in ratings
|
|
34
|
+
$calcite-font-line-height-fixed-sm: 12px;
|
|
35
|
+
$calcite-font-line-height-fixed-base: 16px;
|
|
36
|
+
$calcite-font-line-height-fixed-lg: 20px;
|
|
37
|
+
$calcite-font-line-height-fixed-xl: 24px;
|
|
38
|
+
$calcite-font-line-height-relative: auto; // 1
|
|
39
|
+
$calcite-font-line-height-relative-tight: 1.25; // 1.25
|
|
40
|
+
$calcite-font-line-height-relative-snug: 1.375; // 1.375
|
|
41
|
+
$calcite-font-line-height-relative-normal: 1.5; // 1.5
|
|
42
|
+
$calcite-font-line-height-relative-relaxed: 1.625; // 1.625
|
|
43
|
+
$calcite-font-line-height-relative-loose: 2; // 2
|
|
44
|
+
$calcite-font-letter-spacing-tight: -0.4; // Deprecated
|
|
45
|
+
$calcite-font-letter-spacing-normal: 0; // Deprecated
|
|
46
|
+
$calcite-font-letter-spacing-wide: 0.4; // Deprecated
|
|
47
|
+
$calcite-font-paragraph-spacing-normal: 4px; // Deprecated
|
|
48
|
+
$calcite-font-text-decoration-none: none; // Deprecated
|
|
49
|
+
$calcite-font-text-decoration-underline: underline; // Deprecated
|
|
50
|
+
$calcite-font-text-case-none: none; // Deprecated
|
|
51
|
+
$calcite-font-text-case-uppercase: uppercase; // Deprecated
|
|
52
|
+
$calcite-font-text-case-lowercase: lowercase; // Deprecated
|
|
53
|
+
$calcite-font-text-case-capitalize: capitalize; // Deprecated
|
|
54
|
+
$calcite-opacity-light: 0.4;
|
|
55
|
+
$calcite-opacity-half: 0.5;
|
|
56
|
+
$calcite-opacity-dark: 0.85;
|
|
57
|
+
$calcite-opacity-full: 1;
|
|
58
|
+
$calcite-opacity-disabled: 0.5;
|
|
119
59
|
$calcite-shadow-none: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
120
|
-
$calcite-
|
|
60
|
+
$calcite-size-fixed-xxxs: 2px; // deprecated
|
|
61
|
+
$calcite-size-fixed-xxs: 4px; // deprecated
|
|
62
|
+
$calcite-size-fixed-xs: 6px; // deprecated
|
|
63
|
+
$calcite-size-fixed-sm: 8px; // deprecated
|
|
64
|
+
$calcite-size-fixed-sm-plus: 10px; // deprecated
|
|
65
|
+
$calcite-size-fixed-md: 12px; // deprecated
|
|
66
|
+
$calcite-size-fixed-md-plus: 14px; // deprecated
|
|
67
|
+
$calcite-size-fixed-lg: 16px; // deprecated
|
|
68
|
+
$calcite-size-fixed-xl: 20px; // deprecated
|
|
69
|
+
$calcite-size-fixed-xxl: 24px; // deprecated
|
|
70
|
+
$calcite-size-fixed-xxxl: 32px; // deprecated
|
|
71
|
+
$calcite-size-px: 1px;
|
|
72
|
+
$calcite-size-xxxs: 0.75rem;
|
|
73
|
+
$calcite-size-xxs: 0.875rem;
|
|
74
|
+
$calcite-size-xs: 1rem;
|
|
75
|
+
$calcite-size-sm: 1.5rem;
|
|
76
|
+
$calcite-size-md: 2rem;
|
|
77
|
+
$calcite-size-lg: 2.75rem;
|
|
78
|
+
$calcite-size-xl: 3rem;
|
|
79
|
+
$calcite-size-xxl: 4rem;
|
|
80
|
+
$calcite-size-xxxl: 6rem;
|
|
81
|
+
$calcite-spacing-fixed-xxs: 4px; // deprecated
|
|
82
|
+
$calcite-spacing-fixed-xs: 6px; // deprecated
|
|
83
|
+
$calcite-spacing-fixed-sm: 8px; // deprecated
|
|
84
|
+
$calcite-spacing-fixed-md: 12px; // deprecated
|
|
85
|
+
$calcite-spacing-fixed-lg: 14px; // deprecated
|
|
86
|
+
$calcite-spacing-fixed-xl: 16px; // deprecated
|
|
87
|
+
$calcite-spacing-fixed-xxl: 20px; // deprecated
|
|
88
|
+
$calcite-spacing-fixed-xxxl: 32px; // deprecated
|
|
89
|
+
$calcite-spacing-none: 0;
|
|
90
|
+
$calcite-spacing-px: 1px;
|
|
91
|
+
$calcite-spacing-base: 2px;
|
|
92
|
+
$calcite-spacing-xxs: 0.25rem;
|
|
93
|
+
$calcite-spacing-xs: 0.375rem;
|
|
94
|
+
$calcite-spacing-sm: 0.5rem;
|
|
95
|
+
$calcite-spacing-sm-plus: 0.625rem;
|
|
96
|
+
$calcite-spacing-md: 0.75rem;
|
|
97
|
+
$calcite-spacing-md-plus: 0.875rem;
|
|
98
|
+
$calcite-spacing-lg: 1rem;
|
|
99
|
+
$calcite-spacing-xl: 1.25rem;
|
|
100
|
+
$calcite-spacing-xxl: 1.5rem;
|
|
101
|
+
$calcite-spacing-xxxl: 2rem;
|
|
102
|
+
$calcite-z-index-deep: -999999;
|
|
103
|
+
$calcite-z-index: 1;
|
|
104
|
+
$calcite-z-index-sticky: 300;
|
|
105
|
+
$calcite-z-index-header: 400;
|
|
106
|
+
$calcite-z-index-toast: 500;
|
|
107
|
+
$calcite-z-index-dropdown: 600;
|
|
108
|
+
$calcite-z-index-overlay: 700;
|
|
109
|
+
$calcite-z-index-modal: 800;
|
|
110
|
+
$calcite-z-index-popup: 900;
|
|
111
|
+
$calcite-z-index-tooltip: 901;
|
|
112
|
+
$calcite-corner-radius: $calcite-corner-radius-sharp;
|
|
113
|
+
$calcite-shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.04), 0 4px 16px 0 rgba(0, 0, 0, 0.08);
|
|
114
|
+
$calcite-shadow-md: 0 4px 20px 0 rgba(0, 0, 0, 0.08), 0 12px 30px rgba(0, 0, 0, 0.1);
|
package/dist/scss/index.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* Calcite Design System
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
@import "./
|
|
6
|
+
@import "./semantic.scss";
|
|
7
7
|
@import "./breakpoints.scss";
|
|
8
8
|
@import "./mixins.scss";
|
|
9
9
|
@mixin calcite-mode-light {
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
--calcite-color-background: #f8f8f8;
|
|
50
50
|
}
|
|
51
51
|
@mixin calcite-mode-dark {
|
|
52
|
+
--calcite-color-foreground-current: #214155;
|
|
52
53
|
--calcite-color-border-white: #f8f8f8;
|
|
53
54
|
--calcite-color-border-ghost: rgba(117, 117, 117, 0.3);
|
|
54
55
|
--calcite-color-border-input: #757575;
|
|
@@ -84,7 +85,6 @@
|
|
|
84
85
|
--calcite-color-transparent-press: rgba(255, 255, 255, 0.08);
|
|
85
86
|
--calcite-color-transparent-hover: rgba(255, 255, 255, 0.04);
|
|
86
87
|
--calcite-color-transparent: rgba(255, 255, 255, 0);
|
|
87
|
-
--calcite-color-foreground-current: #214155;
|
|
88
88
|
--calcite-color-foreground-3: #151515;
|
|
89
89
|
--calcite-color-foreground-2: #202020;
|
|
90
90
|
--calcite-color-foreground-1: #2b2b2b;
|
package/dist/scss/light.scss
CHANGED
|
@@ -1,45 +1,44 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 28 Mar 2025 22:09:10 GMT
|
|
4
|
-
*/
|
|
5
1
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
$calcite-color-border-3: #dfdfdf;
|
|
10
|
-
$calcite-color-border-2: #d4d4d4;
|
|
11
|
-
$calcite-color-border-1: #cacaca;
|
|
12
|
-
$calcite-color-text-link: #00619b;
|
|
13
|
-
$calcite-color-text-inverse: #ffffff;
|
|
14
|
-
$calcite-color-text-3: #6a6a6a;
|
|
15
|
-
$calcite-color-text-2: #4a4a4a;
|
|
16
|
-
$calcite-color-text-1: #151515;
|
|
17
|
-
$calcite-color-inverse-press: #202020;
|
|
18
|
-
$calcite-color-inverse-hover: #2b2b2b;
|
|
19
|
-
$calcite-color-inverse: #353535;
|
|
20
|
-
$calcite-color-status-danger-press: #7c1d13;
|
|
21
|
-
$calcite-color-status-danger-hover: #a82b1e;
|
|
22
|
-
$calcite-color-status-danger: #d83020;
|
|
23
|
-
$calcite-color-status-warning-press: #bfa200;
|
|
24
|
-
$calcite-color-status-warning-hover: #d9bc00;
|
|
25
|
-
$calcite-color-status-warning: #edd317;
|
|
26
|
-
$calcite-color-status-success-press: #1a6324;
|
|
27
|
-
$calcite-color-status-success-hover: #288835;
|
|
28
|
-
$calcite-color-status-success: #35ac46;
|
|
29
|
-
$calcite-color-status-info-press: #00304d;
|
|
30
|
-
$calcite-color-status-info-hover: #004874;
|
|
31
|
-
$calcite-color-status-info: #00619b;
|
|
32
|
-
$calcite-color-brand-underline: rgba(0, 97, 155, 0.4);
|
|
33
|
-
$calcite-color-brand-press: #004874;
|
|
34
|
-
$calcite-color-brand-hover: #00619b;
|
|
35
|
-
$calcite-color-brand: #007ac2;
|
|
36
|
-
$calcite-color-transparent-tint: rgba(255, 255, 255, 0.8);
|
|
37
|
-
$calcite-color-transparent-scrim: rgba(255, 255, 255, 0.85);
|
|
38
|
-
$calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
39
|
-
$calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
40
|
-
$calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
41
|
-
$calcite-color-foreground-current: #c7eaff;
|
|
42
|
-
$calcite-color-foreground-3: #eaeaea;
|
|
43
|
-
$calcite-color-foreground-2: #f3f3f3;
|
|
44
|
-
$calcite-color-foreground-1: #ffffff;
|
|
2
|
+
// Calcite Design System
|
|
3
|
+
// Do not edit directly, this file was auto-generated.
|
|
4
|
+
|
|
45
5
|
$calcite-color-background: #f8f8f8;
|
|
6
|
+
$calcite-color-foreground-1: #ffffff;
|
|
7
|
+
$calcite-color-foreground-2: #f3f3f3;
|
|
8
|
+
$calcite-color-foreground-3: #eaeaea;
|
|
9
|
+
$calcite-color-foreground-current: #c7eaff;
|
|
10
|
+
$calcite-color-transparent: rgba(0, 0, 0, 0);
|
|
11
|
+
$calcite-color-transparent-hover: rgba(0, 0, 0, 0.04);
|
|
12
|
+
$calcite-color-transparent-press: rgba(0, 0, 0, 0.08);
|
|
13
|
+
$calcite-color-transparent-scrim: rgba(255, 255, 255, 0.85);
|
|
14
|
+
$calcite-color-transparent-tint: rgba(255, 255, 255, 0.8);
|
|
15
|
+
$calcite-color-brand: #007ac2;
|
|
16
|
+
$calcite-color-brand-hover: #00619b;
|
|
17
|
+
$calcite-color-brand-press: #004874;
|
|
18
|
+
$calcite-color-brand-underline: rgba(0, 97, 155, 0.4);
|
|
19
|
+
$calcite-color-status-info: #00619b;
|
|
20
|
+
$calcite-color-status-info-hover: #004874;
|
|
21
|
+
$calcite-color-status-info-press: #00304d;
|
|
22
|
+
$calcite-color-status-success: #35ac46;
|
|
23
|
+
$calcite-color-status-success-hover: #288835;
|
|
24
|
+
$calcite-color-status-success-press: #1a6324;
|
|
25
|
+
$calcite-color-status-warning: #edd317;
|
|
26
|
+
$calcite-color-status-warning-hover: #d9bc00;
|
|
27
|
+
$calcite-color-status-warning-press: #bfa200;
|
|
28
|
+
$calcite-color-status-danger: #d83020;
|
|
29
|
+
$calcite-color-status-danger-hover: #a82b1e;
|
|
30
|
+
$calcite-color-status-danger-press: #7c1d13;
|
|
31
|
+
$calcite-color-inverse: #353535;
|
|
32
|
+
$calcite-color-inverse-hover: #2b2b2b;
|
|
33
|
+
$calcite-color-inverse-press: #202020;
|
|
34
|
+
$calcite-color-text-1: #151515;
|
|
35
|
+
$calcite-color-text-2: #4a4a4a;
|
|
36
|
+
$calcite-color-text-3: #6a6a6a;
|
|
37
|
+
$calcite-color-text-inverse: #ffffff;
|
|
38
|
+
$calcite-color-text-link: #00619b;
|
|
39
|
+
$calcite-color-border-1: #cacaca;
|
|
40
|
+
$calcite-color-border-2: #d4d4d4;
|
|
41
|
+
$calcite-color-border-3: #dfdfdf;
|
|
42
|
+
$calcite-color-border-input: #949494;
|
|
43
|
+
$calcite-color-border-ghost: rgba(0, 0, 0, 0.3);
|
|
44
|
+
$calcite-color-border-white: #ffffff;
|