@seed-design/lynx-css 0.1.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 (268) hide show
  1. package/all.css +1730 -0
  2. package/all.min.css +1 -0
  3. package/base.css +625 -0
  4. package/base.min.css +1 -0
  5. package/package.json +60 -0
  6. package/recipes/action-button.css +489 -0
  7. package/recipes/action-button.d.ts +44 -0
  8. package/recipes/action-button.mjs +212 -0
  9. package/recipes/bottom-sheet-handle.css +18 -0
  10. package/recipes/bottom-sheet-handle.d.ts +21 -0
  11. package/recipes/bottom-sheet-handle.mjs +36 -0
  12. package/recipes/bottom-sheet.css +91 -0
  13. package/recipes/bottom-sheet.d.ts +28 -0
  14. package/recipes/bottom-sheet.mjs +76 -0
  15. package/recipes/checkbox-group.css +5 -0
  16. package/recipes/checkbox-group.d.ts +21 -0
  17. package/recipes/checkbox-group.mjs +36 -0
  18. package/recipes/checkbox.css +34 -0
  19. package/recipes/checkbox.d.ts +32 -0
  20. package/recipes/checkbox.mjs +53 -0
  21. package/recipes/checkmark.css +131 -0
  22. package/recipes/checkmark.d.ts +48 -0
  23. package/recipes/checkmark.mjs +220 -0
  24. package/recipes/progress-circle.css +80 -0
  25. package/recipes/progress-circle.d.ts +30 -0
  26. package/recipes/progress-circle.mjs +40 -0
  27. package/recipes/radio-group.css +5 -0
  28. package/recipes/radio-group.d.ts +21 -0
  29. package/recipes/radio-group.mjs +36 -0
  30. package/recipes/radio.css +34 -0
  31. package/recipes/radio.d.ts +32 -0
  32. package/recipes/radio.mjs +53 -0
  33. package/recipes/radiomark.css +94 -0
  34. package/recipes/radiomark.d.ts +40 -0
  35. package/recipes/radiomark.mjs +121 -0
  36. package/recipes/shared.mjs +48 -0
  37. package/recipes/switch.css +40 -0
  38. package/recipes/switch.d.ts +28 -0
  39. package/recipes/switch.mjs +49 -0
  40. package/recipes/switchmark.css +75 -0
  41. package/recipes/switchmark.d.ts +36 -0
  42. package/recipes/switchmark.mjs +90 -0
  43. package/recipes/tag-group-item.css +34 -0
  44. package/recipes/tag-group-item.d.ts +32 -0
  45. package/recipes/tag-group-item.mjs +55 -0
  46. package/recipes/tag-group.css +32 -0
  47. package/recipes/tag-group.d.ts +24 -0
  48. package/recipes/tag-group.mjs +48 -0
  49. package/vars/color/banner.d.ts +10 -0
  50. package/vars/color/banner.mjs +10 -0
  51. package/vars/color/bg.d.ts +76 -0
  52. package/vars/color/bg.mjs +41 -0
  53. package/vars/color/fg.d.ts +30 -0
  54. package/vars/color/fg.mjs +16 -0
  55. package/vars/color/index.d.ts +6 -0
  56. package/vars/color/index.mjs +6 -0
  57. package/vars/color/manner-temp/index.d.ts +10 -0
  58. package/vars/color/manner-temp/index.mjs +10 -0
  59. package/vars/color/manner-temp/l1.d.ts +2 -0
  60. package/vars/color/manner-temp/l1.mjs +2 -0
  61. package/vars/color/manner-temp/l10.d.ts +2 -0
  62. package/vars/color/manner-temp/l10.mjs +2 -0
  63. package/vars/color/manner-temp/l2.d.ts +2 -0
  64. package/vars/color/manner-temp/l2.mjs +2 -0
  65. package/vars/color/manner-temp/l3.d.ts +2 -0
  66. package/vars/color/manner-temp/l3.mjs +2 -0
  67. package/vars/color/manner-temp/l4.d.ts +2 -0
  68. package/vars/color/manner-temp/l4.mjs +2 -0
  69. package/vars/color/manner-temp/l5.d.ts +2 -0
  70. package/vars/color/manner-temp/l5.mjs +2 -0
  71. package/vars/color/manner-temp/l6.d.ts +2 -0
  72. package/vars/color/manner-temp/l6.mjs +2 -0
  73. package/vars/color/manner-temp/l7.d.ts +2 -0
  74. package/vars/color/manner-temp/l7.mjs +2 -0
  75. package/vars/color/manner-temp/l8.d.ts +2 -0
  76. package/vars/color/manner-temp/l8.mjs +2 -0
  77. package/vars/color/manner-temp/l9.d.ts +2 -0
  78. package/vars/color/manner-temp/l9.mjs +2 -0
  79. package/vars/color/palette.d.ts +94 -0
  80. package/vars/color/palette.mjs +94 -0
  81. package/vars/color/stroke.d.ts +31 -0
  82. package/vars/color/stroke.mjs +16 -0
  83. package/vars/component/action-button.d.ts +660 -0
  84. package/vars/component/action-button.mjs +541 -0
  85. package/vars/component/action-chip.d.ts +132 -0
  86. package/vars/component/action-chip.mjs +132 -0
  87. package/vars/component/action-sheet-close-button.d.ts +23 -0
  88. package/vars/component/action-sheet-close-button.mjs +23 -0
  89. package/vars/component/action-sheet-item.d.ts +36 -0
  90. package/vars/component/action-sheet-item.mjs +36 -0
  91. package/vars/component/action-sheet.d.ts +46 -0
  92. package/vars/component/action-sheet.mjs +46 -0
  93. package/vars/component/avatar-stack.d.ts +110 -0
  94. package/vars/component/avatar-stack.mjs +110 -0
  95. package/vars/component/avatar.d.ts +204 -0
  96. package/vars/component/avatar.mjs +162 -0
  97. package/vars/component/badge.d.ts +316 -0
  98. package/vars/component/badge.mjs +236 -0
  99. package/vars/component/bottom-sheet-close-button.d.ts +21 -0
  100. package/vars/component/bottom-sheet-close-button.mjs +21 -0
  101. package/vars/component/bottom-sheet-handle.d.ts +24 -0
  102. package/vars/component/bottom-sheet-handle.mjs +24 -0
  103. package/vars/component/bottom-sheet.d.ts +86 -0
  104. package/vars/component/bottom-sheet.mjs +86 -0
  105. package/vars/component/callout.d.ts +229 -0
  106. package/vars/component/callout.mjs +197 -0
  107. package/vars/component/checkbox-group.d.ts +9 -0
  108. package/vars/component/checkbox-group.mjs +9 -0
  109. package/vars/component/checkbox.d.ts +53 -0
  110. package/vars/component/checkbox.mjs +53 -0
  111. package/vars/component/checkmark.d.ts +195 -0
  112. package/vars/component/checkmark.mjs +165 -0
  113. package/vars/component/chip-tab.d.ts +162 -0
  114. package/vars/component/chip-tab.mjs +162 -0
  115. package/vars/component/chip-tablist.d.ts +31 -0
  116. package/vars/component/chip-tablist.mjs +31 -0
  117. package/vars/component/chip.d.ts +321 -0
  118. package/vars/component/chip.mjs +303 -0
  119. package/vars/component/content-placeholder.d.ts +28 -0
  120. package/vars/component/content-placeholder.mjs +27 -0
  121. package/vars/component/contextual-floating-button.d.ts +144 -0
  122. package/vars/component/contextual-floating-button.mjs +132 -0
  123. package/vars/component/control-chip.d.ts +158 -0
  124. package/vars/component/control-chip.mjs +158 -0
  125. package/vars/component/dialog.d.ts +52 -0
  126. package/vars/component/dialog.mjs +52 -0
  127. package/vars/component/divider.d.ts +9 -0
  128. package/vars/component/divider.mjs +9 -0
  129. package/vars/component/extended-action-sheet-close-button.d.ts +24 -0
  130. package/vars/component/extended-action-sheet-close-button.mjs +24 -0
  131. package/vars/component/extended-action-sheet-item.d.ts +46 -0
  132. package/vars/component/extended-action-sheet-item.mjs +46 -0
  133. package/vars/component/extended-action-sheet.d.ts +55 -0
  134. package/vars/component/extended-action-sheet.mjs +55 -0
  135. package/vars/component/extended-fab.d.ts +88 -0
  136. package/vars/component/extended-fab.mjs +82 -0
  137. package/vars/component/fab.d.ts +21 -0
  138. package/vars/component/fab.mjs +21 -0
  139. package/vars/component/field-label.d.ts +25 -0
  140. package/vars/component/field-label.mjs +25 -0
  141. package/vars/component/field.d.ts +78 -0
  142. package/vars/component/field.mjs +72 -0
  143. package/vars/component/floating-action-button.d.ts +60 -0
  144. package/vars/component/floating-action-button.mjs +54 -0
  145. package/vars/component/help-bubble.d.ts +52 -0
  146. package/vars/component/help-bubble.mjs +50 -0
  147. package/vars/component/identity-placeholder.d.ts +12 -0
  148. package/vars/component/identity-placeholder.mjs +12 -0
  149. package/vars/component/image-frame-floater.d.ts +10 -0
  150. package/vars/component/image-frame-floater.mjs +9 -0
  151. package/vars/component/image-frame-indicator.d.ts +20 -0
  152. package/vars/component/image-frame-indicator.mjs +18 -0
  153. package/vars/component/image-frame-reaction-button.d.ts +35 -0
  154. package/vars/component/image-frame-reaction-button.mjs +26 -0
  155. package/vars/component/image-frame.d.ts +48 -0
  156. package/vars/component/image-frame.mjs +26 -0
  157. package/vars/component/index.d.ts +79 -0
  158. package/vars/component/index.mjs +79 -0
  159. package/vars/component/inline-banner.d.ts +191 -0
  160. package/vars/component/inline-banner.mjs +191 -0
  161. package/vars/component/input-button.d.ts +89 -0
  162. package/vars/component/input-button.mjs +88 -0
  163. package/vars/component/link-content.d.ts +58 -0
  164. package/vars/component/link-content.mjs +58 -0
  165. package/vars/component/list-header.d.ts +29 -0
  166. package/vars/component/list-header.mjs +29 -0
  167. package/vars/component/list-item.d.ts +89 -0
  168. package/vars/component/list-item.mjs +87 -0
  169. package/vars/component/manner-temp-badge.d.ts +117 -0
  170. package/vars/component/manner-temp-badge.mjs +117 -0
  171. package/vars/component/manner-temp.d.ts +88 -0
  172. package/vars/component/manner-temp.mjs +88 -0
  173. package/vars/component/menu-sheet-close-button.d.ts +24 -0
  174. package/vars/component/menu-sheet-close-button.mjs +24 -0
  175. package/vars/component/menu-sheet-item.d.ts +73 -0
  176. package/vars/component/menu-sheet-item.mjs +61 -0
  177. package/vars/component/menu-sheet.d.ts +56 -0
  178. package/vars/component/menu-sheet.mjs +56 -0
  179. package/vars/component/notification-badge.d.ts +48 -0
  180. package/vars/component/notification-badge.mjs +42 -0
  181. package/vars/component/page-banner.d.ts +382 -0
  182. package/vars/component/page-banner.mjs +336 -0
  183. package/vars/component/progress-circle.d.ts +88 -0
  184. package/vars/component/progress-circle.mjs +67 -0
  185. package/vars/component/radio-group.d.ts +9 -0
  186. package/vars/component/radio-group.mjs +9 -0
  187. package/vars/component/radio.d.ts +53 -0
  188. package/vars/component/radio.mjs +53 -0
  189. package/vars/component/radiomark.d.ts +117 -0
  190. package/vars/component/radiomark.mjs +117 -0
  191. package/vars/component/reaction-button.d.ts +136 -0
  192. package/vars/component/reaction-button.mjs +136 -0
  193. package/vars/component/scroll-fog.d.ts +11 -0
  194. package/vars/component/scroll-fog.mjs +11 -0
  195. package/vars/component/segmented-control-indicator.d.ts +24 -0
  196. package/vars/component/segmented-control-indicator.mjs +24 -0
  197. package/vars/component/segmented-control-item.d.ts +41 -0
  198. package/vars/component/segmented-control-item.mjs +41 -0
  199. package/vars/component/segmented-control.d.ts +11 -0
  200. package/vars/component/segmented-control.mjs +11 -0
  201. package/vars/component/select-box-checkmark.d.ts +40 -0
  202. package/vars/component/select-box-checkmark.mjs +40 -0
  203. package/vars/component/select-box-group.d.ts +10 -0
  204. package/vars/component/select-box-group.mjs +10 -0
  205. package/vars/component/select-box.d.ts +107 -0
  206. package/vars/component/select-box.mjs +102 -0
  207. package/vars/component/skeleton.d.ts +76 -0
  208. package/vars/component/skeleton.mjs +58 -0
  209. package/vars/component/slider-thumb.d.ts +25 -0
  210. package/vars/component/slider-thumb.mjs +25 -0
  211. package/vars/component/slider-tick.d.ts +23 -0
  212. package/vars/component/slider-tick.mjs +23 -0
  213. package/vars/component/slider.d.ts +78 -0
  214. package/vars/component/slider.mjs +75 -0
  215. package/vars/component/snackbar.d.ts +65 -0
  216. package/vars/component/snackbar.mjs +65 -0
  217. package/vars/component/switch.d.ts +53 -0
  218. package/vars/component/switch.mjs +53 -0
  219. package/vars/component/switchmark.d.ts +112 -0
  220. package/vars/component/switchmark.mjs +112 -0
  221. package/vars/component/tab.d.ts +47 -0
  222. package/vars/component/tab.mjs +47 -0
  223. package/vars/component/tablist.d.ts +51 -0
  224. package/vars/component/tablist.mjs +51 -0
  225. package/vars/component/tag-group-item.d.ts +122 -0
  226. package/vars/component/tag-group-item.mjs +122 -0
  227. package/vars/component/tag-group.d.ts +34 -0
  228. package/vars/component/tag-group.mjs +34 -0
  229. package/vars/component/text-button.d.ts +23 -0
  230. package/vars/component/text-button.mjs +23 -0
  231. package/vars/component/text-input.d.ts +224 -0
  232. package/vars/component/text-input.mjs +211 -0
  233. package/vars/component/toggle-button.d.ts +213 -0
  234. package/vars/component/toggle-button.mjs +207 -0
  235. package/vars/component/top-navigation-icon-button.d.ts +36 -0
  236. package/vars/component/top-navigation-icon-button.mjs +36 -0
  237. package/vars/component/top-navigation-text-button.d.ts +52 -0
  238. package/vars/component/top-navigation-text-button.mjs +51 -0
  239. package/vars/component/top-navigation.d.ts +102 -0
  240. package/vars/component/top-navigation.mjs +94 -0
  241. package/vars/component/typography.d.ts +542 -0
  242. package/vars/component/typography.mjs +461 -0
  243. package/vars/dimension/index.d.ts +22 -0
  244. package/vars/dimension/index.mjs +22 -0
  245. package/vars/dimension/spacing-x.d.ts +4 -0
  246. package/vars/dimension/spacing-x.mjs +2 -0
  247. package/vars/dimension/spacing-y.d.ts +8 -0
  248. package/vars/dimension/spacing-y.mjs +4 -0
  249. package/vars/duration.d.ts +8 -0
  250. package/vars/duration.mjs +8 -0
  251. package/vars/font-size.d.ts +30 -0
  252. package/vars/font-size.mjs +20 -0
  253. package/vars/font-weight.d.ts +3 -0
  254. package/vars/font-weight.mjs +3 -0
  255. package/vars/gradient.d.ts +19 -0
  256. package/vars/gradient.mjs +8 -0
  257. package/vars/index.d.ts +51 -0
  258. package/vars/index.mjs +1 -0
  259. package/vars/line-height.d.ts +30 -0
  260. package/vars/line-height.mjs +20 -0
  261. package/vars/radius.d.ts +11 -0
  262. package/vars/radius.mjs +11 -0
  263. package/vars/shadow.d.ts +4 -0
  264. package/vars/shadow.mjs +3 -0
  265. package/vars/timing-function.d.ts +7 -0
  266. package/vars/timing-function.mjs +7 -0
  267. package/vars/vars.d.ts +10 -0
  268. package/vars/vars.mjs +10 -0
