suus-design-tokens 1.0.21 → 1.0.23
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/tokens.css +6 -0
- package/dist/tokens.js +6 -0
- package/dist/tokens.json +10 -4
- package/package.json +1 -1
package/dist/tokens.css
CHANGED
|
@@ -73,8 +73,10 @@
|
|
|
73
73
|
--color-surface-gradient-to: var(--color-green-midnight);
|
|
74
74
|
--color-form-background-enabled: var(--color-gray-white);
|
|
75
75
|
--color-form-background-disabled: var(--color-gray-light);
|
|
76
|
+
--color-form-background-checked: var(--color-green-midnight);
|
|
76
77
|
--color-form-glassy-background-enabled: var(--color-gray-white-transparent-40);
|
|
77
78
|
--color-form-glassy-background-disabled: var(--color-gray-light);
|
|
79
|
+
--color-form-glassy-background-checked: var(--color-green-midnight);
|
|
78
80
|
--color-text-dark: var(--color-gray-dark);
|
|
79
81
|
--color-text-light: var(--color-gray-white);
|
|
80
82
|
--color-text-muted: var(--color-gray-midnight);
|
|
@@ -139,12 +141,16 @@
|
|
|
139
141
|
--button-padding-right: var(--padding-40);
|
|
140
142
|
--form-input-default-background-enabled: var(--color-gray-white);
|
|
141
143
|
--form-input-default-background-disabled: var(--color-gray-bright);
|
|
144
|
+
--form-input-default-background-hover: var(--color-green-default);
|
|
145
|
+
--form-input-default-border-color-hover: var(--color-green-midnight);
|
|
142
146
|
--form-input-default-border-color-disabled: var(--color-gray-light);
|
|
143
147
|
--form-input-glassy-background-enabled: var(--color-gray-white-transparent-40);
|
|
144
148
|
--form-input-glassy-background-disabled: var(--color-gray-bright);
|
|
149
|
+
--form-input-glassy-background-hover: var(--color-green-midnight);
|
|
145
150
|
--form-input-glassy-text-placeholder: var(--color-gray-light);
|
|
146
151
|
--form-input-glassy-border-color-enabled: var(--color-gray-white-transparent-70);
|
|
147
152
|
--form-input-glassy-border-color-selected: var(--color-gray-white);
|
|
153
|
+
--form-input-glassy-border-color-hover: var(--color-green-midnight);
|
|
148
154
|
--form-input-glassy-border-color-disabled: var(--color-gray-light);
|
|
149
155
|
--form-input-radius: var(--radius-default);
|
|
150
156
|
--form-message-font-size: var(--typeface-font-size-small-16);
|
package/dist/tokens.js
CHANGED
|
@@ -40,8 +40,10 @@ export const ColorSurfaceGradientFrom = "#d0e646";
|
|
|
40
40
|
export const ColorSurfaceGradientTo = "#5c6814";
|
|
41
41
|
export const ColorFormBackgroundEnabled = "#ffffff";
|
|
42
42
|
export const ColorFormBackgroundDisabled = "#dfdfdf";
|
|
43
|
+
export const ColorFormBackgroundChecked = "#5c6814";
|
|
43
44
|
export const ColorFormGlassyBackgroundEnabled = "#ffffff66";
|
|
44
45
|
export const ColorFormGlassyBackgroundDisabled = "#dfdfdf";
|
|
46
|
+
export const ColorFormGlassyBackgroundChecked = "#5c6814";
|
|
45
47
|
export const ColorTextDark = "#272727";
|
|
46
48
|
export const ColorTextLight = "#ffffff";
|
|
47
49
|
export const ColorTextMuted = "#5b5a5a";
|
|
@@ -236,19 +238,23 @@ export const ButtonPaddingLeft = "32px";
|
|
|
236
238
|
export const ButtonPaddingRight = "40px";
|
|
237
239
|
export const FormInputDefaultBackgroundEnabled = "#ffffff";
|
|
238
240
|
export const FormInputDefaultBackgroundDisabled = "#eeeeee";
|
|
241
|
+
export const FormInputDefaultBackgroundHover = "#afc33b";
|
|
239
242
|
export const FormInputDefaultTextLabel = "#272727";
|
|
240
243
|
export const FormInputDefaultTextContent = "#272727";
|
|
241
244
|
export const FormInputDefaultTextPlaceholder = "#c2bfbf";
|
|
242
245
|
export const FormInputDefaultBorderColorEnabled = "#dfdfdf";
|
|
243
246
|
export const FormInputDefaultBorderColorSelected = "#afc33b";
|
|
247
|
+
export const FormInputDefaultBorderColorHover = "#5c6814";
|
|
244
248
|
export const FormInputDefaultBorderColorDisabled = "#dfdfdf";
|
|
245
249
|
export const FormInputGlassyBackgroundEnabled = "#ffffff66";
|
|
246
250
|
export const FormInputGlassyBackgroundDisabled = "#eeeeee";
|
|
251
|
+
export const FormInputGlassyBackgroundHover = "#5c6814";
|
|
247
252
|
export const FormInputGlassyTextLabel = "#ffffff";
|
|
248
253
|
export const FormInputGlassyTextPlaceholder = "#dfdfdf";
|
|
249
254
|
export const FormInputGlassyTextContent = "#ffffff";
|
|
250
255
|
export const FormInputGlassyBorderColorEnabled = "#ffffffb3";
|
|
251
256
|
export const FormInputGlassyBorderColorSelected = "#ffffff";
|
|
257
|
+
export const FormInputGlassyBorderColorHover = "#5c6814";
|
|
252
258
|
export const FormInputGlassyBorderColorDisabled = "#dfdfdf";
|
|
253
259
|
export const FormInputRadius = "16px";
|
|
254
260
|
export const FormMessageInfoTextColor = "#afc33b";
|
package/dist/tokens.json
CHANGED
|
@@ -53,12 +53,14 @@
|
|
|
53
53
|
"form": {
|
|
54
54
|
"background": {
|
|
55
55
|
"enabled": "#ffffff",
|
|
56
|
-
"disabled": "#dfdfdf"
|
|
56
|
+
"disabled": "#dfdfdf",
|
|
57
|
+
"checked": "#5c6814"
|
|
57
58
|
},
|
|
58
59
|
"glassy": {
|
|
59
60
|
"background": {
|
|
60
61
|
"enabled": "#ffffff66",
|
|
61
|
-
"disabled": "#dfdfdf"
|
|
62
|
+
"disabled": "#dfdfdf",
|
|
63
|
+
"checked": "#5c6814"
|
|
62
64
|
}
|
|
63
65
|
}
|
|
64
66
|
},
|
|
@@ -368,7 +370,8 @@
|
|
|
368
370
|
"default": {
|
|
369
371
|
"background": {
|
|
370
372
|
"enabled": "#ffffff",
|
|
371
|
-
"disabled": "#eeeeee"
|
|
373
|
+
"disabled": "#eeeeee",
|
|
374
|
+
"hover": "#afc33b"
|
|
372
375
|
},
|
|
373
376
|
"text": {
|
|
374
377
|
"label": "#272727",
|
|
@@ -379,6 +382,7 @@
|
|
|
379
382
|
"color": {
|
|
380
383
|
"enabled": "#dfdfdf",
|
|
381
384
|
"selected": "#afc33b",
|
|
385
|
+
"hover": "#5c6814",
|
|
382
386
|
"disabled": "#dfdfdf"
|
|
383
387
|
}
|
|
384
388
|
}
|
|
@@ -386,7 +390,8 @@
|
|
|
386
390
|
"glassy": {
|
|
387
391
|
"background": {
|
|
388
392
|
"enabled": "#ffffff66",
|
|
389
|
-
"disabled": "#eeeeee"
|
|
393
|
+
"disabled": "#eeeeee",
|
|
394
|
+
"hover": "#5c6814"
|
|
390
395
|
},
|
|
391
396
|
"text": {
|
|
392
397
|
"label": "#ffffff",
|
|
@@ -397,6 +402,7 @@
|
|
|
397
402
|
"color": {
|
|
398
403
|
"enabled": "#ffffffb3",
|
|
399
404
|
"selected": "#ffffff",
|
|
405
|
+
"hover": "#5c6814",
|
|
400
406
|
"disabled": "#dfdfdf"
|
|
401
407
|
}
|
|
402
408
|
}
|