suus-design-tokens 1.0.21 → 1.0.22
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 +2 -0
- package/dist/tokens.js +2 -0
- package/dist/tokens.json +4 -2
- 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);
|
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";
|
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
|
},
|