@@ -0,0 +1,461 @@
1
+ export const vars = {
2
+ "textStyleScreenTitle": {
3
+ "enabled": {
4
+ "root": {
5
+ "fontSize": "var(--seed-font-size-t10)",
6
+ "lineHeight": "var(--seed-line-height-t10)",
7
+ "fontWeight": "var(--seed-font-weight-bold)"
8
+ }
9
+ }
10
+ },
11
+ "textStyleArticleBody": {
12
+ "enabled": {
13
+ "root": {
14
+ "fontSize": "var(--seed-font-size-t5)",
15
+ "lineHeight": "var(--seed-line-height-t6)",
16
+ "fontWeight": "var(--seed-font-weight-regular)"
17
+ }
18
+ }
19
+ },
20
+ "textStyleArticleNote": {
21
+ "enabled": {
22
+ "root": {
23
+ "fontSize": "var(--seed-font-size-t4)",
24
+ "lineHeight": "var(--seed-line-height-t5)",
25
+ "fontWeight": "var(--seed-font-weight-regular)"
26
+ }
27
+ }
28
+ },
29
+ "textStyleT1Regular": {
30
+ "enabled": {
31
+ "root": {
32
+ "fontSize": "var(--seed-font-size-t1)",
33
+ "lineHeight": "var(--seed-line-height-t1)",
34
+ "fontWeight": "var(--seed-font-weight-regular)"
35
+ }
36
+ }
37
+ },
38
+ "textStyleT1Medium": {
39
+ "enabled": {
40
+ "root": {
41
+ "fontSize": "var(--seed-font-size-t1)",
42
+ "lineHeight": "var(--seed-line-height-t1)",
43
+ "fontWeight": "var(--seed-font-weight-medium)"
44
+ }
45
+ }
46
+ },
47
+ "textStyleT1Bold": {
48
+ "enabled": {
49
+ "root": {
50
+ "fontSize": "var(--seed-font-size-t1)",
51
+ "lineHeight": "var(--seed-line-height-t1)",
52
+ "fontWeight": "var(--seed-font-weight-bold)"
53
+ }
54
+ }
55
+ },
56
+ "textStyleT2Regular": {
57
+ "enabled": {
58
+ "root": {
59
+ "fontSize": "var(--seed-font-size-t2)",
60
+ "lineHeight": "var(--seed-line-height-t2)",
61
+ "fontWeight": "var(--seed-font-weight-regular)"
62
+ }
63
+ }
64
+ },
65
+ "textStyleT2Medium": {
66
+ "enabled": {
67
+ "root": {
68
+ "fontSize": "var(--seed-font-size-t2)",
69
+ "lineHeight": "var(--seed-line-height-t2)",
70
+ "fontWeight": "var(--seed-font-weight-medium)"
71
+ }
72
+ }
73
+ },
74
+ "textStyleT2Bold": {
75
+ "enabled": {
76
+ "root": {
77
+ "fontSize": "var(--seed-font-size-t2)",
78
+ "lineHeight": "var(--seed-line-height-t2)",
79
+ "fontWeight": "var(--seed-font-weight-bold)"
80
+ }
81
+ }
82
+ },
83
+ "textStyleT3Regular": {
84
+ "enabled": {
85
+ "root": {
86
+ "fontSize": "var(--seed-font-size-t3)",
87
+ "lineHeight": "var(--seed-line-height-t3)",
88
+ "fontWeight": "var(--seed-font-weight-regular)"
89
+ }
90
+ }
91
+ },
92
+ "textStyleT3Medium": {
93
+ "enabled": {
94
+ "root": {
95
+ "fontSize": "var(--seed-font-size-t3)",
96
+ "lineHeight": "var(--seed-line-height-t3)",
97
+ "fontWeight": "var(--seed-font-weight-medium)"
98
+ }
99
+ }
100
+ },
101
+ "textStyleT3Bold": {
102
+ "enabled": {
103
+ "root": {
104
+ "fontSize": "var(--seed-font-size-t3)",
105
+ "lineHeight": "var(--seed-line-height-t3)",
106
+ "fontWeight": "var(--seed-font-weight-bold)"
107
+ }
108
+ }
109
+ },
110
+ "textStyleT4Regular": {
111
+ "enabled": {
112
+ "root": {
113
+ "fontSize": "var(--seed-font-size-t4)",
114
+ "lineHeight": "var(--seed-line-height-t4)",
115
+ "fontWeight": "var(--seed-font-weight-regular)"
116
+ }
117
+ }
118
+ },
119
+ "textStyleT4Medium": {
120
+ "enabled": {
121
+ "root": {
122
+ "fontSize": "var(--seed-font-size-t4)",
123
+ "lineHeight": "var(--seed-line-height-t4)",
124
+ "fontWeight": "var(--seed-font-weight-medium)"
125
+ }
126
+ }
127
+ },
128
+ "textStyleT4Bold": {
129
+ "enabled": {
130
+ "root": {
131
+ "fontSize": "var(--seed-font-size-t4)",
132
+ "lineHeight": "var(--seed-line-height-t4)",
133
+ "fontWeight": "var(--seed-font-weight-bold)"
134
+ }
135
+ }
136
+ },
137
+ "textStyleT5Regular": {
138
+ "enabled": {
139
+ "root": {
140
+ "fontSize": "var(--seed-font-size-t5)",
141
+ "lineHeight": "var(--seed-line-height-t5)",
142
+ "fontWeight": "var(--seed-font-weight-regular)"
143
+ }
144
+ }
145
+ },
146
+ "textStyleT5Medium": {
147
+ "enabled": {
148
+ "root": {
149
+ "fontSize": "var(--seed-font-size-t5)",
150
+ "lineHeight": "var(--seed-line-height-t5)",
151
+ "fontWeight": "var(--seed-font-weight-medium)"
152
+ }
153
+ }
154
+ },
155
+ "textStyleT5Bold": {
156
+ "enabled": {
157
+ "root": {
158
+ "fontSize": "var(--seed-font-size-t5)",
159
+ "lineHeight": "var(--seed-line-height-t5)",
160
+ "fontWeight": "var(--seed-font-weight-bold)"
161
+ }
162
+ }
163
+ },
164
+ "textStyleT6Regular": {
165
+ "enabled": {
166
+ "root": {
167
+ "fontSize": "var(--seed-font-size-t6)",
168
+ "lineHeight": "var(--seed-line-height-t6)",
169
+ "fontWeight": "var(--seed-font-weight-regular)"
170
+ }
171
+ }
172
+ },
173
+ "textStyleT6Medium": {
174
+ "enabled": {
175
+ "root": {
176
+ "fontSize": "var(--seed-font-size-t6)",
177
+ "lineHeight": "var(--seed-line-height-t6)",
178
+ "fontWeight": "var(--seed-font-weight-medium)"
179
+ }
180
+ }
181
+ },
182
+ "textStyleT6Bold": {
183
+ "enabled": {
184
+ "root": {
185
+ "fontSize": "var(--seed-font-size-t6)",
186
+ "lineHeight": "var(--seed-line-height-t6)",
187
+ "fontWeight": "var(--seed-font-weight-bold)"
188
+ }
189
+ }
190
+ },
191
+ "textStyleT7Regular": {
192
+ "enabled": {
193
+ "root": {
194
+ "fontSize": "var(--seed-font-size-t7)",
195
+ "lineHeight": "var(--seed-line-height-t7)",
196
+ "fontWeight": "var(--seed-font-weight-regular)"
197
+ }
198
+ }
199
+ },
200
+ "textStyleT7Medium": {
201
+ "enabled": {
202
+ "root": {
203
+ "fontSize": "var(--seed-font-size-t7)",
204
+ "lineHeight": "var(--seed-line-height-t7)",
205
+ "fontWeight": "var(--seed-font-weight-medium)"
206
+ }
207
+ }
208
+ },
209
+ "textStyleT7Bold": {
210
+ "enabled": {
211
+ "root": {
212
+ "fontSize": "var(--seed-font-size-t7)",
213
+ "lineHeight": "var(--seed-line-height-t7)",
214
+ "fontWeight": "var(--seed-font-weight-bold)"
215
+ }
216
+ }
217
+ },
218
+ "textStyleT8Bold": {
219
+ "enabled": {
220
+ "root": {
221
+ "fontSize": "var(--seed-font-size-t8)",
222
+ "lineHeight": "var(--seed-line-height-t8)",
223
+ "fontWeight": "var(--seed-font-weight-bold)"
224
+ }
225
+ }
226
+ },
227
+ "textStyleT9Bold": {
228
+ "enabled": {
229
+ "root": {
230
+ "fontSize": "var(--seed-font-size-t9)",
231
+ "lineHeight": "var(--seed-line-height-t9)",
232
+ "fontWeight": "var(--seed-font-weight-bold)"
233
+ }
234
+ }
235
+ },
236
+ "textStyleT10Bold": {
237
+ "enabled": {
238
+ "root": {
239
+ "fontSize": "var(--seed-font-size-t10)",
240
+ "lineHeight": "var(--seed-line-height-t10)",
241
+ "fontWeight": "var(--seed-font-weight-bold)"
242
+ }
243
+ }
244
+ },
245
+ "textStyleT1StaticRegular": {
246
+ "enabled": {
247
+ "root": {
248
+ "fontSize": "var(--seed-font-size-t1-static)",
249
+ "lineHeight": "var(--seed-line-height-t1-static)",
250
+ "fontWeight": "var(--seed-font-weight-regular)"
251
+ }
252
+ }
253
+ },
254
+ "textStyleT1StaticMedium": {
255
+ "enabled": {
256
+ "root": {
257
+ "fontSize": "var(--seed-font-size-t1-static)",
258
+ "lineHeight": "var(--seed-line-height-t1-static)",
259
+ "fontWeight": "var(--seed-font-weight-medium)"
260
+ }
261
+ }
262
+ },
263
+ "textStyleT1StaticBold": {
264
+ "enabled": {
265
+ "root": {
266
+ "fontSize": "var(--seed-font-size-t1-static)",
267
+ "lineHeight": "var(--seed-line-height-t1-static)",
268
+ "fontWeight": "var(--seed-font-weight-bold)"
269
+ }
270
+ }
271
+ },
272
+ "textStyleT2StaticRegular": {
273
+ "enabled": {
274
+ "root": {
275
+ "fontSize": "var(--seed-font-size-t2-static)",
276
+ "lineHeight": "var(--seed-line-height-t2-static)",
277
+ "fontWeight": "var(--seed-font-weight-regular)"
278
+ }
279
+ }
280
+ },
281
+ "textStyleT2StaticMedium": {
282
+ "enabled": {
283
+ "root": {
284
+ "fontSize": "var(--seed-font-size-t2-static)",
285
+ "lineHeight": "var(--seed-line-height-t2-static)",
286
+ "fontWeight": "var(--seed-font-weight-medium)"
287
+ }
288
+ }
289
+ },
290
+ "textStyleT2StaticBold": {
291
+ "enabled": {
292
+ "root": {
293
+ "fontSize": "var(--seed-font-size-t2-static)",
294
+ "lineHeight": "var(--seed-line-height-t2-static)",
295
+ "fontWeight": "var(--seed-font-weight-bold)"
296
+ }
297
+ }
298
+ },
299
+ "textStyleT3StaticRegular": {
300
+ "enabled": {
301
+ "root": {
302
+ "fontSize": "var(--seed-font-size-t3-static)",
303
+ "lineHeight": "var(--seed-line-height-t3-static)",
304
+ "fontWeight": "var(--seed-font-weight-regular)"
305
+ }
306
+ }
307
+ },
308
+ "textStyleT3StaticMedium": {
309
+ "enabled": {
310
+ "root": {
311
+ "fontSize": "var(--seed-font-size-t3-static)",
312
+ "lineHeight": "var(--seed-line-height-t3-static)",
313
+ "fontWeight": "var(--seed-font-weight-medium)"
314
+ }
315
+ }
316
+ },
317
+ "textStyleT3StaticBold": {
318
+ "enabled": {
319
+ "root": {
320
+ "fontSize": "var(--seed-font-size-t3-static)",
321
+ "lineHeight": "var(--seed-line-height-t3-static)",
322
+ "fontWeight": "var(--seed-font-weight-bold)"
323
+ }
324
+ }
325
+ },
326
+ "textStyleT4StaticRegular": {
327
+ "enabled": {
328
+ "root": {
329
+ "fontSize": "var(--seed-font-size-t4-static)",
330
+ "lineHeight": "var(--seed-line-height-t4-static)",
331
+ "fontWeight": "var(--seed-font-weight-regular)"
332
+ }
333
+ }
334
+ },
335
+ "textStyleT4StaticMedium": {
336
+ "enabled": {
337
+ "root": {
338
+ "fontSize": "var(--seed-font-size-t4-static)",
339
+ "lineHeight": "var(--seed-line-height-t4-static)",
340
+ "fontWeight": "var(--seed-font-weight-medium)"
341
+ }
342
+ }
343
+ },
344
+ "textStyleT4StaticBold": {
345
+ "enabled": {
346
+ "root": {
347
+ "fontSize": "var(--seed-font-size-t4-static)",
348
+ "lineHeight": "var(--seed-line-height-t4-static)",
349
+ "fontWeight": "var(--seed-font-weight-bold)"
350
+ }
351
+ }
352
+ },
353
+ "textStyleT5StaticRegular": {
354
+ "enabled": {
355
+ "root": {
356
+ "fontSize": "var(--seed-font-size-t5-static)",
357
+ "lineHeight": "var(--seed-line-height-t5-static)",
358
+ "fontWeight": "var(--seed-font-weight-regular)"
359
+ }
360
+ }
361
+ },
362
+ "textStyleT5StaticMedium": {
363
+ "enabled": {
364
+ "root": {
365
+ "fontSize": "var(--seed-font-size-t5-static)",
366
+ "lineHeight": "var(--seed-line-height-t5-static)",
367
+ "fontWeight": "var(--seed-font-weight-medium)"
368
+ }
369
+ }
370
+ },
371
+ "textStyleT5StaticBold": {
372
+ "enabled": {
373
+ "root": {
374
+ "fontSize": "var(--seed-font-size-t5-static)",
375
+ "lineHeight": "var(--seed-line-height-t5-static)",
376
+ "fontWeight": "var(--seed-font-weight-bold)"
377
+ }
378
+ }
379
+ },
380
+ "textStyleT6StaticRegular": {
381
+ "enabled": {
382
+ "root": {
383
+ "fontSize": "var(--seed-font-size-t6-static)",
384
+ "lineHeight": "var(--seed-line-height-t6-static)",
385
+ "fontWeight": "var(--seed-font-weight-regular)"
386
+ }
387
+ }
388
+ },
389
+ "textStyleT6StaticMedium": {
390
+ "enabled": {
391
+ "root": {
392
+ "fontSize": "var(--seed-font-size-t6-static)",
393
+ "lineHeight": "var(--seed-line-height-t6-static)",
394
+ "fontWeight": "var(--seed-font-weight-medium)"
395
+ }
396
+ }
397
+ },
398
+ "textStyleT6StaticBold": {
399
+ "enabled": {
400
+ "root": {
401
+ "fontSize": "var(--seed-font-size-t6-static)",
402
+ "lineHeight": "var(--seed-line-height-t6-static)",
403
+ "fontWeight": "var(--seed-font-weight-bold)"
404
+ }
405
+ }
406
+ },
407
+ "textStyleT7StaticRegular": {
408
+ "enabled": {
409
+ "root": {
410
+ "fontSize": "var(--seed-font-size-t7-static)",
411
+ "lineHeight": "var(--seed-line-height-t7-static)",
412
+ "fontWeight": "var(--seed-font-weight-regular)"
413
+ }
414
+ }
415
+ },
416
+ "textStyleT7StaticMedium": {
417
+ "enabled": {
418
+ "root": {
419
+ "fontSize": "var(--seed-font-size-t7-static)",
420
+ "lineHeight": "var(--seed-line-height-t7-static)",
421
+ "fontWeight": "var(--seed-font-weight-medium)"
422
+ }
423
+ }
424
+ },
425
+ "textStyleT7StaticBold": {
426
+ "enabled": {
427
+ "root": {
428
+ "fontSize": "var(--seed-font-size-t7-static)",
429
+ "lineHeight": "var(--seed-line-height-t7-static)",
430
+ "fontWeight": "var(--seed-font-weight-bold)"
431
+ }
432
+ }
433
+ },
434
+ "textStyleT8StaticBold": {
435
+ "enabled": {
436
+ "root": {
437
+ "fontSize": "var(--seed-font-size-t8-static)",
438
+ "lineHeight": "var(--seed-line-height-t8-static)",
439
+ "fontWeight": "var(--seed-font-weight-bold)"
440
+ }
441
+ }
442
+ },
443
+ "textStyleT9StaticBold": {
444
+ "enabled": {
445
+ "root": {
446
+ "fontSize": "var(--seed-font-size-t9-static)",
447
+ "lineHeight": "var(--seed-line-height-t9-static)",
448
+ "fontWeight": "var(--seed-font-weight-bold)"
449
+ }
450
+ }
451
+ },
452
+ "textStyleT10StaticBold": {
453
+ "enabled": {
454
+ "root": {
455
+ "fontSize": "var(--seed-font-size-t10-static)",
456
+ "lineHeight": "var(--seed-line-height-t10-static)",
457
+ "fontWeight": "var(--seed-font-weight-bold)"
458
+ }
459
+ }
460
+ }
461
+ }
@@ -0,0 +1,22 @@
1
+ export declare const x0_5 = "var(--seed-dimension-x0_5)";
2
+ export declare const x1 = "var(--seed-dimension-x1)";
3
+ export declare const x1_5 = "var(--seed-dimension-x1_5)";
4
+ export declare const x2 = "var(--seed-dimension-x2)";
5
+ export declare const x2_5 = "var(--seed-dimension-x2_5)";
6
+ export declare const x3 = "var(--seed-dimension-x3)";
7
+ export declare const x3_5 = "var(--seed-dimension-x3_5)";
8
+ export declare const x4 = "var(--seed-dimension-x4)";
9
+ export declare const x4_5 = "var(--seed-dimension-x4_5)";
10
+ export declare const x5 = "var(--seed-dimension-x5)";
11
+ export declare const x6 = "var(--seed-dimension-x6)";
12
+ export declare const x7 = "var(--seed-dimension-x7)";
13
+ export declare const x8 = "var(--seed-dimension-x8)";
14
+ export declare const x9 = "var(--seed-dimension-x9)";
15
+ export declare const x10 = "var(--seed-dimension-x10)";
16
+ export declare const x12 = "var(--seed-dimension-x12)";
17
+ export declare const x13 = "var(--seed-dimension-x13)";
18
+ export declare const x14 = "var(--seed-dimension-x14)";
19
+ export declare const x16 = "var(--seed-dimension-x16)";
20
+
21
+ export * as spacingX from "./spacing-x";
22
+ export * as spacingY from "./spacing-y";
@@ -0,0 +1,22 @@
1
+ export const x0_5 = "var(--seed-dimension-x0_5)";
2
+ export const x1 = "var(--seed-dimension-x1)";
3
+ export const x1_5 = "var(--seed-dimension-x1_5)";
4
+ export const x2 = "var(--seed-dimension-x2)";
5
+ export const x2_5 = "var(--seed-dimension-x2_5)";
6
+ export const x3 = "var(--seed-dimension-x3)";
7
+ export const x3_5 = "var(--seed-dimension-x3_5)";
8
+ export const x4 = "var(--seed-dimension-x4)";
9
+ export const x4_5 = "var(--seed-dimension-x4_5)";
10
+ export const x5 = "var(--seed-dimension-x5)";
11
+ export const x6 = "var(--seed-dimension-x6)";
12
+ export const x7 = "var(--seed-dimension-x7)";
13
+ export const x8 = "var(--seed-dimension-x8)";
14
+ export const x9 = "var(--seed-dimension-x9)";
15
+ export const x10 = "var(--seed-dimension-x10)";
16
+ export const x12 = "var(--seed-dimension-x12)";
17
+ export const x13 = "var(--seed-dimension-x13)";
18
+ export const x14 = "var(--seed-dimension-x14)";
19
+ export const x16 = "var(--seed-dimension-x16)";
20
+
21
+ export * as spacingX from "./spacing-x.mjs";
22
+ export * as spacingY from "./spacing-y.mjs";
@@ -0,0 +1,4 @@
1
+ /** Chip 사이의 수평 간격에 사용합니다. */
2
+ export declare const betweenChips = "var(--seed-dimension-spacing-x-between-chips)";
3
+ /** 화면 전체에 적용되는 기본 수평 padding 값입니다. */
4
+ export declare const globalGutter = "var(--seed-dimension-spacing-x-global-gutter)";
@@ -0,0 +1,2 @@
1
+ export const betweenChips = "var(--seed-dimension-spacing-x-between-chips)";
2
+ export const globalGutter = "var(--seed-dimension-spacing-x-global-gutter)";
@@ -0,0 +1,8 @@
1
+ /** 컴포넌트 간 수직 간격 토큰이 정의되지 않은 컴포넌트 사이의 수직 간격에 사용합니다. */
2
+ export declare const componentDefault = "var(--seed-dimension-spacing-y-component-default)";
3
+ /** Top Navigation과 Page Title 사이의 간격입니다. */
4
+ export declare const navToTitle = "var(--seed-dimension-spacing-y-nav-to-title)";
5
+ /** 화면 하단의 여백입니다. */
6
+ export declare const screenBottom = "var(--seed-dimension-spacing-y-screen-bottom)";
7
+ /** 텍스트 요소 간의 수직 간격입니다. */
8
+ export declare const betweenText = "var(--seed-dimension-spacing-y-between-text)";
@@ -0,0 +1,4 @@
1
+ export const componentDefault = "var(--seed-dimension-spacing-y-component-default)";
2
+ export const navToTitle = "var(--seed-dimension-spacing-y-nav-to-title)";
3
+ export const screenBottom = "var(--seed-dimension-spacing-y-screen-bottom)";
4
+ export const betweenText = "var(--seed-dimension-spacing-y-between-text)";
@@ -0,0 +1,8 @@
1
+ export declare const d1 = "var(--seed-duration-d1)";
2
+ export declare const d2 = "var(--seed-duration-d2)";
3
+ export declare const d3 = "var(--seed-duration-d3)";
4
+ export declare const d4 = "var(--seed-duration-d4)";
5
+ export declare const d5 = "var(--seed-duration-d5)";
6
+ export declare const d6 = "var(--seed-duration-d6)";
7
+ export declare const colorTransition = "var(--seed-duration-color-transition)";
8
+ export declare const pressedScale = "var(--seed-duration-pressed-scale)";
@@ -0,0 +1,8 @@
1
+ export const d1 = "var(--seed-duration-d1)";
2
+ export const d2 = "var(--seed-duration-d2)";
3
+ export const d3 = "var(--seed-duration-d3)";
4
+ export const d4 = "var(--seed-duration-d4)";
5
+ export const d5 = "var(--seed-duration-d5)";
6
+ export const d6 = "var(--seed-duration-d6)";
7
+ export const colorTransition = "var(--seed-duration-color-transition)";
8
+ export const pressedScale = "var(--seed-duration-pressed-scale)";
@@ -0,0 +1,30 @@
1
+ export declare const t1 = "var(--seed-font-size-t1)";
2
+ export declare const t2 = "var(--seed-font-size-t2)";
3
+ export declare const t3 = "var(--seed-font-size-t3)";
4
+ export declare const t4 = "var(--seed-font-size-t4)";
5
+ export declare const t5 = "var(--seed-font-size-t5)";
6
+ export declare const t6 = "var(--seed-font-size-t6)";
7
+ export declare const t7 = "var(--seed-font-size-t7)";
8
+ export declare const t8 = "var(--seed-font-size-t8)";
9
+ export declare const t9 = "var(--seed-font-size-t9)";
10
+ export declare const t10 = "var(--seed-font-size-t10)";
11
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
12
+ export declare const t1Static = "var(--seed-font-size-t1-static)";
13
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
14
+ export declare const t2Static = "var(--seed-font-size-t2-static)";
15
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
16
+ export declare const t3Static = "var(--seed-font-size-t3-static)";
17
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
18
+ export declare const t4Static = "var(--seed-font-size-t4-static)";
19
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
20
+ export declare const t5Static = "var(--seed-font-size-t5-static)";
21
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
22
+ export declare const t6Static = "var(--seed-font-size-t6-static)";
23
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
24
+ export declare const t7Static = "var(--seed-font-size-t7-static)";
25
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
26
+ export declare const t8Static = "var(--seed-font-size-t8-static)";
27
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
28
+ export declare const t9Static = "var(--seed-font-size-t9-static)";
29
+ /** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
30
+ export declare const t10Static = "var(--seed-font-size-t10-static)";
@@ -0,0 +1,20 @@
1
+ export const t1 = "var(--seed-font-size-t1)";
2
+ export const t2 = "var(--seed-font-size-t2)";
3
+ export const t3 = "var(--seed-font-size-t3)";
4
+ export const t4 = "var(--seed-font-size-t4)";
5
+ export const t5 = "var(--seed-font-size-t5)";
6
+ export const t6 = "var(--seed-font-size-t6)";
7
+ export const t7 = "var(--seed-font-size-t7)";
8
+ export const t8 = "var(--seed-font-size-t8)";
9
+ export const t9 = "var(--seed-font-size-t9)";
10
+ export const t10 = "var(--seed-font-size-t10)";
11
+ export const t1Static = "var(--seed-font-size-t1-static)";
12
+ export const t2Static = "var(--seed-font-size-t2-static)";
13
+ export const t3Static = "var(--seed-font-size-t3-static)";
14
+ export const t4Static = "var(--seed-font-size-t4-static)";
15
+ export const t5Static = "var(--seed-font-size-t5-static)";
16
+ export const t6Static = "var(--seed-font-size-t6-static)";
17
+ export const t7Static = "var(--seed-font-size-t7-static)";
18
+ export const t8Static = "var(--seed-font-size-t8-static)";
19
+ export const t9Static = "var(--seed-font-size-t9-static)";
20
+ export const t10Static = "var(--seed-font-size-t10-static)";
@@ -0,0 +1,3 @@
1
+ export declare const regular = "var(--seed-font-weight-regular)";
2
+ export declare const medium = "var(--seed-font-weight-medium)";
3
+ export declare const bold = "var(--seed-font-weight-bold)";
@@ -0,0 +1,3 @@
1
+ export const regular = "var(--seed-font-weight-regular)";
2
+ export const medium = "var(--seed-font-weight-medium)";
3
+ export const bold = "var(--seed-font-weight-bold)";
@@ -0,0 +1,19 @@
1
+ /** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
2
+ @deprecated `@seed-design/css@1.3.0`에서 제거될 예정입니다.
3
+ */
4
+ export declare const fadeLayerFloating = "var(--seed-gradient-fade-layer-floating)";
5
+ /** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
6
+ @deprecated `@seed-design/css@1.3.0`에서 제거될 예정입니다.
7
+ */
8
+ export declare const fadeLayerDefault = "var(--seed-gradient-fade-layer-default)";
9
+ /** 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러입니다. */
10
+ export declare const glowMagic = "var(--seed-gradient-glow-magic)";
11
+ /** 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러의 pressed컬러입니다. */
12
+ export declare const glowMagicPressed = "var(--seed-gradient-glow-magic-pressed)";
13
+ /** 아이콘 및 shape 영역에서 AI 기능을 표현할 때 사용하는 컬러입니다. */
14
+ export declare const highlightMagic = "var(--seed-gradient-highlight-magic)";
15
+ export declare const highlightMagicPressed = "var(--seed-gradient-highlight-magic-pressed)";
16
+ /** Skeleton AI shimmer */
17
+ export declare const shimmerMagic = "var(--seed-gradient-shimmer-magic)";
18
+ /** Skeleton shimmer */
19
+ export declare const shimmerNeutral = "var(--seed-gradient-shimmer-neutral)";
@@ -0,0 +1,8 @@
1
+ export const fadeLayerFloating = "var(--seed-gradient-fade-layer-floating)";
2
+ export const fadeLayerDefault = "var(--seed-gradient-fade-layer-default)";
3
+ export const glowMagic = "var(--seed-gradient-glow-magic)";
4
+ export const glowMagicPressed = "var(--seed-gradient-glow-magic-pressed)";
5
+ export const highlightMagic = "var(--seed-gradient-highlight-magic)";
6
+ export const highlightMagicPressed = "var(--seed-gradient-highlight-magic-pressed)";
7
+ export const shimmerMagic = "var(--seed-gradient-shimmer-magic)";
8
+ export const shimmerNeutral = "var(--seed-gradient-shimmer-neutral)";