@seed-design/css 0.0.1-rc.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.
Files changed (219) hide show
  1. package/README.md +1 -0
  2. package/package.json +42 -0
  3. package/recipes/action-button.d.ts +32 -0
  4. package/recipes/action-button.mjs +87 -0
  5. package/recipes/action-chip.d.ts +28 -0
  6. package/recipes/action-chip.mjs +60 -0
  7. package/recipes/action-sheet-item.d.ts +24 -0
  8. package/recipes/action-sheet-item.mjs +38 -0
  9. package/recipes/action-sheet.d.ts +21 -0
  10. package/recipes/action-sheet.mjs +59 -0
  11. package/recipes/app-bar-main.d.ts +36 -0
  12. package/recipes/app-bar-main.mjs +61 -0
  13. package/recipes/app-bar.d.ts +36 -0
  14. package/recipes/app-bar.mjs +68 -0
  15. package/recipes/app-screen.d.ts +36 -0
  16. package/recipes/app-screen.mjs +66 -0
  17. package/recipes/avatar-stack.d.ts +24 -0
  18. package/recipes/avatar-stack.mjs +45 -0
  19. package/recipes/avatar.d.ts +24 -0
  20. package/recipes/avatar.mjs +55 -0
  21. package/recipes/badge.d.ts +36 -0
  22. package/recipes/badge.mjs +126 -0
  23. package/recipes/bottom-sheet.d.ts +21 -0
  24. package/recipes/bottom-sheet.mjs +63 -0
  25. package/recipes/callout.d.ts +24 -0
  26. package/recipes/callout.mjs +61 -0
  27. package/recipes/checkbox.d.ts +32 -0
  28. package/recipes/checkbox.mjs +77 -0
  29. package/recipes/chip-tabs.d.ts +32 -0
  30. package/recipes/chip-tabs.mjs +68 -0
  31. package/recipes/className.mjs +25 -0
  32. package/recipes/control-chip.d.ts +28 -0
  33. package/recipes/control-chip.mjs +60 -0
  34. package/recipes/dialog.d.ts +21 -0
  35. package/recipes/dialog.mjs +59 -0
  36. package/recipes/extended-action-sheet-item.d.ts +24 -0
  37. package/recipes/extended-action-sheet-item.mjs +38 -0
  38. package/recipes/extended-action-sheet.d.ts +21 -0
  39. package/recipes/extended-action-sheet.mjs +63 -0
  40. package/recipes/extended-fab.d.ts +28 -0
  41. package/recipes/extended-fab.mjs +43 -0
  42. package/recipes/fab.d.ts +21 -0
  43. package/recipes/fab.mjs +31 -0
  44. package/recipes/help-bubble.d.ts +21 -0
  45. package/recipes/help-bubble.mjs +55 -0
  46. package/recipes/identity-placeholder.d.ts +24 -0
  47. package/recipes/identity-placeholder.mjs +41 -0
  48. package/recipes/inline-banner.d.ts +24 -0
  49. package/recipes/inline-banner.mjs +63 -0
  50. package/recipes/link-with-icon.d.ts +24 -0
  51. package/recipes/link-with-icon.mjs +39 -0
  52. package/recipes/manner-temp-badge.d.ts +24 -0
  53. package/recipes/manner-temp-badge.mjs +42 -0
  54. package/recipes/mergeVariants.mjs +9 -0
  55. package/recipes/progress-circle.d.ts +28 -0
  56. package/recipes/progress-circle.mjs +54 -0
  57. package/recipes/pull-to-refresh.d.ts +21 -0
  58. package/recipes/pull-to-refresh.mjs +35 -0
  59. package/recipes/radio.d.ts +24 -0
  60. package/recipes/radio.mjs +42 -0
  61. package/recipes/reaction-button.d.ts +24 -0
  62. package/recipes/reaction-button.mjs +38 -0
  63. package/recipes/segmented-control.d.ts +21 -0
  64. package/recipes/segmented-control.mjs +39 -0
  65. package/recipes/select-box-group.d.ts +21 -0
  66. package/recipes/select-box-group.mjs +31 -0
  67. package/recipes/select-box.d.ts +21 -0
  68. package/recipes/select-box.mjs +59 -0
  69. package/recipes/skeleton.d.ts +24 -0
  70. package/recipes/skeleton.mjs +40 -0
  71. package/recipes/snackbar-region.d.ts +21 -0
  72. package/recipes/snackbar-region.mjs +31 -0
  73. package/recipes/snackbar.d.ts +24 -0
  74. package/recipes/snackbar.mjs +51 -0
  75. package/recipes/splitVariantProps.mjs +12 -0
  76. package/recipes/switch.d.ts +24 -0
  77. package/recipes/switch.mjs +50 -0
  78. package/recipes/tabs.d.ts +36 -0
  79. package/recipes/tabs.mjs +81 -0
  80. package/recipes/text-field.d.ts +24 -0
  81. package/recipes/text-field.mjs +103 -0
  82. package/recipes/text.d.ts +28 -0
  83. package/recipes/text.mjs +64 -0
  84. package/recipes/toggle-button.d.ts +28 -0
  85. package/recipes/toggle-button.mjs +43 -0
  86. package/recipes/visually-hidden.d.ts +21 -0
  87. package/recipes/visually-hidden.mjs +31 -0
  88. package/seed.css +5017 -0
  89. package/seed.min.css +1 -0
  90. package/vars/color/bg.d.ts +37 -0
  91. package/vars/color/bg.mjs +37 -0
  92. package/vars/color/fg.d.ts +16 -0
  93. package/vars/color/fg.mjs +16 -0
  94. package/vars/color/index.d.ts +5 -0
  95. package/vars/color/index.mjs +5 -0
  96. package/vars/color/manner-temp/index.d.ts +6 -0
  97. package/vars/color/manner-temp/index.mjs +6 -0
  98. package/vars/color/manner-temp/l1.d.ts +2 -0
  99. package/vars/color/manner-temp/l1.mjs +2 -0
  100. package/vars/color/manner-temp/l2.d.ts +2 -0
  101. package/vars/color/manner-temp/l2.mjs +2 -0
  102. package/vars/color/manner-temp/l3.d.ts +2 -0
  103. package/vars/color/manner-temp/l3.mjs +2 -0
  104. package/vars/color/manner-temp/l4.d.ts +2 -0
  105. package/vars/color/manner-temp/l4.mjs +2 -0
  106. package/vars/color/manner-temp/l5.d.ts +2 -0
  107. package/vars/color/manner-temp/l5.mjs +2 -0
  108. package/vars/color/manner-temp/l6.d.ts +2 -0
  109. package/vars/color/manner-temp/l6.mjs +2 -0
  110. package/vars/color/palette.d.ts +78 -0
  111. package/vars/color/palette.mjs +78 -0
  112. package/vars/color/stroke.d.ts +10 -0
  113. package/vars/color/stroke.mjs +10 -0
  114. package/vars/component/action-button.d.ts +491 -0
  115. package/vars/component/action-button.mjs +491 -0
  116. package/vars/component/action-chip.d.ts +128 -0
  117. package/vars/component/action-chip.mjs +128 -0
  118. package/vars/component/action-sheet-close-button.d.ts +23 -0
  119. package/vars/component/action-sheet-close-button.mjs +23 -0
  120. package/vars/component/action-sheet-item.d.ts +36 -0
  121. package/vars/component/action-sheet-item.mjs +36 -0
  122. package/vars/component/action-sheet.d.ts +45 -0
  123. package/vars/component/action-sheet.mjs +45 -0
  124. package/vars/component/avatar-stack.d.ts +60 -0
  125. package/vars/component/avatar-stack.mjs +60 -0
  126. package/vars/component/avatar.d.ts +83 -0
  127. package/vars/component/avatar.mjs +83 -0
  128. package/vars/component/badge.d.ts +223 -0
  129. package/vars/component/badge.mjs +223 -0
  130. package/vars/component/bottom-sheet.d.ts +61 -0
  131. package/vars/component/bottom-sheet.mjs +61 -0
  132. package/vars/component/callout.d.ts +173 -0
  133. package/vars/component/callout.mjs +173 -0
  134. package/vars/component/checkbox.d.ts +171 -0
  135. package/vars/component/checkbox.mjs +171 -0
  136. package/vars/component/chip-tab.d.ts +98 -0
  137. package/vars/component/chip-tab.mjs +98 -0
  138. package/vars/component/chip-tablist.d.ts +23 -0
  139. package/vars/component/chip-tablist.mjs +23 -0
  140. package/vars/component/control-chip.d.ts +156 -0
  141. package/vars/component/control-chip.mjs +156 -0
  142. package/vars/component/dialog.d.ts +49 -0
  143. package/vars/component/dialog.mjs +49 -0
  144. package/vars/component/extended-action-sheet-close-button.d.ts +25 -0
  145. package/vars/component/extended-action-sheet-close-button.mjs +25 -0
  146. package/vars/component/extended-action-sheet-item.d.ts +46 -0
  147. package/vars/component/extended-action-sheet-item.mjs +46 -0
  148. package/vars/component/extended-action-sheet.d.ts +48 -0
  149. package/vars/component/extended-action-sheet.mjs +48 -0
  150. package/vars/component/extended-fab.d.ts +82 -0
  151. package/vars/component/extended-fab.mjs +82 -0
  152. package/vars/component/fab.d.ts +21 -0
  153. package/vars/component/fab.mjs +21 -0
  154. package/vars/component/help-bubble.d.ts +36 -0
  155. package/vars/component/help-bubble.mjs +36 -0
  156. package/vars/component/identity-placeholder.d.ts +12 -0
  157. package/vars/component/identity-placeholder.mjs +12 -0
  158. package/vars/component/index.d.ts +40 -0
  159. package/vars/component/index.mjs +40 -0
  160. package/vars/component/inline-banner.d.ts +191 -0
  161. package/vars/component/inline-banner.mjs +191 -0
  162. package/vars/component/link-with-icon.d.ts +46 -0
  163. package/vars/component/link-with-icon.mjs +46 -0
  164. package/vars/component/manner-temp-badge.d.ts +77 -0
  165. package/vars/component/manner-temp-badge.mjs +77 -0
  166. package/vars/component/progress-circle.d.ts +67 -0
  167. package/vars/component/progress-circle.mjs +67 -0
  168. package/vars/component/radio.d.ts +77 -0
  169. package/vars/component/radio.mjs +77 -0
  170. package/vars/component/reaction-button.d.ts +134 -0
  171. package/vars/component/reaction-button.mjs +134 -0
  172. package/vars/component/segmented-control-item.d.ts +34 -0
  173. package/vars/component/segmented-control-item.mjs +34 -0
  174. package/vars/component/segmented-control.d.ts +18 -0
  175. package/vars/component/segmented-control.mjs +18 -0
  176. package/vars/component/select-box.d.ts +92 -0
  177. package/vars/component/select-box.mjs +92 -0
  178. package/vars/component/skeleton.d.ts +42 -0
  179. package/vars/component/skeleton.mjs +42 -0
  180. package/vars/component/snackbar.d.ts +58 -0
  181. package/vars/component/snackbar.mjs +58 -0
  182. package/vars/component/switch.d.ts +65 -0
  183. package/vars/component/switch.mjs +65 -0
  184. package/vars/component/tab.d.ts +53 -0
  185. package/vars/component/tab.mjs +53 -0
  186. package/vars/component/tablist.d.ts +51 -0
  187. package/vars/component/tablist.mjs +51 -0
  188. package/vars/component/text-field.d.ts +295 -0
  189. package/vars/component/text-field.mjs +295 -0
  190. package/vars/component/toggle-button.d.ts +205 -0
  191. package/vars/component/toggle-button.mjs +205 -0
  192. package/vars/component/top-navigation.d.ts +86 -0
  193. package/vars/component/top-navigation.mjs +86 -0
  194. package/vars/component/typography.d.ts +200 -0
  195. package/vars/component/typography.mjs +200 -0
  196. package/vars/dimension/index.d.ts +22 -0
  197. package/vars/dimension/index.mjs +22 -0
  198. package/vars/dimension/spacing-x.d.ts +2 -0
  199. package/vars/dimension/spacing-x.mjs +2 -0
  200. package/vars/dimension/spacing-y.d.ts +2 -0
  201. package/vars/dimension/spacing-y.mjs +2 -0
  202. package/vars/duration.d.ts +6 -0
  203. package/vars/duration.mjs +6 -0
  204. package/vars/font-size.d.ts +13 -0
  205. package/vars/font-size.mjs +13 -0
  206. package/vars/font-weight.d.ts +3 -0
  207. package/vars/font-weight.mjs +3 -0
  208. package/vars/gradient.d.ts +1 -0
  209. package/vars/gradient.mjs +1 -0
  210. package/vars/index.d.ts +32 -0
  211. package/vars/index.mjs +1 -0
  212. package/vars/line-height.d.ts +10 -0
  213. package/vars/line-height.mjs +10 -0
  214. package/vars/radius.d.ts +11 -0
  215. package/vars/radius.mjs +11 -0
  216. package/vars/timing-function.d.ts +6 -0
  217. package/vars/timing-function.mjs +6 -0
  218. package/vars/vars.d.ts +9 -0
  219. package/vars/vars.mjs +9 -0
