@spectrum-web-components/styles 0.13.2 → 0.15.1-devmode.0
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/body.dev.js +5 -0
- package/body.dev.js.map +7 -0
- package/body.js +4 -15
- package/body.js.map +7 -1
- package/code.dev.js +5 -0
- package/code.dev.js.map +7 -0
- package/code.js +4 -15
- package/code.js.map +7 -1
- package/core-global.css +0 -114
- package/detail.dev.js +5 -0
- package/detail.dev.js.map +7 -0
- package/detail.js +4 -15
- package/detail.js.map +7 -1
- package/express/core-global.css +0 -74
- package/express/spectrum-scale-large.css +36 -6059
- package/express/spectrum-scale-medium.css +44 -6115
- package/heading.dev.js +5 -0
- package/heading.dev.js.map +7 -0
- package/heading.js +4 -15
- package/heading.js.map +7 -1
- package/package.json +57 -17
- package/spectrum-scale-large.css +36 -6059
- package/spectrum-scale-medium.css +44 -6115
- package/src/spectrum-base.css.dev.js +10 -0
- package/src/spectrum-base.css.dev.js.map +7 -0
- package/src/spectrum-base.css.js +3 -14
- package/src/spectrum-base.css.js.map +7 -1
- package/src/spectrum-body.css.dev.js +100 -0
- package/src/spectrum-body.css.dev.js.map +7 -0
- package/src/spectrum-body.css.js +3 -14
- package/src/spectrum-body.css.js.map +7 -1
- package/src/spectrum-code.css.dev.js +84 -0
- package/src/spectrum-code.css.dev.js.map +7 -0
- package/src/spectrum-code.css.js +3 -14
- package/src/spectrum-code.css.js.map +7 -1
- package/src/spectrum-detail.css.dev.js +154 -0
- package/src/spectrum-detail.css.dev.js.map +7 -0
- package/src/spectrum-detail.css.js +3 -14
- package/src/spectrum-detail.css.js.map +7 -1
- package/src/spectrum-heading.css.dev.js +148 -0
- package/src/spectrum-heading.css.dev.js.map +7 -0
- package/src/spectrum-heading.css.js +3 -14
- package/src/spectrum-heading.css.js.map +7 -1
- package/src/spectrum-lang.css.dev.js +468 -0
- package/src/spectrum-lang.css.dev.js.map +7 -0
- package/src/spectrum-lang.css.js +3 -14
- package/src/spectrum-lang.css.js.map +7 -1
- package/src/spectrum-typography.css.dev.js +66 -0
- package/src/spectrum-typography.css.dev.js.map +7 -0
- package/src/spectrum-typography.css.js +3 -14
- package/src/spectrum-typography.css.js.map +7 -1
- package/stories/styles.stories.js +4 -15
- package/stories/styles.stories.js.map +7 -1
- package/test/styles.test-vrt.js +4 -15
- package/test/styles.test-vrt.js.map +7 -1
- package/tokens/dark-vars.css +267 -0
- package/tokens/darkest-vars.css +267 -0
- package/tokens/express/custom-large-vars.css +17 -0
- package/tokens/express/custom-medium-vars.css +17 -0
- package/tokens/express/custom-vars.css +17 -0
- package/tokens/express/global-vars.css +268 -0
- package/tokens/express/large-vars.css +48 -0
- package/tokens/express/medium-vars.css +48 -0
- package/tokens/global-vars.css +161 -0
- package/tokens/large-vars.css +140 -0
- package/tokens/light-vars.css +267 -0
- package/tokens/medium-vars.css +140 -0
- package/tokens/spectrum/custom-large-vars.css +21 -0
- package/tokens/spectrum/custom-medium-vars.css +21 -0
- package/tokens/spectrum/custom-vars.css +31 -0
- package/tokens/spectrum/global-vars.css +296 -0
- package/tokens/spectrum/large-vars.css +41 -0
- package/tokens/spectrum/medium-vars.css +41 -0
- package/typography.dev.js +3 -0
- package/typography.dev.js.map +7 -0
- package/typography.js +2 -13
- package/typography.js.map +7 -1
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:host {
|
|
14
|
+
--spectrum-accent-color-100: var(--spectrum-indigo-100);
|
|
15
|
+
--spectrum-accent-color-200: var(--spectrum-indigo-200);
|
|
16
|
+
--spectrum-accent-color-300: var(--spectrum-indigo-300);
|
|
17
|
+
--spectrum-accent-color-400: var(--spectrum-indigo-400);
|
|
18
|
+
--spectrum-accent-color-500: var(--spectrum-indigo-500);
|
|
19
|
+
--spectrum-accent-color-600: var(--spectrum-indigo-600);
|
|
20
|
+
--spectrum-accent-color-700: var(--spectrum-indigo-700);
|
|
21
|
+
--spectrum-accent-color-800: var(--spectrum-indigo-800);
|
|
22
|
+
--spectrum-accent-color-900: var(--spectrum-indigo-900);
|
|
23
|
+
--spectrum-accent-color-1000: var(--spectrum-indigo-1000);
|
|
24
|
+
--spectrum-accent-color-1100: var(--spectrum-indigo-1100);
|
|
25
|
+
--spectrum-accent-color-1200: var(--spectrum-indigo-1200);
|
|
26
|
+
--spectrum-accent-color-1300: var(--spectrum-indigo-1300);
|
|
27
|
+
--spectrum-accent-color-1400: var(--spectrum-indigo-1400);
|
|
28
|
+
--spectrum-border-width-100: 2px;
|
|
29
|
+
}
|
|
30
|
+
:host {
|
|
31
|
+
--system-spectrum-actionbutton-background-color-default: var(
|
|
32
|
+
--spectrum-gray-200
|
|
33
|
+
);
|
|
34
|
+
--system-spectrum-actionbutton-background-color-hover: var(
|
|
35
|
+
--spectrum-gray-300
|
|
36
|
+
);
|
|
37
|
+
--system-spectrum-actionbutton-background-color-down: var(
|
|
38
|
+
--spectrum-gray-400
|
|
39
|
+
);
|
|
40
|
+
--system-spectrum-actionbutton-background-color-focus: var(
|
|
41
|
+
--spectrum-gray-300
|
|
42
|
+
);
|
|
43
|
+
--system-spectrum-actionbutton-border-color-default: transparent;
|
|
44
|
+
--system-spectrum-actionbutton-border-color-hover: transparent;
|
|
45
|
+
--system-spectrum-actionbutton-border-color-down: transparent;
|
|
46
|
+
--system-spectrum-actionbutton-border-color-focus: transparent;
|
|
47
|
+
--system-spectrum-actionbutton-content-color-default: var(
|
|
48
|
+
--spectrum-neutral-content-color-default
|
|
49
|
+
);
|
|
50
|
+
--system-spectrum-actionbutton-content-color-hover: var(
|
|
51
|
+
--spectrum-neutral-content-color-hover
|
|
52
|
+
);
|
|
53
|
+
--system-spectrum-actionbutton-content-color-down: var(
|
|
54
|
+
--spectrum-neutral-content-color-down
|
|
55
|
+
);
|
|
56
|
+
--system-spectrum-actionbutton-content-color-focus: var(
|
|
57
|
+
--spectrum-neutral-content-color-key-focus
|
|
58
|
+
);
|
|
59
|
+
--system-spectrum-actionbutton-background-color-disabled: var(
|
|
60
|
+
--spectrum-disabled-background-color
|
|
61
|
+
);
|
|
62
|
+
--system-spectrum-actionbutton-border-color-disabled: transparent;
|
|
63
|
+
--system-spectrum-actionbutton-content-color-disabled: var(
|
|
64
|
+
--spectrum-disabled-content-color
|
|
65
|
+
);
|
|
66
|
+
--system-spectrum-actionbutton-quiet-background-color-default: transparent;
|
|
67
|
+
--system-spectrum-actionbutton-quiet-background-color-hover: var(
|
|
68
|
+
--spectrum-gray-200
|
|
69
|
+
);
|
|
70
|
+
--system-spectrum-actionbutton-quiet-background-color-down: var(
|
|
71
|
+
--spectrum-gray-300
|
|
72
|
+
);
|
|
73
|
+
--system-spectrum-actionbutton-quiet-background-color-focus: var(
|
|
74
|
+
--spectrum-gray-200
|
|
75
|
+
);
|
|
76
|
+
--system-spectrum-actionbutton-quiet-border-color-default: transparent;
|
|
77
|
+
--system-spectrum-actionbutton-quiet-border-color-hover: transparent;
|
|
78
|
+
--system-spectrum-actionbutton-quiet-border-color-down: transparent;
|
|
79
|
+
--system-spectrum-actionbutton-quiet-border-color-focus: transparent;
|
|
80
|
+
--system-spectrum-actionbutton-quiet-background-color-disabled: transparent;
|
|
81
|
+
--system-spectrum-actionbutton-quiet-border-color-disabled: transparent;
|
|
82
|
+
--system-spectrum-actionbutton-selected-background-color-default: var(
|
|
83
|
+
--spectrum-neutral-background-color-default
|
|
84
|
+
);
|
|
85
|
+
--system-spectrum-actionbutton-selected-background-color-hover: var(
|
|
86
|
+
--spectrum-neutral-background-color-hover
|
|
87
|
+
);
|
|
88
|
+
--system-spectrum-actionbutton-selected-background-color-down: var(
|
|
89
|
+
--spectrum-neutral-background-color-down
|
|
90
|
+
);
|
|
91
|
+
--system-spectrum-actionbutton-selected-background-color-focus: var(
|
|
92
|
+
--spectrum-neutral-background-color-key-focus
|
|
93
|
+
);
|
|
94
|
+
--system-spectrum-actionbutton-selected-border-color-default: transparent;
|
|
95
|
+
--system-spectrum-actionbutton-selected-border-color-hover: transparent;
|
|
96
|
+
--system-spectrum-actionbutton-selected-border-color-down: transparent;
|
|
97
|
+
--system-spectrum-actionbutton-selected-border-color-focus: transparent;
|
|
98
|
+
--system-spectrum-actionbutton-selected-content-color-default: var(
|
|
99
|
+
--spectrum-white
|
|
100
|
+
);
|
|
101
|
+
--system-spectrum-actionbutton-selected-content-color-hover: var(
|
|
102
|
+
--spectrum-white
|
|
103
|
+
);
|
|
104
|
+
--system-spectrum-actionbutton-selected-content-color-down: var(
|
|
105
|
+
--spectrum-white
|
|
106
|
+
);
|
|
107
|
+
--system-spectrum-actionbutton-selected-content-color-focus: var(
|
|
108
|
+
--spectrum-white
|
|
109
|
+
);
|
|
110
|
+
--system-spectrum-actionbutton-selected-background-color-disabled: var(
|
|
111
|
+
--spectrum-disabled-background-color
|
|
112
|
+
);
|
|
113
|
+
--system-spectrum-actionbutton-selected-border-color-disabled: transparent;
|
|
114
|
+
--system-spectrum-actionbutton-selected-emphasized-background-color-default: var(
|
|
115
|
+
--spectrum-accent-background-color-default
|
|
116
|
+
);
|
|
117
|
+
--system-spectrum-actionbutton-selected-emphasized-background-color-hover: var(
|
|
118
|
+
--spectrum-accent-background-color-hover
|
|
119
|
+
);
|
|
120
|
+
--system-spectrum-actionbutton-selected-emphasized-background-color-down: var(
|
|
121
|
+
--spectrum-accent-background-color-down
|
|
122
|
+
);
|
|
123
|
+
--system-spectrum-actionbutton-selected-emphasized-background-color-focus: var(
|
|
124
|
+
--spectrum-accent-background-color-key-focus
|
|
125
|
+
);
|
|
126
|
+
--system-spectrum-actionbutton-staticblack-quiet-border-color-default: transparent;
|
|
127
|
+
--system-spectrum-actionbutton-staticwhite-quiet-border-color-default: transparent;
|
|
128
|
+
--system-spectrum-actionbutton-staticblack-quiet-border-color-hover: transparent;
|
|
129
|
+
--system-spectrum-actionbutton-staticwhite-quiet-border-color-hover: transparent;
|
|
130
|
+
--system-spectrum-actionbutton-staticblack-quiet-border-color-down: transparent;
|
|
131
|
+
--system-spectrum-actionbutton-staticwhite-quiet-border-color-down: transparent;
|
|
132
|
+
--system-spectrum-actionbutton-staticblack-quiet-border-color-focus: transparent;
|
|
133
|
+
--system-spectrum-actionbutton-staticwhite-quiet-border-color-focus: transparent;
|
|
134
|
+
--system-spectrum-actionbutton-staticblack-quiet-border-color-disabled: transparent;
|
|
135
|
+
--system-spectrum-actionbutton-staticwhite-quiet-border-color-disabled: transparent;
|
|
136
|
+
--system-spectrum-actionbutton-staticblack-background-color-default: var(
|
|
137
|
+
--spectrum-transparent-black-200
|
|
138
|
+
);
|
|
139
|
+
--system-spectrum-actionbutton-staticblack-background-color-hover: var(
|
|
140
|
+
--spectrum-transparent-black-300
|
|
141
|
+
);
|
|
142
|
+
--system-spectrum-actionbutton-staticblack-background-color-down: var(
|
|
143
|
+
--spectrum-transparent-black-400
|
|
144
|
+
);
|
|
145
|
+
--system-spectrum-actionbutton-staticblack-background-color-focus: var(
|
|
146
|
+
--spectrum-transparent-black-300
|
|
147
|
+
);
|
|
148
|
+
--system-spectrum-actionbutton-staticblack-border-color-default: transparent;
|
|
149
|
+
--system-spectrum-actionbutton-staticblack-border-color-hover: transparent;
|
|
150
|
+
--system-spectrum-actionbutton-staticblack-border-color-down: transparent;
|
|
151
|
+
--system-spectrum-actionbutton-staticblack-border-color-focus: transparent;
|
|
152
|
+
--system-spectrum-actionbutton-staticblack-content-color-default: var(
|
|
153
|
+
--spectrum-black
|
|
154
|
+
);
|
|
155
|
+
--system-spectrum-actionbutton-staticblack-content-color-hover: var(
|
|
156
|
+
--spectrum-black
|
|
157
|
+
);
|
|
158
|
+
--system-spectrum-actionbutton-staticblack-content-color-down: var(
|
|
159
|
+
--spectrum-black
|
|
160
|
+
);
|
|
161
|
+
--system-spectrum-actionbutton-staticblack-content-color-focus: var(
|
|
162
|
+
--spectrum-black
|
|
163
|
+
);
|
|
164
|
+
--system-spectrum-actionbutton-staticblack-focus-ring-color: var(
|
|
165
|
+
--spectrum-static-black-focus-ring-color
|
|
166
|
+
);
|
|
167
|
+
--system-spectrum-actionbutton-staticblack-background-color-disabled: transparent;
|
|
168
|
+
--system-spectrum-actionbutton-staticblack-border-color-disabled: var(
|
|
169
|
+
--spectrum-disabled-static-black-border-color
|
|
170
|
+
);
|
|
171
|
+
--system-spectrum-actionbutton-staticblack-content-color-disabled: var(
|
|
172
|
+
--spectrum-disabled-static-black-content-color
|
|
173
|
+
);
|
|
174
|
+
--system-spectrum-actionbutton-staticblack-selected-background-color-default: var(
|
|
175
|
+
--spectrum-transparent-black-800
|
|
176
|
+
);
|
|
177
|
+
--system-spectrum-actionbutton-staticblack-selected-background-color-hover: var(
|
|
178
|
+
--spectrum-transparent-black-900
|
|
179
|
+
);
|
|
180
|
+
--system-spectrum-actionbutton-staticblack-selected-background-color-down: var(
|
|
181
|
+
--spectrum-transparent-black-900
|
|
182
|
+
);
|
|
183
|
+
--system-spectrum-actionbutton-staticblack-selected-background-color-focus: var(
|
|
184
|
+
--spectrum-transparent-black-900
|
|
185
|
+
);
|
|
186
|
+
--system-spectrum-actionbutton-staticblack-selected-border-color-disabled: transparent;
|
|
187
|
+
--system-spectrum-actionbutton-staticblack-selected-content-color-default: var(
|
|
188
|
+
--spectrum-white
|
|
189
|
+
);
|
|
190
|
+
--system-spectrum-actionbutton-staticblack-selected-content-color-hover: var(
|
|
191
|
+
--spectrum-white
|
|
192
|
+
);
|
|
193
|
+
--system-spectrum-actionbutton-staticblack-selected-content-color-down: var(
|
|
194
|
+
--spectrum-white
|
|
195
|
+
);
|
|
196
|
+
--system-spectrum-actionbutton-staticblack-selected-content-color-focus: var(
|
|
197
|
+
--spectrum-white
|
|
198
|
+
);
|
|
199
|
+
--system-spectrum-actionbutton-staticblack-selected-background-color-disabled: var(
|
|
200
|
+
--spectrum-disabled-static-black-background-color
|
|
201
|
+
);
|
|
202
|
+
--system-spectrum-actionbutton-staticwhite-background-color-default: var(
|
|
203
|
+
--spectrum-transparent-white-200
|
|
204
|
+
);
|
|
205
|
+
--system-spectrum-actionbutton-staticwhite-background-color-hover: var(
|
|
206
|
+
--spectrum-transparent-white-300
|
|
207
|
+
);
|
|
208
|
+
--system-spectrum-actionbutton-staticwhite-background-color-down: var(
|
|
209
|
+
--spectrum-transparent-white-400
|
|
210
|
+
);
|
|
211
|
+
--system-spectrum-actionbutton-staticwhite-background-color-focus: var(
|
|
212
|
+
--spectrum-transparent-white-300
|
|
213
|
+
);
|
|
214
|
+
--system-spectrum-actionbutton-staticwhite-border-color-default: transparent;
|
|
215
|
+
--system-spectrum-actionbutton-staticwhite-border-color-hover: transparent;
|
|
216
|
+
--system-spectrum-actionbutton-staticwhite-border-color-down: transparent;
|
|
217
|
+
--system-spectrum-actionbutton-staticwhite-border-color-focus: transparent;
|
|
218
|
+
--system-spectrum-actionbutton-staticwhite-content-color-default: var(
|
|
219
|
+
--spectrum-white
|
|
220
|
+
);
|
|
221
|
+
--system-spectrum-actionbutton-staticwhite-content-color-hover: var(
|
|
222
|
+
--spectrum-white
|
|
223
|
+
);
|
|
224
|
+
--system-spectrum-actionbutton-staticwhite-content-color-down: var(
|
|
225
|
+
--spectrum-white
|
|
226
|
+
);
|
|
227
|
+
--system-spectrum-actionbutton-staticwhite-content-color-focus: var(
|
|
228
|
+
--spectrum-white
|
|
229
|
+
);
|
|
230
|
+
--system-spectrum-actionbutton-staticwhite-focus-ring-color: var(
|
|
231
|
+
--spectrum-static-white-focus-ring-color
|
|
232
|
+
);
|
|
233
|
+
--system-spectrum-actionbutton-staticwhite-background-color-disabled: transparent;
|
|
234
|
+
--system-spectrum-actionbutton-staticwhite-border-color-disabled: var(
|
|
235
|
+
--spectrum-disabled-static-white-border-color
|
|
236
|
+
);
|
|
237
|
+
--system-spectrum-actionbutton-staticwhite-content-color-disabled: var(
|
|
238
|
+
--spectrum-disabled-static-white-content-color
|
|
239
|
+
);
|
|
240
|
+
--system-spectrum-actionbutton-staticwhite-selected-background-color-default: var(
|
|
241
|
+
--spectrum-transparent-white-800
|
|
242
|
+
);
|
|
243
|
+
--system-spectrum-actionbutton-staticwhite-selected-background-color-hover: var(
|
|
244
|
+
--spectrum-transparent-white-900
|
|
245
|
+
);
|
|
246
|
+
--system-spectrum-actionbutton-staticwhite-selected-background-color-down: var(
|
|
247
|
+
--spectrum-transparent-white-900
|
|
248
|
+
);
|
|
249
|
+
--system-spectrum-actionbutton-staticwhite-selected-background-color-focus: var(
|
|
250
|
+
--spectrum-transparent-white-900
|
|
251
|
+
);
|
|
252
|
+
--system-spectrum-actionbutton-staticwhite-selected-content-color-default: var(
|
|
253
|
+
--spectrum-black
|
|
254
|
+
);
|
|
255
|
+
--system-spectrum-actionbutton-staticwhite-selected-content-color-hover: var(
|
|
256
|
+
--spectrum-black
|
|
257
|
+
);
|
|
258
|
+
--system-spectrum-actionbutton-staticwhite-selected-content-color-down: var(
|
|
259
|
+
--spectrum-black
|
|
260
|
+
);
|
|
261
|
+
--system-spectrum-actionbutton-staticwhite-selected-content-color-focus: var(
|
|
262
|
+
--spectrum-black
|
|
263
|
+
);
|
|
264
|
+
--system-spectrum-actionbutton-staticwhite-selected-background-color-disabled: var(
|
|
265
|
+
--spectrum-disabled-static-white-background-color
|
|
266
|
+
);
|
|
267
|
+
--system-spectrum-actionbutton-staticwhite-selected-border-color-disabled: transparent;
|
|
268
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:host {
|
|
14
|
+
--spectrum-checkbox-control-size-small: 18px;
|
|
15
|
+
--spectrum-checkbox-control-size-medium: 20px;
|
|
16
|
+
--spectrum-checkbox-control-size-large: 22px;
|
|
17
|
+
--spectrum-checkbox-control-size-extra-large: 26px;
|
|
18
|
+
--spectrum-checkbox-top-to-control-small: 6px;
|
|
19
|
+
--spectrum-checkbox-top-to-control-medium: 10px;
|
|
20
|
+
--spectrum-checkbox-top-to-control-large: 14px;
|
|
21
|
+
--spectrum-checkbox-top-to-control-extra-large: 17px;
|
|
22
|
+
--spectrum-radio-button-control-size-small: 18px;
|
|
23
|
+
--spectrum-radio-button-control-size-medium: 20px;
|
|
24
|
+
--spectrum-radio-button-control-size-large: 22px;
|
|
25
|
+
--spectrum-radio-button-control-size-extra-large: 26px;
|
|
26
|
+
--spectrum-radio-button-top-to-control-small: 6px;
|
|
27
|
+
--spectrum-radio-button-top-to-control-medium: 10px;
|
|
28
|
+
--spectrum-radio-button-top-to-control-large: 14px;
|
|
29
|
+
--spectrum-radio-button-top-to-control-extra-large: 17px;
|
|
30
|
+
--spectrum-switch-control-width-small: 32px;
|
|
31
|
+
--spectrum-switch-control-width-medium: 36px;
|
|
32
|
+
--spectrum-switch-control-width-large: 41px;
|
|
33
|
+
--spectrum-switch-control-width-extra-large: 46px;
|
|
34
|
+
--spectrum-switch-control-height-small: 18px;
|
|
35
|
+
--spectrum-switch-control-height-medium: 20px;
|
|
36
|
+
--spectrum-switch-control-height-large: 22px;
|
|
37
|
+
--spectrum-switch-control-height-extra-large: 26px;
|
|
38
|
+
--spectrum-switch-top-to-control-small: 6px;
|
|
39
|
+
--spectrum-switch-top-to-control-medium: 10px;
|
|
40
|
+
--spectrum-switch-top-to-control-large: 14px;
|
|
41
|
+
--spectrum-switch-top-to-control-extra-large: 17px;
|
|
42
|
+
--spectrum-corner-radius-75: 4px;
|
|
43
|
+
--spectrum-corner-radius-100: 8px;
|
|
44
|
+
--spectrum-corner-radius-200: 16px;
|
|
45
|
+
--spectrum-drop-shadow-x: 0px;
|
|
46
|
+
--spectrum-drop-shadow-y: 4px;
|
|
47
|
+
--spectrum-drop-shadow-blur: 16px;
|
|
48
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:host {
|
|
14
|
+
--spectrum-checkbox-control-size-small: 14px;
|
|
15
|
+
--spectrum-checkbox-control-size-medium: 16px;
|
|
16
|
+
--spectrum-checkbox-control-size-large: 18px;
|
|
17
|
+
--spectrum-checkbox-control-size-extra-large: 20px;
|
|
18
|
+
--spectrum-checkbox-top-to-control-small: 5px;
|
|
19
|
+
--spectrum-checkbox-top-to-control-medium: 8px;
|
|
20
|
+
--spectrum-checkbox-top-to-control-large: 11px;
|
|
21
|
+
--spectrum-checkbox-top-to-control-extra-large: 14px;
|
|
22
|
+
--spectrum-radio-button-control-size-small: 14px;
|
|
23
|
+
--spectrum-radio-button-control-size-medium: 16px;
|
|
24
|
+
--spectrum-radio-button-control-size-large: 18px;
|
|
25
|
+
--spectrum-radio-button-control-size-extra-large: 20px;
|
|
26
|
+
--spectrum-radio-button-top-to-control-small: 5px;
|
|
27
|
+
--spectrum-radio-button-top-to-control-medium: 8px;
|
|
28
|
+
--spectrum-radio-button-top-to-control-large: 11px;
|
|
29
|
+
--spectrum-radio-button-top-to-control-extra-large: 14px;
|
|
30
|
+
--spectrum-switch-control-width-small: 25px;
|
|
31
|
+
--spectrum-switch-control-width-medium: 28px;
|
|
32
|
+
--spectrum-switch-control-width-large: 32px;
|
|
33
|
+
--spectrum-switch-control-width-extra-large: 35px;
|
|
34
|
+
--spectrum-switch-control-height-small: 14px;
|
|
35
|
+
--spectrum-switch-control-height-medium: 16px;
|
|
36
|
+
--spectrum-switch-control-height-large: 18px;
|
|
37
|
+
--spectrum-switch-control-height-extra-large: 20px;
|
|
38
|
+
--spectrum-switch-top-to-control-small: 5px;
|
|
39
|
+
--spectrum-switch-top-to-control-medium: 8px;
|
|
40
|
+
--spectrum-switch-top-to-control-large: 11px;
|
|
41
|
+
--spectrum-switch-top-to-control-extra-large: 14px;
|
|
42
|
+
--spectrum-corner-radius-75: 3px;
|
|
43
|
+
--spectrum-corner-radius-100: 6px;
|
|
44
|
+
--spectrum-corner-radius-200: 12px;
|
|
45
|
+
--spectrum-drop-shadow-x: 0px;
|
|
46
|
+
--spectrum-drop-shadow-y: 4px;
|
|
47
|
+
--spectrum-drop-shadow-blur: 16px;
|
|
48
|
+
}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:host {
|
|
14
|
+
--spectrum-transparent-white-200: rgba(255, 255, 255, 0.1);
|
|
15
|
+
--spectrum-transparent-white-300: rgba(255, 255, 255, 0.25);
|
|
16
|
+
--spectrum-transparent-white-400: rgba(255, 255, 255, 0.4);
|
|
17
|
+
--spectrum-transparent-white-500: rgba(255, 255, 255, 0.55);
|
|
18
|
+
--spectrum-transparent-white-600: rgba(255, 255, 255, 0.7);
|
|
19
|
+
--spectrum-transparent-white-700: rgba(255, 255, 255, 0.8);
|
|
20
|
+
--spectrum-transparent-white-800: rgba(255, 255, 255, 0.9);
|
|
21
|
+
--spectrum-transparent-white-900: rgb(255, 255, 255);
|
|
22
|
+
--spectrum-transparent-black-200: rgba(0, 0, 0, 0.1);
|
|
23
|
+
--spectrum-transparent-black-300: rgba(0, 0, 0, 0.25);
|
|
24
|
+
--spectrum-transparent-black-400: rgba(0, 0, 0, 0.4);
|
|
25
|
+
--spectrum-transparent-black-500: rgba(0, 0, 0, 0.55);
|
|
26
|
+
--spectrum-transparent-black-600: rgba(0, 0, 0, 0.7);
|
|
27
|
+
--spectrum-transparent-black-700: rgba(0, 0, 0, 0.8);
|
|
28
|
+
--spectrum-transparent-black-800: rgba(0, 0, 0, 0.9);
|
|
29
|
+
--spectrum-transparent-black-900: rgb(0, 0, 0);
|
|
30
|
+
--spectrum-focus-ring-color: var(--spectrum-blue-800);
|
|
31
|
+
--spectrum-static-white-focus-ring-color: var(--spectrum-white);
|
|
32
|
+
--spectrum-static-black-focus-ring-color: var(--spectrum-black);
|
|
33
|
+
--spectrum-neutral-content-color-default: var(--spectrum-gray-800);
|
|
34
|
+
--spectrum-neutral-content-color-hover: var(--spectrum-gray-900);
|
|
35
|
+
--spectrum-neutral-content-color-down: var(--spectrum-gray-900);
|
|
36
|
+
--spectrum-neutral-content-color-key-focus: var(--spectrum-gray-900);
|
|
37
|
+
--spectrum-neutral-subdued-content-color-default: var(--spectrum-gray-700);
|
|
38
|
+
--spectrum-neutral-subdued-content-color-hover: var(--spectrum-gray-800);
|
|
39
|
+
--spectrum-neutral-subdued-content-color-down: var(--spectrum-gray-900);
|
|
40
|
+
--spectrum-neutral-subdued-content-color-key-focus: var(
|
|
41
|
+
--spectrum-gray-800
|
|
42
|
+
);
|
|
43
|
+
--spectrum-accent-content-color: var(--spectrum-accent-color-900);
|
|
44
|
+
--spectrum-accent-content-color-hover: var(--spectrum-accent-color-1000);
|
|
45
|
+
--spectrum-accent-content-color-down: var(--spectrum-accent-color-1100);
|
|
46
|
+
--spectrum-accent-content-color-key-focus: var(
|
|
47
|
+
--spectrum-accent-color-1000
|
|
48
|
+
);
|
|
49
|
+
--spectrum-negative-content-color: var(--spectrum-negative-color-900);
|
|
50
|
+
--spectrum-negative-content-color-hover: var(
|
|
51
|
+
--spectrum-negative-color-1000
|
|
52
|
+
);
|
|
53
|
+
--spectrum-negative-content-color-down: var(--spectrum-negative-color-1100);
|
|
54
|
+
--spectrum-negative-content-color-key-focus: var(
|
|
55
|
+
--spectrum-negative-color-1000
|
|
56
|
+
);
|
|
57
|
+
--spectrum-disabled-content-color: var(--spectrum-gray-400);
|
|
58
|
+
--spectrum-disabled-static-white-content-color: var(
|
|
59
|
+
--spectrum-transparent-white-500
|
|
60
|
+
);
|
|
61
|
+
--spectrum-disabled-static-black-content-color: var(
|
|
62
|
+
--spectrum-transparent-black-500
|
|
63
|
+
);
|
|
64
|
+
--spectrum-disabled-background-color: var(--spectrum-gray-200);
|
|
65
|
+
--spectrum-disabled-static-white-background-color: var(
|
|
66
|
+
--spectrum-transparent-white-200
|
|
67
|
+
);
|
|
68
|
+
--spectrum-disabled-static-black-background-color: var(
|
|
69
|
+
--spectrum-transparent-black-200
|
|
70
|
+
);
|
|
71
|
+
--spectrum-disabled-border-color: var(--spectrum-gray-300);
|
|
72
|
+
--spectrum-disabled-static-white-border-color: var(
|
|
73
|
+
--spectrum-transparent-white-300
|
|
74
|
+
);
|
|
75
|
+
--spectrum-disabled-static-black-border-color: var(
|
|
76
|
+
--spectrum-transparent-black-300
|
|
77
|
+
);
|
|
78
|
+
--spectrum-informative-color-100: var(--spectrum-blue-100);
|
|
79
|
+
--spectrum-informative-color-200: var(--spectrum-blue-200);
|
|
80
|
+
--spectrum-informative-color-300: var(--spectrum-blue-300);
|
|
81
|
+
--spectrum-informative-color-400: var(--spectrum-blue-400);
|
|
82
|
+
--spectrum-informative-color-500: var(--spectrum-blue-500);
|
|
83
|
+
--spectrum-informative-color-600: var(--spectrum-blue-600);
|
|
84
|
+
--spectrum-informative-color-700: var(--spectrum-blue-700);
|
|
85
|
+
--spectrum-informative-color-800: var(--spectrum-blue-800);
|
|
86
|
+
--spectrum-informative-color-900: var(--spectrum-blue-900);
|
|
87
|
+
--spectrum-informative-color-1000: var(--spectrum-blue-1000);
|
|
88
|
+
--spectrum-informative-color-1100: var(--spectrum-blue-1100);
|
|
89
|
+
--spectrum-informative-color-1200: var(--spectrum-blue-1200);
|
|
90
|
+
--spectrum-informative-color-1300: var(--spectrum-blue-1300);
|
|
91
|
+
--spectrum-informative-color-1400: var(--spectrum-blue-1400);
|
|
92
|
+
--spectrum-negative-color-100: var(--spectrum-red-100);
|
|
93
|
+
--spectrum-negative-color-200: var(--spectrum-red-200);
|
|
94
|
+
--spectrum-negative-color-300: var(--spectrum-red-300);
|
|
95
|
+
--spectrum-negative-color-400: var(--spectrum-red-400);
|
|
96
|
+
--spectrum-negative-color-500: var(--spectrum-red-500);
|
|
97
|
+
--spectrum-negative-color-600: var(--spectrum-red-600);
|
|
98
|
+
--spectrum-negative-color-700: var(--spectrum-red-700);
|
|
99
|
+
--spectrum-negative-color-800: var(--spectrum-red-800);
|
|
100
|
+
--spectrum-negative-color-900: var(--spectrum-red-900);
|
|
101
|
+
--spectrum-negative-color-1000: var(--spectrum-red-1000);
|
|
102
|
+
--spectrum-negative-color-1100: var(--spectrum-red-1100);
|
|
103
|
+
--spectrum-negative-color-1200: var(--spectrum-red-1200);
|
|
104
|
+
--spectrum-negative-color-1300: var(--spectrum-red-1300);
|
|
105
|
+
--spectrum-negative-color-1400: var(--spectrum-red-1400);
|
|
106
|
+
--spectrum-notice-color-100: var(--spectrum-orange-100);
|
|
107
|
+
--spectrum-notice-color-200: var(--spectrum-orange-200);
|
|
108
|
+
--spectrum-notice-color-300: var(--spectrum-orange-300);
|
|
109
|
+
--spectrum-notice-color-400: var(--spectrum-orange-400);
|
|
110
|
+
--spectrum-notice-color-500: var(--spectrum-orange-500);
|
|
111
|
+
--spectrum-notice-color-600: var(--spectrum-orange-600);
|
|
112
|
+
--spectrum-notice-color-700: var(--spectrum-orange-700);
|
|
113
|
+
--spectrum-notice-color-800: var(--spectrum-orange-800);
|
|
114
|
+
--spectrum-notice-color-900: var(--spectrum-orange-900);
|
|
115
|
+
--spectrum-notice-color-1000: var(--spectrum-orange-1000);
|
|
116
|
+
--spectrum-notice-color-1100: var(--spectrum-orange-1100);
|
|
117
|
+
--spectrum-notice-color-1200: var(--spectrum-orange-1200);
|
|
118
|
+
--spectrum-notice-color-1300: var(--spectrum-orange-1300);
|
|
119
|
+
--spectrum-notice-color-1400: var(--spectrum-orange-1400);
|
|
120
|
+
--spectrum-positive-color-100: var(--spectrum-green-100);
|
|
121
|
+
--spectrum-positive-color-200: var(--spectrum-green-200);
|
|
122
|
+
--spectrum-positive-color-300: var(--spectrum-green-300);
|
|
123
|
+
--spectrum-positive-color-400: var(--spectrum-green-400);
|
|
124
|
+
--spectrum-positive-color-500: var(--spectrum-green-500);
|
|
125
|
+
--spectrum-positive-color-600: var(--spectrum-green-600);
|
|
126
|
+
--spectrum-positive-color-700: var(--spectrum-green-700);
|
|
127
|
+
--spectrum-positive-color-800: var(--spectrum-green-800);
|
|
128
|
+
--spectrum-positive-color-900: var(--spectrum-green-900);
|
|
129
|
+
--spectrum-positive-color-1000: var(--spectrum-green-1000);
|
|
130
|
+
--spectrum-positive-color-1100: var(--spectrum-green-1100);
|
|
131
|
+
--spectrum-positive-color-1200: var(--spectrum-green-1200);
|
|
132
|
+
--spectrum-positive-color-1300: var(--spectrum-green-1300);
|
|
133
|
+
--spectrum-positive-color-1400: var(--spectrum-green-1400);
|
|
134
|
+
--spectrum-black: rgb(0, 0, 0);
|
|
135
|
+
--spectrum-white: rgb(255, 255, 255);
|
|
136
|
+
--spectrum-button-minimum-width-multiplier: 2.25;
|
|
137
|
+
--spectrum-divider-thickness-small: 1px;
|
|
138
|
+
--spectrum-divider-thickness-medium: 2px;
|
|
139
|
+
--spectrum-divider-thickness-large: 4px;
|
|
140
|
+
--spectrum-radio-button-selection-indicator: 4px;
|
|
141
|
+
--spectrum-android-elevation: 2dp;
|
|
142
|
+
--spectrum-spacing-50: 2px;
|
|
143
|
+
--spectrum-spacing-75: 4px;
|
|
144
|
+
--spectrum-spacing-100: 8px;
|
|
145
|
+
--spectrum-spacing-200: 12px;
|
|
146
|
+
--spectrum-spacing-300: 16px;
|
|
147
|
+
--spectrum-spacing-400: 24px;
|
|
148
|
+
--spectrum-spacing-500: 32px;
|
|
149
|
+
--spectrum-spacing-600: 40px;
|
|
150
|
+
--spectrum-spacing-700: 48px;
|
|
151
|
+
--spectrum-spacing-800: 64px;
|
|
152
|
+
--spectrum-spacing-900: 80px;
|
|
153
|
+
--spectrum-spacing-1000: 96px;
|
|
154
|
+
--spectrum-focus-ring-thickness: 2px;
|
|
155
|
+
--spectrum-focus-ring-gap: 2px;
|
|
156
|
+
--spectrum-border-width-200: 2px;
|
|
157
|
+
--spectrum-line-height-100: 1.3;
|
|
158
|
+
--spectrum-line-height-200: 1.5;
|
|
159
|
+
--spectrum-CJK-line-height-100: 1.5;
|
|
160
|
+
--spectrum-CJK-line-height-200: 1.7;
|
|
161
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:host {
|
|
14
|
+
--spectrum-component-pill-edge-to-visual-75: 13px;
|
|
15
|
+
--spectrum-component-pill-edge-to-visual-100: 17px;
|
|
16
|
+
--spectrum-component-pill-edge-to-visual-200: 22px;
|
|
17
|
+
--spectrum-component-pill-edge-to-visual-300: 27px;
|
|
18
|
+
--spectrum-component-pill-edge-to-visual-only-75: 5px;
|
|
19
|
+
--spectrum-component-pill-edge-to-visual-only-100: 9px;
|
|
20
|
+
--spectrum-component-pill-edge-to-visual-only-200: 13px;
|
|
21
|
+
--spectrum-component-pill-edge-to-visual-only-300: 16px;
|
|
22
|
+
--spectrum-component-pill-edge-to-text-75: 15px;
|
|
23
|
+
--spectrum-component-pill-edge-to-text-100: 20px;
|
|
24
|
+
--spectrum-component-pill-edge-to-text-200: 25px;
|
|
25
|
+
--spectrum-component-pill-edge-to-text-300: 30px;
|
|
26
|
+
--spectrum-component-edge-to-visual-50: 7px;
|
|
27
|
+
--spectrum-component-edge-to-visual-75: 9px;
|
|
28
|
+
--spectrum-component-edge-to-visual-100: 12px;
|
|
29
|
+
--spectrum-component-edge-to-visual-200: 16px;
|
|
30
|
+
--spectrum-component-edge-to-visual-300: 19px;
|
|
31
|
+
--spectrum-component-edge-to-visual-only-50: 4px;
|
|
32
|
+
--spectrum-component-edge-to-visual-only-75: 5px;
|
|
33
|
+
--spectrum-component-edge-to-visual-only-100: 9px;
|
|
34
|
+
--spectrum-component-edge-to-visual-only-200: 13px;
|
|
35
|
+
--spectrum-component-edge-to-visual-only-300: 16px;
|
|
36
|
+
--spectrum-component-edge-to-text-50: 10px;
|
|
37
|
+
--spectrum-component-edge-to-text-75: 11px;
|
|
38
|
+
--spectrum-component-edge-to-text-100: 15px;
|
|
39
|
+
--spectrum-component-edge-to-text-200: 19px;
|
|
40
|
+
--spectrum-component-edge-to-text-300: 22px;
|
|
41
|
+
--spectrum-component-height-50: 26px;
|
|
42
|
+
--spectrum-component-height-75: 30px;
|
|
43
|
+
--spectrum-component-height-100: 40px;
|
|
44
|
+
--spectrum-component-height-200: 50px;
|
|
45
|
+
--spectrum-component-height-300: 60px;
|
|
46
|
+
--spectrum-component-top-to-workflow-icon-50: 4px;
|
|
47
|
+
--spectrum-component-top-to-workflow-icon-75: 5px;
|
|
48
|
+
--spectrum-component-top-to-workflow-icon-100: 9px;
|
|
49
|
+
--spectrum-component-top-to-workflow-icon-200: 13px;
|
|
50
|
+
--spectrum-component-top-to-workflow-icon-300: 16px;
|
|
51
|
+
--spectrum-component-top-to-text-50: 4px;
|
|
52
|
+
--spectrum-component-top-to-text-75: 5px;
|
|
53
|
+
--spectrum-component-top-to-text-100: 8px;
|
|
54
|
+
--spectrum-component-top-to-text-200: 12px;
|
|
55
|
+
--spectrum-component-top-to-text-300: 15px;
|
|
56
|
+
--spectrum-component-bottom-to-text-50: 6px;
|
|
57
|
+
--spectrum-component-bottom-to-text-75: 7px;
|
|
58
|
+
--spectrum-component-bottom-to-text-100: 11px;
|
|
59
|
+
--spectrum-component-bottom-to-text-200: 14px;
|
|
60
|
+
--spectrum-component-bottom-to-text-300: 18px;
|
|
61
|
+
--spectrum-action-bar-height: 56px;
|
|
62
|
+
--spectrum-action-bar-top-to-item-counter: 16px;
|
|
63
|
+
--spectrum-action-button-edge-to-hold-icon-small: 3px;
|
|
64
|
+
--spectrum-action-button-edge-to-hold-icon-medium: 5px;
|
|
65
|
+
--spectrum-action-button-edge-to-hold-icon-large: 6px;
|
|
66
|
+
--spectrum-action-button-edge-to-hold-icon-extra-large: 7px;
|
|
67
|
+
--spectrum-field-label-text-to-asterisk-small: 5px;
|
|
68
|
+
--spectrum-field-label-text-to-asterisk-medium: 5px;
|
|
69
|
+
--spectrum-field-label-text-to-asterisk-large: 6px;
|
|
70
|
+
--spectrum-field-label-text-to-asterisk-extra-large: 6px;
|
|
71
|
+
--spectrum-field-label-top-to-asterisk-small: 11px;
|
|
72
|
+
--spectrum-field-label-top-to-asterisk-medium: 15px;
|
|
73
|
+
--spectrum-field-label-top-to-asterisk-large: 19px;
|
|
74
|
+
--spectrum-field-label-top-to-asterisk-extra-large: 24px;
|
|
75
|
+
--spectrum-field-label-top-margin-small: 0px;
|
|
76
|
+
--spectrum-field-label-top-margin-medium: 5px;
|
|
77
|
+
--spectrum-field-label-top-margin-large: 5px;
|
|
78
|
+
--spectrum-field-label-top-margin-extra-large: 5px;
|
|
79
|
+
--spectrum-help-text-top-to-workflow-icon-small: 5px;
|
|
80
|
+
--spectrum-help-text-top-to-workflow-icon-medium: 9px;
|
|
81
|
+
--spectrum-help-text-top-to-workflow-icon-large: 13px;
|
|
82
|
+
--spectrum-help-text-top-to-workflow-icon-extra-large: 16px;
|
|
83
|
+
--spectrum-in-line-alert-minimum-width: 360px;
|
|
84
|
+
--spectrum-progress-bar-minimum-width: 48px;
|
|
85
|
+
--spectrum-progress-bar-maximum-width: 768px;
|
|
86
|
+
--spectrum-progress-bar-thickness-small: 5px;
|
|
87
|
+
--spectrum-progress-bar-thickness-medium: 8px;
|
|
88
|
+
--spectrum-progress-bar-thickness-large: 10px;
|
|
89
|
+
--spectrum-progress-bar-thickness-extra-large: 13px;
|
|
90
|
+
--spectrum-progress-circle-size-small: 20px;
|
|
91
|
+
--spectrum-progress-circle-size-medium: 40px;
|
|
92
|
+
--spectrum-progress-circle-size-large: 80px;
|
|
93
|
+
--spectrum-progress-circle-thickness-small: 3px;
|
|
94
|
+
--spectrum-progress-circle-thickness-medium: 4px;
|
|
95
|
+
--spectrum-progress-circle-thickness-large: 5px;
|
|
96
|
+
--spectrum-status-light-dot-size-small: 8px;
|
|
97
|
+
--spectrum-status-light-dot-size-medium: 10px;
|
|
98
|
+
--spectrum-status-light-dot-size-large: 12px;
|
|
99
|
+
--spectrum-status-light-dot-size-extra-large: 12px;
|
|
100
|
+
--spectrum-status-light-top-to-dot-small: 11px;
|
|
101
|
+
--spectrum-status-light-top-to-dot-medium: 15px;
|
|
102
|
+
--spectrum-status-light-top-to-dot-large: 19px;
|
|
103
|
+
--spectrum-status-light-top-to-dot-extra-large: 24px;
|
|
104
|
+
--spectrum-toast-height: 56px;
|
|
105
|
+
--spectrum-toast-top-to-workflow-icon: 17px;
|
|
106
|
+
--spectrum-toast-top-to-text: 16px;
|
|
107
|
+
--spectrum-toast-bottom-to-text: 19px;
|
|
108
|
+
--spectrum-tooltip-width: 10px;
|
|
109
|
+
--spectrum-tooltip-height: 5px;
|
|
110
|
+
--spectrum-tooltip-maximum-width: 200px;
|
|
111
|
+
--spectrum-font-size-50: 13px;
|
|
112
|
+
--spectrum-font-size-75: 15px;
|
|
113
|
+
--spectrum-font-size-100: 17px;
|
|
114
|
+
--spectrum-font-size-200: 19px;
|
|
115
|
+
--spectrum-font-size-300: 22px;
|
|
116
|
+
--spectrum-font-size-400: 24px;
|
|
117
|
+
--spectrum-font-size-500: 27px;
|
|
118
|
+
--spectrum-font-size-600: 31px;
|
|
119
|
+
--spectrum-font-size-700: 34px;
|
|
120
|
+
--spectrum-font-size-800: 39px;
|
|
121
|
+
--spectrum-font-size-900: 44px;
|
|
122
|
+
--spectrum-font-size-1000: 49px;
|
|
123
|
+
--spectrum-font-size-1100: 55px;
|
|
124
|
+
--spectrum-font-size-1200: 62px;
|
|
125
|
+
--spectrum-font-size-1300: 70px;
|
|
126
|
+
--spectrum-workflow-icon-size-50: 18px;
|
|
127
|
+
--spectrum-workflow-icon-size-75: 20px;
|
|
128
|
+
--spectrum-workflow-icon-size-100: 22px;
|
|
129
|
+
--spectrum-workflow-icon-size-200: 24px;
|
|
130
|
+
--spectrum-workflow-icon-size-300: 28px;
|
|
131
|
+
--spectrum-text-to-visual-50: 8px;
|
|
132
|
+
--spectrum-text-to-visual-75: 9px;
|
|
133
|
+
--spectrum-text-to-visual-100: 10px;
|
|
134
|
+
--spectrum-text-to-visual-200: 11px;
|
|
135
|
+
--spectrum-text-to-visual-300: 13px;
|
|
136
|
+
--spectrum-text-to-control-75: 11px;
|
|
137
|
+
--spectrum-text-to-control-100: 13px;
|
|
138
|
+
--spectrum-text-to-control-200: 14px;
|
|
139
|
+
--spectrum-text-to-control-300: 16px;
|
|
140
|
+
}
|