@seed-design/css 0.1.15 → 0.2.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/all.css +72 -64
- package/all.min.css +1 -1
- package/base.css +36 -28
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +4 -4
- package/recipes/action-sheet-item.css +1 -1
- package/recipes/action-sheet.css +1 -1
- package/recipes/app-bar.css +1 -1
- package/recipes/avatar.css +1 -1
- package/recipes/badge.css +6 -6
- package/recipes/checkbox.css +2 -2
- package/recipes/chip.css +5 -5
- package/recipes/control-chip.css +1 -1
- package/recipes/extended-action-sheet-item.css +1 -1
- package/recipes/menu-sheet-item.css +1 -1
- package/recipes/radio.css +1 -1
- package/recipes/reaction-button.css +3 -3
- package/recipes/select-box.css +4 -4
- package/recipes/tabs.css +1 -1
- package/recipes/text-field.css +3 -3
- package/vars/color/fg.d.ts +3 -3
- package/vars/color/fg.mjs +3 -3
- package/vars/color/stroke.d.ts +14 -10
- package/vars/color/stroke.mjs +14 -10
- package/vars/component/action-button.d.ts +4 -4
- package/vars/component/action-button.mjs +4 -4
- package/vars/component/action-sheet.d.ts +1 -1
- package/vars/component/action-sheet.mjs +1 -1
- package/vars/component/avatar.d.ts +1 -1
- package/vars/component/avatar.mjs +1 -1
- package/vars/component/badge.d.ts +6 -6
- package/vars/component/badge.mjs +6 -6
- package/vars/component/checkbox.d.ts +2 -2
- package/vars/component/checkbox.mjs +2 -2
- package/vars/component/chip.d.ts +6 -6
- package/vars/component/chip.mjs +6 -6
- package/vars/component/control-chip.d.ts +1 -1
- package/vars/component/control-chip.mjs +1 -1
- package/vars/component/extended-action-sheet.d.ts +1 -1
- package/vars/component/extended-action-sheet.mjs +1 -1
- package/vars/component/menu-sheet.d.ts +1 -1
- package/vars/component/menu-sheet.mjs +1 -1
- package/vars/component/radio.d.ts +1 -1
- package/vars/component/radio.mjs +1 -1
- package/vars/component/reaction-button.d.ts +1 -1
- package/vars/component/reaction-button.mjs +1 -1
- package/vars/component/select-box.d.ts +4 -4
- package/vars/component/select-box.mjs +4 -4
- package/vars/component/tablist.d.ts +1 -1
- package/vars/component/tablist.mjs +1 -1
- package/vars/component/text-field.d.ts +4 -4
- package/vars/component/text-field.mjs +4 -4
- package/vars/component/top-navigation.d.ts +1 -1
- package/vars/component/top-navigation.mjs +1 -1
|
@@ -12,7 +12,7 @@ export const vars = {
|
|
|
12
12
|
"field": {
|
|
13
13
|
"color": "var(--seed-color-bg-layer-default)",
|
|
14
14
|
"strokeWidth": "1px",
|
|
15
|
-
"strokeColor": "var(--seed-color-stroke-
|
|
15
|
+
"strokeColor": "var(--seed-color-stroke-neutral-weak)"
|
|
16
16
|
},
|
|
17
17
|
"value": {
|
|
18
18
|
"color": "var(--seed-color-fg-neutral)"
|
|
@@ -51,19 +51,19 @@ export const vars = {
|
|
|
51
51
|
},
|
|
52
52
|
"focused": {
|
|
53
53
|
"field": {
|
|
54
|
-
"strokeColor": "var(--seed-color-stroke-
|
|
54
|
+
"strokeColor": "var(--seed-color-stroke-neutral-contrast)"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"invalid": {
|
|
58
58
|
"field": {
|
|
59
59
|
"color": "var(--seed-color-bg-critical-weak)",
|
|
60
|
-
"strokeColor": "var(--seed-color-stroke-critical)"
|
|
60
|
+
"strokeColor": "var(--seed-color-stroke-critical-weak)"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"invalidFocused": {
|
|
64
64
|
"field": {
|
|
65
65
|
"color": "var(--seed-color-bg-layer-default)",
|
|
66
|
-
"strokeColor": "var(--seed-color-stroke-
|
|
66
|
+
"strokeColor": "var(--seed-color-stroke-neutral-weak)"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"readonly": {
|