@@ -0,0 +1,173 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "paddingX": "var(--seed-dimension-x3_5)",
6
+ "paddingY": "var(--seed-dimension-x3_5)",
7
+ "gap": "var(--seed-dimension-x3)",
8
+ "cornerRadius": "var(--seed-radius-r2_5)",
9
+ "minHeight": "50px"
10
+ },
11
+ "prefixIcon": {
12
+ "size": "var(--seed-dimension-x4)"
13
+ },
14
+ "title": {
15
+ "fontSize": "var(--seed-font-size-t4)",
16
+ "lineHeight": "var(--seed-line-height-t4)",
17
+ "fontWeight": "var(--seed-font-weight-bold)"
18
+ },
19
+ "description": {
20
+ "fontSize": "var(--seed-font-size-t4)",
21
+ "lineHeight": "var(--seed-line-height-t4)",
22
+ "fontWeight": "var(--seed-font-weight-regular)"
23
+ },
24
+ "link": {
25
+ "fontSize": "var(--seed-font-size-t4)",
26
+ "lineHeight": "var(--seed-line-height-t4)",
27
+ "fontWeight": "var(--seed-font-weight-regular)",
28
+ "height": "var(--seed-dimension-x10)",
29
+ "marginLeft": "var(--seed-dimension-x4)"
30
+ },
31
+ "suffixIcon": {
32
+ "size": "var(--seed-dimension-x4)",
33
+ "targetSize": "var(--seed-dimension-x10)",
34
+ "marginLeft": "var(--seed-dimension-x4)"
35
+ }
36
+ }
37
+ },
38
+ "toneNeutral": {
39
+ "enabled": {
40
+ "root": {
41
+ "color": "var(--seed-color-bg-neutral-weak)"
42
+ },
43
+ "prefixIcon": {
44
+ "color": "var(--seed-color-fg-neutral)"
45
+ },
46
+ "title": {
47
+ "color": "var(--seed-color-fg-neutral)"
48
+ },
49
+ "description": {
50
+ "color": "var(--seed-color-fg-neutral)"
51
+ },
52
+ "link": {
53
+ "color": "var(--seed-color-fg-neutral)"
54
+ },
55
+ "suffixIcon": {
56
+ "color": "var(--seed-color-fg-neutral)"
57
+ }
58
+ },
59
+ "pressed": {
60
+ "root": {
61
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
62
+ }
63
+ }
64
+ },
65
+ "toneInformative": {
66
+ "enabled": {
67
+ "root": {
68
+ "color": "var(--seed-color-bg-informative-weak)"
69
+ },
70
+ "prefixIcon": {
71
+ "color": "var(--seed-color-fg-informative-contrast)"
72
+ },
73
+ "title": {
74
+ "color": "var(--seed-color-fg-informative-contrast)"
75
+ },
76
+ "description": {
77
+ "color": "var(--seed-color-fg-informative-contrast)"
78
+ },
79
+ "link": {
80
+ "color": "var(--seed-color-fg-informative-contrast)"
81
+ },
82
+ "suffixIcon": {
83
+ "color": "var(--seed-color-fg-informative-contrast)"
84
+ }
85
+ },
86
+ "pressed": {
87
+ "root": {
88
+ "color": "var(--seed-color-bg-informative-weak-pressed)"
89
+ }
90
+ }
91
+ },
92
+ "toneWarning": {
93
+ "enabled": {
94
+ "root": {
95
+ "color": "var(--seed-color-bg-warning-weak)"
96
+ },
97
+ "prefixIcon": {
98
+ "color": "var(--seed-color-fg-warning-contrast)"
99
+ },
100
+ "title": {
101
+ "color": "var(--seed-color-fg-warning-contrast)"
102
+ },
103
+ "description": {
104
+ "color": "var(--seed-color-fg-warning-contrast)"
105
+ },
106
+ "link": {
107
+ "color": "var(--seed-color-fg-warning-contrast)"
108
+ },
109
+ "suffixIcon": {
110
+ "color": "var(--seed-color-fg-warning-contrast)"
111
+ }
112
+ },
113
+ "pressed": {
114
+ "root": {
115
+ "color": "var(--seed-color-bg-warning-weak-pressed)"
116
+ }
117
+ }
118
+ },
119
+ "toneCritical": {
120
+ "enabled": {
121
+ "root": {
122
+ "color": "var(--seed-color-bg-critical-weak)"
123
+ },
124
+ "prefixIcon": {
125
+ "color": "var(--seed-color-fg-critical-contrast)"
126
+ },
127
+ "title": {
128
+ "color": "var(--seed-color-fg-critical-contrast)"
129
+ },
130
+ "description": {
131
+ "color": "var(--seed-color-fg-critical-contrast)"
132
+ },
133
+ "link": {
134
+ "color": "var(--seed-color-fg-critical-contrast)"
135
+ },
136
+ "suffixIcon": {
137
+ "color": "var(--seed-color-fg-critical-contrast)"
138
+ }
139
+ },
140
+ "pressed": {
141
+ "root": {
142
+ "color": "var(--seed-color-bg-critical-weak-pressed)"
143
+ }
144
+ }
145
+ },
146
+ "toneMagic": {
147
+ "enabled": {
148
+ "root": {
149
+ "color": "var(--seed-color-bg-magic-weak)"
150
+ },
151
+ "prefixIcon": {
152
+ "color": "var(--seed-color-fg-magic-contrast)"
153
+ },
154
+ "title": {
155
+ "color": "var(--seed-color-fg-magic-contrast)"
156
+ },
157
+ "description": {
158
+ "color": "var(--seed-color-fg-magic-contrast)"
159
+ },
160
+ "link": {
161
+ "color": "var(--seed-color-fg-magic-contrast)"
162
+ },
163
+ "suffixIcon": {
164
+ "color": "var(--seed-color-fg-magic-contrast)"
165
+ }
166
+ },
167
+ "pressed": {
168
+ "root": {
169
+ "color": "var(--seed-color-bg-magic-weak-pressed)"
170
+ }
171
+ }
172
+ }
173
+ }
@@ -0,0 +1,173 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "root": {
5
+ "paddingX": "var(--seed-dimension-x3_5)",
6
+ "paddingY": "var(--seed-dimension-x3_5)",
7
+ "gap": "var(--seed-dimension-x3)",
8
+ "cornerRadius": "var(--seed-radius-r2_5)",
9
+ "minHeight": "50px"
10
+ },
11
+ "prefixIcon": {
12
+ "size": "var(--seed-dimension-x4)"
13
+ },
14
+ "title": {
15
+ "fontSize": "var(--seed-font-size-t4)",
16
+ "lineHeight": "var(--seed-line-height-t4)",
17
+ "fontWeight": "var(--seed-font-weight-bold)"
18
+ },
19
+ "description": {
20
+ "fontSize": "var(--seed-font-size-t4)",
21
+ "lineHeight": "var(--seed-line-height-t4)",
22
+ "fontWeight": "var(--seed-font-weight-regular)"
23
+ },
24
+ "link": {
25
+ "fontSize": "var(--seed-font-size-t4)",
26
+ "lineHeight": "var(--seed-line-height-t4)",
27
+ "fontWeight": "var(--seed-font-weight-regular)",
28
+ "height": "var(--seed-dimension-x10)",
29
+ "marginLeft": "var(--seed-dimension-x4)"
30
+ },
31
+ "suffixIcon": {
32
+ "size": "var(--seed-dimension-x4)",
33
+ "targetSize": "var(--seed-dimension-x10)",
34
+ "marginLeft": "var(--seed-dimension-x4)"
35
+ }
36
+ }
37
+ },
38
+ "toneNeutral": {
39
+ "enabled": {
40
+ "root": {
41
+ "color": "var(--seed-color-bg-neutral-weak)"
42
+ },
43
+ "prefixIcon": {
44
+ "color": "var(--seed-color-fg-neutral)"
45
+ },
46
+ "title": {
47
+ "color": "var(--seed-color-fg-neutral)"
48
+ },
49
+ "description": {
50
+ "color": "var(--seed-color-fg-neutral)"
51
+ },
52
+ "link": {
53
+ "color": "var(--seed-color-fg-neutral)"
54
+ },
55
+ "suffixIcon": {
56
+ "color": "var(--seed-color-fg-neutral)"
57
+ }
58
+ },
59
+ "pressed": {
60
+ "root": {
61
+ "color": "var(--seed-color-bg-neutral-weak-pressed)"
62
+ }
63
+ }
64
+ },
65
+ "toneInformative": {
66
+ "enabled": {
67
+ "root": {
68
+ "color": "var(--seed-color-bg-informative-weak)"
69
+ },
70
+ "prefixIcon": {
71
+ "color": "var(--seed-color-fg-informative-contrast)"
72
+ },
73
+ "title": {
74
+ "color": "var(--seed-color-fg-informative-contrast)"
75
+ },
76
+ "description": {
77
+ "color": "var(--seed-color-fg-informative-contrast)"
78
+ },
79
+ "link": {
80
+ "color": "var(--seed-color-fg-informative-contrast)"
81
+ },
82
+ "suffixIcon": {
83
+ "color": "var(--seed-color-fg-informative-contrast)"
84
+ }
85
+ },
86
+ "pressed": {
87
+ "root": {
88
+ "color": "var(--seed-color-bg-informative-weak-pressed)"
89
+ }
90
+ }
91
+ },
92
+ "toneWarning": {
93
+ "enabled": {
94
+ "root": {
95
+ "color": "var(--seed-color-bg-warning-weak)"
96
+ },
97
+ "prefixIcon": {
98
+ "color": "var(--seed-color-fg-warning-contrast)"
99
+ },
100
+ "title": {
101
+ "color": "var(--seed-color-fg-warning-contrast)"
102
+ },
103
+ "description": {
104
+ "color": "var(--seed-color-fg-warning-contrast)"
105
+ },
106
+ "link": {
107
+ "color": "var(--seed-color-fg-warning-contrast)"
108
+ },
109
+ "suffixIcon": {
110
+ "color": "var(--seed-color-fg-warning-contrast)"
111
+ }
112
+ },
113
+ "pressed": {
114
+ "root": {
115
+ "color": "var(--seed-color-bg-warning-weak-pressed)"
116
+ }
117
+ }
118
+ },
119
+ "toneCritical": {
120
+ "enabled": {
121
+ "root": {
122
+ "color": "var(--seed-color-bg-critical-weak)"
123
+ },
124
+ "prefixIcon": {
125
+ "color": "var(--seed-color-fg-critical-contrast)"
126
+ },
127
+ "title": {
128
+ "color": "var(--seed-color-fg-critical-contrast)"
129
+ },
130
+ "description": {
131
+ "color": "var(--seed-color-fg-critical-contrast)"
132
+ },
133
+ "link": {
134
+ "color": "var(--seed-color-fg-critical-contrast)"
135
+ },
136
+ "suffixIcon": {
137
+ "color": "var(--seed-color-fg-critical-contrast)"
138
+ }
139
+ },
140
+ "pressed": {
141
+ "root": {
142
+ "color": "var(--seed-color-bg-critical-weak-pressed)"
143
+ }
144
+ }
145
+ },
146
+ "toneMagic": {
147
+ "enabled": {
148
+ "root": {
149
+ "color": "var(--seed-color-bg-magic-weak)"
150
+ },
151
+ "prefixIcon": {
152
+ "color": "var(--seed-color-fg-magic-contrast)"
153
+ },
154
+ "title": {
155
+ "color": "var(--seed-color-fg-magic-contrast)"
156
+ },
157
+ "description": {
158
+ "color": "var(--seed-color-fg-magic-contrast)"
159
+ },
160
+ "link": {
161
+ "color": "var(--seed-color-fg-magic-contrast)"
162
+ },
163
+ "suffixIcon": {
164
+ "color": "var(--seed-color-fg-magic-contrast)"
165
+ }
166
+ },
167
+ "pressed": {
168
+ "root": {
169
+ "color": "var(--seed-color-bg-magic-weak-pressed)"
170
+ }
171
+ }
172
+ }
173
+ }
@@ -0,0 +1,171 @@
1
+ export declare const vars: {
2
+ "base": {
3
+ "enabled": {
4
+ "label": {
5
+ "color": "var(--seed-color-fg-neutral)"
6
+ },
7
+ "root": {
8
+ "gap": "var(--seed-dimension-x2)"
9
+ }
10
+ }
11
+ },
12
+ "weightDefault": {
13
+ "enabled": {
14
+ "label": {
15
+ "fontWeight": "var(--seed-font-weight-regular)"
16
+ }
17
+ }
18
+ },
19
+ "weightStronger": {
20
+ "enabled": {
21
+ "label": {
22
+ "fontWeight": "var(--seed-font-weight-bold)"
23
+ }
24
+ }
25
+ },
26
+ "variantSquare": {
27
+ "enabled": {
28
+ "control": {
29
+ "strokeColor": "var(--seed-color-stroke-control)",
30
+ "strokeWidth": "1px"
31
+ }
32
+ },
33
+ "enabledSelected": {
34
+ "control": {
35
+ "color": "var(--seed-color-bg-brand-solid)"
36
+ },
37
+ "icon": {
38
+ "color": "var(--seed-color-palette-static-white)"
39
+ }
40
+ },
41
+ "pressed": {
42
+ "control": {
43
+ "color": "var(--seed-color-bg-layer-default-pressed)"
44
+ }
45
+ },
46
+ "pressedSelected": {
47
+ "control": {
48
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
49
+ },
50
+ "icon": {
51
+ "color": "var(--seed-color-palette-static-white)"
52
+ }
53
+ },
54
+ "disabled": {
55
+ "control": {
56
+ "color": "var(--seed-color-bg-disabled)",
57
+ "strokeColor": "var(--seed-color-stroke-neutral)"
58
+ },
59
+ "label": {
60
+ "color": "var(--seed-color-fg-disabled)"
61
+ },
62
+ "icon": {
63
+ "color": "var(--seed-color-fg-disabled)"
64
+ }
65
+ },
66
+ "disabledSelected": {
67
+ "label": {
68
+ "color": "var(--seed-color-fg-disabled)"
69
+ },
70
+ "icon": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ }
73
+ }
74
+ },
75
+ "variantGhost": {
76
+ "enabled": {
77
+ "icon": {
78
+ "color": "var(--seed-color-fg-placeholder)"
79
+ }
80
+ },
81
+ "enabledSelected": {
82
+ "icon": {
83
+ "color": "var(--seed-color-fg-brand)"
84
+ }
85
+ },
86
+ "pressed": {
87
+ "control": {
88
+ "color": "var(--seed-color-bg-layer-default-pressed)"
89
+ }
90
+ },
91
+ "pressedSelected": {
92
+ "control": {
93
+ "color": "var(--seed-color-palette-carrot-200)"
94
+ }
95
+ },
96
+ "disabled": {
97
+ "label": {
98
+ "color": "var(--seed-color-fg-disabled)"
99
+ },
100
+ "icon": {
101
+ "color": "var(--seed-color-fg-disabled)"
102
+ }
103
+ },
104
+ "disabledSelected": {
105
+ "label": {
106
+ "color": "var(--seed-color-fg-disabled)"
107
+ },
108
+ "icon": {
109
+ "color": "var(--seed-color-fg-disabled)"
110
+ }
111
+ }
112
+ },
113
+ "sizeMedium": {
114
+ "enabled": {
115
+ "root": {
116
+ "minHeight": "var(--seed-dimension-x8)"
117
+ },
118
+ "label": {
119
+ "fontSize": "var(--seed-font-size-t4)",
120
+ "lineHeight": "var(--seed-line-height-t4)"
121
+ },
122
+ "control": {
123
+ "size": "var(--seed-dimension-x5)",
124
+ "cornerRadius": "var(--seed-radius-r1)"
125
+ }
126
+ }
127
+ },
128
+ "sizeLarge": {
129
+ "enabled": {
130
+ "root": {
131
+ "minHeight": "var(--seed-dimension-x9)"
132
+ },
133
+ "label": {
134
+ "fontSize": "var(--seed-font-size-t5)",
135
+ "lineHeight": "var(--seed-line-height-t5)"
136
+ },
137
+ "control": {
138
+ "size": "var(--seed-dimension-x6)",
139
+ "cornerRadius": "var(--seed-radius-r1)"
140
+ }
141
+ }
142
+ },
143
+ "variantSquareSizeMedium": {
144
+ "enabled": {
145
+ "icon": {
146
+ "size": "12px"
147
+ }
148
+ }
149
+ },
150
+ "variantSquareSizeLarge": {
151
+ "enabled": {
152
+ "icon": {
153
+ "size": "14px"
154
+ }
155
+ }
156
+ },
157
+ "variantGhostSizeMedium": {
158
+ "enabled": {
159
+ "icon": {
160
+ "size": "14px"
161
+ }
162
+ }
163
+ },
164
+ "variantGhostSizeLarge": {
165
+ "enabled": {
166
+ "icon": {
167
+ "size": "18px"
168
+ }
169
+ }
170
+ }
171
+ }
@@ -0,0 +1,171 @@
1
+ export const vars = {
2
+ "base": {
3
+ "enabled": {
4
+ "label": {
5
+ "color": "var(--seed-color-fg-neutral)"
6
+ },
7
+ "root": {
8
+ "gap": "var(--seed-dimension-x2)"
9
+ }
10
+ }
11
+ },
12
+ "weightDefault": {
13
+ "enabled": {
14
+ "label": {
15
+ "fontWeight": "var(--seed-font-weight-regular)"
16
+ }
17
+ }
18
+ },
19
+ "weightStronger": {
20
+ "enabled": {
21
+ "label": {
22
+ "fontWeight": "var(--seed-font-weight-bold)"
23
+ }
24
+ }
25
+ },
26
+ "variantSquare": {
27
+ "enabled": {
28
+ "control": {
29
+ "strokeColor": "var(--seed-color-stroke-control)",
30
+ "strokeWidth": "1px"
31
+ }
32
+ },
33
+ "enabledSelected": {
34
+ "control": {
35
+ "color": "var(--seed-color-bg-brand-solid)"
36
+ },
37
+ "icon": {
38
+ "color": "var(--seed-color-palette-static-white)"
39
+ }
40
+ },
41
+ "pressed": {
42
+ "control": {
43
+ "color": "var(--seed-color-bg-layer-default-pressed)"
44
+ }
45
+ },
46
+ "pressedSelected": {
47
+ "control": {
48
+ "color": "var(--seed-color-bg-brand-solid-pressed)"
49
+ },
50
+ "icon": {
51
+ "color": "var(--seed-color-palette-static-white)"
52
+ }
53
+ },
54
+ "disabled": {
55
+ "control": {
56
+ "color": "var(--seed-color-bg-disabled)",
57
+ "strokeColor": "var(--seed-color-stroke-neutral)"
58
+ },
59
+ "label": {
60
+ "color": "var(--seed-color-fg-disabled)"
61
+ },
62
+ "icon": {
63
+ "color": "var(--seed-color-fg-disabled)"
64
+ }
65
+ },
66
+ "disabledSelected": {
67
+ "label": {
68
+ "color": "var(--seed-color-fg-disabled)"
69
+ },
70
+ "icon": {
71
+ "color": "var(--seed-color-fg-disabled)"
72
+ }
73
+ }
74
+ },
75
+ "variantGhost": {
76
+ "enabled": {
77
+ "icon": {
78
+ "color": "var(--seed-color-fg-placeholder)"
79
+ }
80
+ },
81
+ "enabledSelected": {
82
+ "icon": {
83
+ "color": "var(--seed-color-fg-brand)"
84
+ }
85
+ },
86
+ "pressed": {
87
+ "control": {
88
+ "color": "var(--seed-color-bg-layer-default-pressed)"
89
+ }
90
+ },
91
+ "pressedSelected": {
92
+ "control": {
93
+ "color": "var(--seed-color-palette-carrot-200)"
94
+ }
95
+ },
96
+ "disabled": {
97
+ "label": {
98
+ "color": "var(--seed-color-fg-disabled)"
99
+ },
100
+ "icon": {
101
+ "color": "var(--seed-color-fg-disabled)"
102
+ }
103
+ },
104
+ "disabledSelected": {
105
+ "label": {
106
+ "color": "var(--seed-color-fg-disabled)"
107
+ },
108
+ "icon": {
109
+ "color": "var(--seed-color-fg-disabled)"
110
+ }
111
+ }
112
+ },
113
+ "sizeMedium": {
114
+ "enabled": {
115
+ "root": {
116
+ "minHeight": "var(--seed-dimension-x8)"
117
+ },
118
+ "label": {
119
+ "fontSize": "var(--seed-font-size-t4)",
120
+ "lineHeight": "var(--seed-line-height-t4)"
121
+ },
122
+ "control": {
123
+ "size": "var(--seed-dimension-x5)",
124
+ "cornerRadius": "var(--seed-radius-r1)"
125
+ }
126
+ }
127
+ },
128
+ "sizeLarge": {
129
+ "enabled": {
130
+ "root": {
131
+ "minHeight": "var(--seed-dimension-x9)"
132
+ },
133
+ "label": {
134
+ "fontSize": "var(--seed-font-size-t5)",
135
+ "lineHeight": "var(--seed-line-height-t5)"
136
+ },
137
+ "control": {
138
+ "size": "var(--seed-dimension-x6)",
139
+ "cornerRadius": "var(--seed-radius-r1)"
140
+ }
141
+ }
142
+ },
143
+ "variantSquareSizeMedium": {
144
+ "enabled": {
145
+ "icon": {
146
+ "size": "12px"
147
+ }
148
+ }
149
+ },
150
+ "variantSquareSizeLarge": {
151
+ "enabled": {
152
+ "icon": {
153
+ "size": "14px"
154
+ }
155
+ }
156
+ },
157
+ "variantGhostSizeMedium": {
158
+ "enabled": {
159
+ "icon": {
160
+ "size": "14px"
161
+ }
162
+ }
163
+ },
164
+ "variantGhostSizeLarge": {
165
+ "enabled": {
166
+ "icon": {
167
+ "size": "18px"
168
+ }
169
+ }
170
+ }
171
+ }