ustatic-css 0.0.1-b.2

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 (99) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +202 -0
  3. package/dist/_ustatic-vars-Cx6_uZJY.cjs +1 -0
  4. package/dist/_ustatic-vars-D2NgNZNI.js +4 -0
  5. package/dist/css/modules/align.css +1 -0
  6. package/dist/css/modules/animations.css +1 -0
  7. package/dist/css/modules/base.css +1 -0
  8. package/dist/css/modules/bg.css +1 -0
  9. package/dist/css/modules/border.css +1 -0
  10. package/dist/css/modules/cursor.css +1 -0
  11. package/dist/css/modules/display.css +1 -0
  12. package/dist/css/modules/effects.css +1 -0
  13. package/dist/css/modules/filters.css +1 -0
  14. package/dist/css/modules/flexbox.css +1 -0
  15. package/dist/css/modules/grid.css +1 -0
  16. package/dist/css/modules/hide.css +1 -0
  17. package/dist/css/modules/interactivity.css +1 -0
  18. package/dist/css/modules/outline.css +1 -0
  19. package/dist/css/modules/position.css +1 -0
  20. package/dist/css/modules/scroll.css +1 -0
  21. package/dist/css/modules/sizing.css +1 -0
  22. package/dist/css/modules/spacing.css +1 -0
  23. package/dist/css/modules/typography.css +1 -0
  24. package/dist/css/ustatic-vars.css +1 -0
  25. package/dist/css/ustatic.css +1 -0
  26. package/dist/js/index.cjs.js +9 -0
  27. package/dist/js/index.es.js +175 -0
  28. package/dist/types/package.json.d.ts +102 -0
  29. package/dist/types/src/index.d.ts +4 -0
  30. package/dist/types/src/index.d.ts.map +1 -0
  31. package/dist/types/src/plugins/vue.plugin.d.ts +15 -0
  32. package/dist/types/src/plugins/vue.plugin.d.ts.map +1 -0
  33. package/dist/types/src/utils/styleLoader.d.ts +35 -0
  34. package/dist/types/src/utils/styleLoader.d.ts.map +1 -0
  35. package/dist/types/src/utils/styleloader.classmap.d.ts +2 -0
  36. package/dist/types/src/utils/styleloader.classmap.d.ts.map +1 -0
  37. package/dist/types/src/utils/useCssProperties.d.ts +17 -0
  38. package/dist/types/src/utils/useCssProperties.d.ts.map +1 -0
  39. package/dist/types/src/utils/useTokens.d.ts +21 -0
  40. package/dist/types/src/utils/useTokens.d.ts.map +1 -0
  41. package/dist/ustatic-index-1SZfqZon.js +4 -0
  42. package/dist/ustatic-index-QcZrD98s.cjs +1 -0
  43. package/package.json +99 -0
  44. package/src/css/assets/tokens/_ustatic-list.scss +460 -0
  45. package/src/css/assets/tokens/_ustatic-prefix.scss +1 -0
  46. package/src/css/assets/tokens/_ustatic-vars.scss +757 -0
  47. package/src/css/modules/align/index.scss +17 -0
  48. package/src/css/modules/animations/index.scss +151 -0
  49. package/src/css/modules/base/index.scss +406 -0
  50. package/src/css/modules/base/scrollbar.scss +21 -0
  51. package/src/css/modules/bg/index.scss +60 -0
  52. package/src/css/modules/border/border.scss +88 -0
  53. package/src/css/modules/border/divider.scss +38 -0
  54. package/src/css/modules/border/index.scss +3 -0
  55. package/src/css/modules/border/rounded.scss +70 -0
  56. package/src/css/modules/cursor/index.scss +33 -0
  57. package/src/css/modules/display/index.scss +19 -0
  58. package/src/css/modules/effects/index.scss +35 -0
  59. package/src/css/modules/filters/index.scss +34 -0
  60. package/src/css/modules/flexbox/flex.scss +132 -0
  61. package/src/css/modules/flexbox/gap.scss +15 -0
  62. package/src/css/modules/flexbox/index.scss +2 -0
  63. package/src/css/modules/grid/index.scss +94 -0
  64. package/src/css/modules/hide/index.scss +27 -0
  65. package/src/css/modules/interactivity/index.scss +28 -0
  66. package/src/css/modules/outline/index.scss +63 -0
  67. package/src/css/modules/position/index.scss +94 -0
  68. package/src/css/modules/scroll/index.scss +68 -0
  69. package/src/css/modules/sizing/index.scss +91 -0
  70. package/src/css/modules/spacing/index.scss +56 -0
  71. package/src/css/modules/typography/index.scss +139 -0
  72. package/src/css/tokens/base/animations/underline.yaml +5 -0
  73. package/src/css/tokens/base/border/color.yaml +17 -0
  74. package/src/css/tokens/base/border/radius.yaml +33 -0
  75. package/src/css/tokens/base/border/width.yaml +19 -0
  76. package/src/css/tokens/base/color/accent.yaml +416 -0
  77. package/src/css/tokens/base/color/base.yaml +492 -0
  78. package/src/css/tokens/base/color/opacity.yaml +4 -0
  79. package/src/css/tokens/base/color/variant.yaml +18 -0
  80. package/src/css/tokens/base/cursor/base.yaml +18 -0
  81. package/src/css/tokens/base/font/weight.yaml +23 -0
  82. package/src/css/tokens/base/grid/base.yaml +9 -0
  83. package/src/css/tokens/base/position/base.yaml +253 -0
  84. package/src/css/tokens/base/rotation/base.yaml +20 -0
  85. package/src/css/tokens/base/screen/base.yaml +10 -0
  86. package/src/css/tokens/base/scroll/base.yaml +16 -0
  87. package/src/css/tokens/base/size/base.yaml +16 -0
  88. package/src/css/tokens/base/text/color.yaml +20 -0
  89. package/src/css/tokens/base/text/size.yaml +37 -0
  90. package/src/css/tokens/base/visibility/base.yaml +61 -0
  91. package/src/css/ustatic-index.scss +24 -0
  92. package/src/css/utils/_token.scss +56 -0
  93. package/src/css/variables.scss +359 -0
  94. package/src/index.ts +6 -0
  95. package/src/plugins/vue.plugin.ts +77 -0
  96. package/src/utils/styleLoader.ts +257 -0
  97. package/src/utils/styleloader.classmap.ts +109 -0
  98. package/src/utils/useCssProperties.ts +152 -0
  99. package/src/utils/useTokens.ts +287 -0
@@ -0,0 +1,460 @@
1
+ $palette-hex: (
2
+ primary-50: token("base.color.primary.50-hex"),
3
+ primary-100: token("base.color.primary.100-hex"),
4
+ primary-200: token("base.color.primary.200-hex"),
5
+ primary-300: token("base.color.primary.300-hex"),
6
+ primary-400: token("base.color.primary.400-hex"),
7
+ primary-500: token("base.color.primary.500-hex"),
8
+ primary-600: token("base.color.primary.600-hex"),
9
+ primary-700: token("base.color.primary.700-hex"),
10
+ primary-800: token("base.color.primary.800-hex"),
11
+ primary-900: token("base.color.primary.900-hex"),
12
+ primary-950: token("base.color.primary.950-hex"),
13
+ primary: token("base.color.primary.def-hex"),
14
+ secondary-50: token("base.color.secondary.50-hex"),
15
+ secondary-100: token("base.color.secondary.100-hex"),
16
+ secondary-200: token("base.color.secondary.200-hex"),
17
+ secondary-300: token("base.color.secondary.300-hex"),
18
+ secondary-400: token("base.color.secondary.400-hex"),
19
+ secondary-500: token("base.color.secondary.500-hex"),
20
+ secondary-600: token("base.color.secondary.600-hex"),
21
+ secondary-700: token("base.color.secondary.700-hex"),
22
+ secondary-800: token("base.color.secondary.800-hex"),
23
+ secondary-900: token("base.color.secondary.900-hex"),
24
+ secondary-950: token("base.color.secondary.950-hex"),
25
+ secondary: token("base.color.secondary.def-hex"),
26
+ success-50: token("base.color.success.50-hex"),
27
+ success-100: token("base.color.success.100-hex"),
28
+ success-200: token("base.color.success.200-hex"),
29
+ success-300: token("base.color.success.300-hex"),
30
+ success-400: token("base.color.success.400-hex"),
31
+ success-500: token("base.color.success.500-hex"),
32
+ success-600: token("base.color.success.600-hex"),
33
+ success-700: token("base.color.success.700-hex"),
34
+ success-800: token("base.color.success.800-hex"),
35
+ success-900: token("base.color.success.900-hex"),
36
+ success: token("base.color.success.def-hex"),
37
+ danger-50: token("base.color.danger.50-hex"),
38
+ danger-100: token("base.color.danger.100-hex"),
39
+ danger-200: token("base.color.danger.200-hex"),
40
+ danger-300: token("base.color.danger.300-hex"),
41
+ danger-400: token("base.color.danger.400-hex"),
42
+ danger-500: token("base.color.danger.500-hex"),
43
+ danger-600: token("base.color.danger.600-hex"),
44
+ danger-700: token("base.color.danger.700-hex"),
45
+ danger-800: token("base.color.danger.800-hex"),
46
+ danger-900: token("base.color.danger.900-hex"),
47
+ danger: token("base.color.danger.def-hex"),
48
+ warning-50: token("base.color.warning.50-hex"),
49
+ warning-100: token("base.color.warning.100-hex"),
50
+ warning-200: token("base.color.warning.200-hex"),
51
+ warning-300: token("base.color.warning.300-hex"),
52
+ warning-400: token("base.color.warning.400-hex"),
53
+ warning-500: token("base.color.warning.500-hex"),
54
+ warning-600: token("base.color.warning.600-hex"),
55
+ warning-700: token("base.color.warning.700-hex"),
56
+ warning-800: token("base.color.warning.800-hex"),
57
+ warning-900: token("base.color.warning.900-hex"),
58
+ warning: token("base.color.warning.def-hex"),
59
+ info-50: token("base.color.info.50-hex"),
60
+ info-100: token("base.color.info.100-hex"),
61
+ info-200: token("base.color.info.200-hex"),
62
+ info-300: token("base.color.info.300-hex"),
63
+ info-400: token("base.color.info.400-hex"),
64
+ info-500: token("base.color.info.500-hex"),
65
+ info-600: token("base.color.info.600-hex"),
66
+ info-700: token("base.color.info.700-hex"),
67
+ info-800: token("base.color.info.800-hex"),
68
+ info-900: token("base.color.info.900-hex"),
69
+ info: token("base.color.info.def-hex"),
70
+ transparent: token("base.color.transparent-hex"),
71
+ white: token("base.color.white-hex"),
72
+ black: token("base.color.black-hex"),
73
+ gray-50: token("base.color.gray.50-hex"),
74
+ gray-100: token("base.color.gray.100-hex"),
75
+ gray-200: token("base.color.gray.200-hex"),
76
+ gray-300: token("base.color.gray.300-hex"),
77
+ gray-400: token("base.color.gray.400-hex"),
78
+ gray-500: token("base.color.gray.500-hex"),
79
+ gray-600: token("base.color.gray.600-hex"),
80
+ gray-700: token("base.color.gray.700-hex"),
81
+ gray-800: token("base.color.gray.800-hex"),
82
+ gray-900: token("base.color.gray.900-hex"),
83
+ gray: token("base.color.gray.def-hex"),
84
+ red-50: token("base.color.red.50-hex"),
85
+ red-100: token("base.color.red.100-hex"),
86
+ red-200: token("base.color.red.200-hex"),
87
+ red-300: token("base.color.red.300-hex"),
88
+ red-400: token("base.color.red.400-hex"),
89
+ red-500: token("base.color.red.500-hex"),
90
+ red-600: token("base.color.red.600-hex"),
91
+ red-700: token("base.color.red.700-hex"),
92
+ red-800: token("base.color.red.800-hex"),
93
+ red-900: token("base.color.red.900-hex"),
94
+ red: token("base.color.red.def-hex"),
95
+ orange-50: token("base.color.orange.50-hex"),
96
+ orange-100: token("base.color.orange.100-hex"),
97
+ orange-200: token("base.color.orange.200-hex"),
98
+ orange-300: token("base.color.orange.300-hex"),
99
+ orange-400: token("base.color.orange.400-hex"),
100
+ orange-500: token("base.color.orange.500-hex"),
101
+ orange-600: token("base.color.orange.600-hex"),
102
+ orange-700: token("base.color.orange.700-hex"),
103
+ orange-800: token("base.color.orange.800-hex"),
104
+ orange-900: token("base.color.orange.900-hex"),
105
+ orange: token("base.color.orange.def-hex"),
106
+ yellow-50: token("base.color.yellow.50-hex"),
107
+ yellow-100: token("base.color.yellow.100-hex"),
108
+ yellow-200: token("base.color.yellow.200-hex"),
109
+ yellow-300: token("base.color.yellow.300-hex"),
110
+ yellow-400: token("base.color.yellow.400-hex"),
111
+ yellow-500: token("base.color.yellow.500-hex"),
112
+ yellow-600: token("base.color.yellow.600-hex"),
113
+ yellow-700: token("base.color.yellow.700-hex"),
114
+ yellow-800: token("base.color.yellow.800-hex"),
115
+ yellow-900: token("base.color.yellow.900-hex"),
116
+ yellow: token("base.color.yellow.def-hex"),
117
+ green-50: token("base.color.green.50-hex"),
118
+ green-100: token("base.color.green.100-hex"),
119
+ green-200: token("base.color.green.200-hex"),
120
+ green-300: token("base.color.green.300-hex"),
121
+ green-400: token("base.color.green.400-hex"),
122
+ green-500: token("base.color.green.500-hex"),
123
+ green-600: token("base.color.green.600-hex"),
124
+ green-700: token("base.color.green.700-hex"),
125
+ green-800: token("base.color.green.800-hex"),
126
+ green-900: token("base.color.green.900-hex"),
127
+ green: token("base.color.green.def-hex"),
128
+ sky-50: token("base.color.sky.50-hex"),
129
+ sky-100: token("base.color.sky.100-hex"),
130
+ sky-200: token("base.color.sky.200-hex"),
131
+ sky-300: token("base.color.sky.300-hex"),
132
+ sky-400: token("base.color.sky.400-hex"),
133
+ sky-500: token("base.color.sky.500-hex"),
134
+ sky-600: token("base.color.sky.600-hex"),
135
+ sky-700: token("base.color.sky.700-hex"),
136
+ sky-800: token("base.color.sky.800-hex"),
137
+ sky-900: token("base.color.sky.900-hex"),
138
+ sky: token("base.color.sky.def-hex"),
139
+ blue-50: token("base.color.blue.50-hex"),
140
+ blue-100: token("base.color.blue.100-hex"),
141
+ blue-200: token("base.color.blue.200-hex"),
142
+ blue-300: token("base.color.blue.300-hex"),
143
+ blue-400: token("base.color.blue.400-hex"),
144
+ blue-500: token("base.color.blue.500-hex"),
145
+ blue-600: token("base.color.blue.600-hex"),
146
+ blue-700: token("base.color.blue.700-hex"),
147
+ blue-800: token("base.color.blue.800-hex"),
148
+ blue-900: token("base.color.blue.900-hex"),
149
+ blue: token("base.color.blue.def-hex"),
150
+ );
151
+
152
+ $palette-rgb: (
153
+ primary-50: token("base.color.primary.50-rgb"),
154
+ primary-100: token("base.color.primary.100-rgb"),
155
+ primary-200: token("base.color.primary.200-rgb"),
156
+ primary-300: token("base.color.primary.300-rgb"),
157
+ primary-400: token("base.color.primary.400-rgb"),
158
+ primary-500: token("base.color.primary.500-rgb"),
159
+ primary-600: token("base.color.primary.600-rgb"),
160
+ primary-700: token("base.color.primary.700-rgb"),
161
+ primary-800: token("base.color.primary.800-rgb"),
162
+ primary-900: token("base.color.primary.900-rgb"),
163
+ primary-950: token("base.color.primary.950-rgb"),
164
+ primary: token("base.color.primary.def-rgb"),
165
+ secondary-50: token("base.color.secondary.50-rgb"),
166
+ secondary-100: token("base.color.secondary.100-rgb"),
167
+ secondary-200: token("base.color.secondary.200-rgb"),
168
+ secondary-300: token("base.color.secondary.300-rgb"),
169
+ secondary-400: token("base.color.secondary.400-rgb"),
170
+ secondary-500: token("base.color.secondary.500-rgb"),
171
+ secondary-600: token("base.color.secondary.600-rgb"),
172
+ secondary-700: token("base.color.secondary.700-rgb"),
173
+ secondary-800: token("base.color.secondary.800-rgb"),
174
+ secondary-900: token("base.color.secondary.900-rgb"),
175
+ secondary-950: token("base.color.secondary.950-rgb"),
176
+ secondary: token("base.color.secondary.def-rgb"),
177
+ success-50: token("base.color.success.50-rgb"),
178
+ success-100: token("base.color.success.100-rgb"),
179
+ success-200: token("base.color.success.200-rgb"),
180
+ success-300: token("base.color.success.300-rgb"),
181
+ success-400: token("base.color.success.400-rgb"),
182
+ success-500: token("base.color.success.500-rgb"),
183
+ success-600: token("base.color.success.600-rgb"),
184
+ success-700: token("base.color.success.700-rgb"),
185
+ success-800: token("base.color.success.800-rgb"),
186
+ success-900: token("base.color.success.900-rgb"),
187
+ success: token("base.color.success.def-rgb"),
188
+ danger-50: token("base.color.danger.50-rgb"),
189
+ danger-100: token("base.color.danger.100-rgb"),
190
+ danger-200: token("base.color.danger.200-rgb"),
191
+ danger-300: token("base.color.danger.300-rgb"),
192
+ danger-400: token("base.color.danger.400-rgb"),
193
+ danger-500: token("base.color.danger.500-rgb"),
194
+ danger-600: token("base.color.danger.600-rgb"),
195
+ danger-700: token("base.color.danger.700-rgb"),
196
+ danger-800: token("base.color.danger.800-rgb"),
197
+ danger-900: token("base.color.danger.900-rgb"),
198
+ danger: token("base.color.danger.def-rgb"),
199
+ warning-50: token("base.color.warning.50-rgb"),
200
+ warning-100: token("base.color.warning.100-rgb"),
201
+ warning-200: token("base.color.warning.200-rgb"),
202
+ warning-300: token("base.color.warning.300-rgb"),
203
+ warning-400: token("base.color.warning.400-rgb"),
204
+ warning-500: token("base.color.warning.500-rgb"),
205
+ warning-600: token("base.color.warning.600-rgb"),
206
+ warning-700: token("base.color.warning.700-rgb"),
207
+ warning-800: token("base.color.warning.800-rgb"),
208
+ warning-900: token("base.color.warning.900-rgb"),
209
+ warning: token("base.color.warning.def-rgb"),
210
+ info-50: token("base.color.info.50-rgb"),
211
+ info-100: token("base.color.info.100-rgb"),
212
+ info-200: token("base.color.info.200-rgb"),
213
+ info-300: token("base.color.info.300-rgb"),
214
+ info-400: token("base.color.info.400-rgb"),
215
+ info-500: token("base.color.info.500-rgb"),
216
+ info-600: token("base.color.info.600-rgb"),
217
+ info-700: token("base.color.info.700-rgb"),
218
+ info-800: token("base.color.info.800-rgb"),
219
+ info-900: token("base.color.info.900-rgb"),
220
+ info: token("base.color.info.def-rgb"),
221
+ transparent: token("base.color.transparent-rgb"),
222
+ white: token("base.color.white-rgb"),
223
+ black: token("base.color.black-rgb"),
224
+ gray-50: token("base.color.gray.50-rgb"),
225
+ gray-100: token("base.color.gray.100-rgb"),
226
+ gray-200: token("base.color.gray.200-rgb"),
227
+ gray-300: token("base.color.gray.300-rgb"),
228
+ gray-400: token("base.color.gray.400-rgb"),
229
+ gray-500: token("base.color.gray.500-rgb"),
230
+ gray-600: token("base.color.gray.600-rgb"),
231
+ gray-700: token("base.color.gray.700-rgb"),
232
+ gray-800: token("base.color.gray.800-rgb"),
233
+ gray-900: token("base.color.gray.900-rgb"),
234
+ gray: token("base.color.gray.def-rgb"),
235
+ red-50: token("base.color.red.50-rgb"),
236
+ red-100: token("base.color.red.100-rgb"),
237
+ red-200: token("base.color.red.200-rgb"),
238
+ red-300: token("base.color.red.300-rgb"),
239
+ red-400: token("base.color.red.400-rgb"),
240
+ red-500: token("base.color.red.500-rgb"),
241
+ red-600: token("base.color.red.600-rgb"),
242
+ red-700: token("base.color.red.700-rgb"),
243
+ red-800: token("base.color.red.800-rgb"),
244
+ red-900: token("base.color.red.900-rgb"),
245
+ red: token("base.color.red.def-rgb"),
246
+ orange-50: token("base.color.orange.50-rgb"),
247
+ orange-100: token("base.color.orange.100-rgb"),
248
+ orange-200: token("base.color.orange.200-rgb"),
249
+ orange-300: token("base.color.orange.300-rgb"),
250
+ orange-400: token("base.color.orange.400-rgb"),
251
+ orange-500: token("base.color.orange.500-rgb"),
252
+ orange-600: token("base.color.orange.600-rgb"),
253
+ orange-700: token("base.color.orange.700-rgb"),
254
+ orange-800: token("base.color.orange.800-rgb"),
255
+ orange-900: token("base.color.orange.900-rgb"),
256
+ orange: token("base.color.orange.def-rgb"),
257
+ yellow-50: token("base.color.yellow.50-rgb"),
258
+ yellow-100: token("base.color.yellow.100-rgb"),
259
+ yellow-200: token("base.color.yellow.200-rgb"),
260
+ yellow-300: token("base.color.yellow.300-rgb"),
261
+ yellow-400: token("base.color.yellow.400-rgb"),
262
+ yellow-500: token("base.color.yellow.500-rgb"),
263
+ yellow-600: token("base.color.yellow.600-rgb"),
264
+ yellow-700: token("base.color.yellow.700-rgb"),
265
+ yellow-800: token("base.color.yellow.800-rgb"),
266
+ yellow-900: token("base.color.yellow.900-rgb"),
267
+ yellow: token("base.color.yellow.def-rgb"),
268
+ green-50: token("base.color.green.50-rgb"),
269
+ green-100: token("base.color.green.100-rgb"),
270
+ green-200: token("base.color.green.200-rgb"),
271
+ green-300: token("base.color.green.300-rgb"),
272
+ green-400: token("base.color.green.400-rgb"),
273
+ green-500: token("base.color.green.500-rgb"),
274
+ green-600: token("base.color.green.600-rgb"),
275
+ green-700: token("base.color.green.700-rgb"),
276
+ green-800: token("base.color.green.800-rgb"),
277
+ green-900: token("base.color.green.900-rgb"),
278
+ green: token("base.color.green.def-rgb"),
279
+ sky-50: token("base.color.sky.50-rgb"),
280
+ sky-100: token("base.color.sky.100-rgb"),
281
+ sky-200: token("base.color.sky.200-rgb"),
282
+ sky-300: token("base.color.sky.300-rgb"),
283
+ sky-400: token("base.color.sky.400-rgb"),
284
+ sky-500: token("base.color.sky.500-rgb"),
285
+ sky-600: token("base.color.sky.600-rgb"),
286
+ sky-700: token("base.color.sky.700-rgb"),
287
+ sky-800: token("base.color.sky.800-rgb"),
288
+ sky-900: token("base.color.sky.900-rgb"),
289
+ sky: token("base.color.sky.def-rgb"),
290
+ blue-50: token("base.color.blue.50-rgb"),
291
+ blue-100: token("base.color.blue.100-rgb"),
292
+ blue-200: token("base.color.blue.200-rgb"),
293
+ blue-300: token("base.color.blue.300-rgb"),
294
+ blue-400: token("base.color.blue.400-rgb"),
295
+ blue-500: token("base.color.blue.500-rgb"),
296
+ blue-600: token("base.color.blue.600-rgb"),
297
+ blue-700: token("base.color.blue.700-rgb"),
298
+ blue-800: token("base.color.blue.800-rgb"),
299
+ blue-900: token("base.color.blue.900-rgb"),
300
+ blue: token("base.color.blue.def-rgb"),
301
+ );
302
+
303
+ $palette: (
304
+ primary-50: token("base.color.primary.50"),
305
+ primary-100: token("base.color.primary.100"),
306
+ primary-200: token("base.color.primary.200"),
307
+ primary-300: token("base.color.primary.300"),
308
+ primary-400: token("base.color.primary.400"),
309
+ primary-500: token("base.color.primary.500"),
310
+ primary-600: token("base.color.primary.600"),
311
+ primary-700: token("base.color.primary.700"),
312
+ primary-800: token("base.color.primary.800"),
313
+ primary-900: token("base.color.primary.900"),
314
+ primary-950: token("base.color.primary.950"),
315
+ primary-def: token("base.color.primary.def"),
316
+ secondary-50: token("base.color.secondary.50"),
317
+ secondary-100: token("base.color.secondary.100"),
318
+ secondary-200: token("base.color.secondary.200"),
319
+ secondary-300: token("base.color.secondary.300"),
320
+ secondary-400: token("base.color.secondary.400"),
321
+ secondary-500: token("base.color.secondary.500"),
322
+ secondary-600: token("base.color.secondary.600"),
323
+ secondary-700: token("base.color.secondary.700"),
324
+ secondary-800: token("base.color.secondary.800"),
325
+ secondary-900: token("base.color.secondary.900"),
326
+ secondary-950: token("base.color.secondary.950"),
327
+ secondary-def: token("base.color.secondary.def"),
328
+ success-50: token("base.color.success.50"),
329
+ success-100: token("base.color.success.100"),
330
+ success-200: token("base.color.success.200"),
331
+ success-300: token("base.color.success.300"),
332
+ success-400: token("base.color.success.400"),
333
+ success-500: token("base.color.success.500"),
334
+ success-600: token("base.color.success.600"),
335
+ success-700: token("base.color.success.700"),
336
+ success-800: token("base.color.success.800"),
337
+ success-900: token("base.color.success.900"),
338
+ success-def: token("base.color.success.def"),
339
+ danger-50: token("base.color.danger.50"),
340
+ danger-100: token("base.color.danger.100"),
341
+ danger-200: token("base.color.danger.200"),
342
+ danger-300: token("base.color.danger.300"),
343
+ danger-400: token("base.color.danger.400"),
344
+ danger-500: token("base.color.danger.500"),
345
+ danger-600: token("base.color.danger.600"),
346
+ danger-700: token("base.color.danger.700"),
347
+ danger-800: token("base.color.danger.800"),
348
+ danger-900: token("base.color.danger.900"),
349
+ danger-def: token("base.color.danger.def"),
350
+ warning-50: token("base.color.warning.50"),
351
+ warning-100: token("base.color.warning.100"),
352
+ warning-200: token("base.color.warning.200"),
353
+ warning-300: token("base.color.warning.300"),
354
+ warning-400: token("base.color.warning.400"),
355
+ warning-500: token("base.color.warning.500"),
356
+ warning-600: token("base.color.warning.600"),
357
+ warning-700: token("base.color.warning.700"),
358
+ warning-800: token("base.color.warning.800"),
359
+ warning-900: token("base.color.warning.900"),
360
+ warning-def: token("base.color.warning.def"),
361
+ info-50: token("base.color.info.50"),
362
+ info-100: token("base.color.info.100"),
363
+ info-200: token("base.color.info.200"),
364
+ info-300: token("base.color.info.300"),
365
+ info-400: token("base.color.info.400"),
366
+ info-500: token("base.color.info.500"),
367
+ info-600: token("base.color.info.600"),
368
+ info-700: token("base.color.info.700"),
369
+ info-800: token("base.color.info.800"),
370
+ info-900: token("base.color.info.900"),
371
+ info-def: token("base.color.info.def"),
372
+ transparent: token("base.color.transparent"),
373
+ white: token("base.color.white"),
374
+ black: token("base.color.black"),
375
+ background: token("base.color.background"),
376
+ gray-50: token("base.color.gray.50"),
377
+ gray-100: token("base.color.gray.100"),
378
+ gray-200: token("base.color.gray.200"),
379
+ gray-300: token("base.color.gray.300"),
380
+ gray-400: token("base.color.gray.400"),
381
+ gray-500: token("base.color.gray.500"),
382
+ gray-600: token("base.color.gray.600"),
383
+ gray-700: token("base.color.gray.700"),
384
+ gray-800: token("base.color.gray.800"),
385
+ gray-900: token("base.color.gray.900"),
386
+ gray-def: token("base.color.gray.def"),
387
+ red-50: token("base.color.red.50"),
388
+ red-100: token("base.color.red.100"),
389
+ red-200: token("base.color.red.200"),
390
+ red-300: token("base.color.red.300"),
391
+ red-400: token("base.color.red.400"),
392
+ red-500: token("base.color.red.500"),
393
+ red-600: token("base.color.red.600"),
394
+ red-700: token("base.color.red.700"),
395
+ red-800: token("base.color.red.800"),
396
+ red-900: token("base.color.red.900"),
397
+ red-def: token("base.color.red.def"),
398
+ orange-50: token("base.color.orange.50"),
399
+ orange-100: token("base.color.orange.100"),
400
+ orange-200: token("base.color.orange.200"),
401
+ orange-300: token("base.color.orange.300"),
402
+ orange-400: token("base.color.orange.400"),
403
+ orange-500: token("base.color.orange.500"),
404
+ orange-600: token("base.color.orange.600"),
405
+ orange-700: token("base.color.orange.700"),
406
+ orange-800: token("base.color.orange.800"),
407
+ orange-900: token("base.color.orange.900"),
408
+ orange-def: token("base.color.orange.def"),
409
+ yellow-50: token("base.color.yellow.50"),
410
+ yellow-100: token("base.color.yellow.100"),
411
+ yellow-200: token("base.color.yellow.200"),
412
+ yellow-300: token("base.color.yellow.300"),
413
+ yellow-400: token("base.color.yellow.400"),
414
+ yellow-500: token("base.color.yellow.500"),
415
+ yellow-600: token("base.color.yellow.600"),
416
+ yellow-700: token("base.color.yellow.700"),
417
+ yellow-800: token("base.color.yellow.800"),
418
+ yellow-900: token("base.color.yellow.900"),
419
+ yellow-def: token("base.color.yellow.def"),
420
+ green-50: token("base.color.green.50"),
421
+ green-100: token("base.color.green.100"),
422
+ green-200: token("base.color.green.200"),
423
+ green-300: token("base.color.green.300"),
424
+ green-400: token("base.color.green.400"),
425
+ green-500: token("base.color.green.500"),
426
+ green-600: token("base.color.green.600"),
427
+ green-700: token("base.color.green.700"),
428
+ green-800: token("base.color.green.800"),
429
+ green-900: token("base.color.green.900"),
430
+ green-def: token("base.color.green.def"),
431
+ sky-50: token("base.color.sky.50"),
432
+ sky-100: token("base.color.sky.100"),
433
+ sky-200: token("base.color.sky.200"),
434
+ sky-300: token("base.color.sky.300"),
435
+ sky-400: token("base.color.sky.400"),
436
+ sky-500: token("base.color.sky.500"),
437
+ sky-600: token("base.color.sky.600"),
438
+ sky-700: token("base.color.sky.700"),
439
+ sky-800: token("base.color.sky.800"),
440
+ sky-900: token("base.color.sky.900"),
441
+ sky-def: token("base.color.sky.def"),
442
+ blue-50: token("base.color.blue.50"),
443
+ blue-100: token("base.color.blue.100"),
444
+ blue-200: token("base.color.blue.200"),
445
+ blue-300: token("base.color.blue.300"),
446
+ blue-400: token("base.color.blue.400"),
447
+ blue-500: token("base.color.blue.500"),
448
+ blue-600: token("base.color.blue.600"),
449
+ blue-700: token("base.color.blue.700"),
450
+ blue-800: token("base.color.blue.800"),
451
+ blue-900: token("base.color.blue.900"),
452
+ blue-def: token("base.color.blue.def"),
453
+ opacity: token("base.color.opacity"),
454
+ primary: token("base.color.variant.primary"),
455
+ secondary: token("base.color.variant.secondary"),
456
+ success: token("base.color.variant.success"),
457
+ info: token("base.color.variant.info"),
458
+ warning: token("base.color.variant.warning"),
459
+ danger: token("base.color.variant.danger"),
460
+ );
@@ -0,0 +1 @@
1
+ $prefix: "u-";