@rainersoft/design-tokens 2.0.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +167 -519
- package/dist/index.d.mts +8485 -0
- package/dist/index.d.ts +1052 -31
- package/dist/index.js +44 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +16 -2
- package/dist/index.mjs.map +1 -1
- package/formats/tokens.json +7 -4
- package/package.json +37 -85
- package/themes/dark.ts +0 -89
- package/themes/index.ts +0 -99
- package/themes/light.ts +0 -88
- package/tokens/accessibility.ts +0 -280
- package/tokens/animations.json +0 -142
- package/tokens/breakpoints.json +0 -30
- package/tokens/colors/dark.json +0 -296
- package/tokens/colors/light.json +0 -272
- package/tokens/components/celestial-background.json +0 -106
- package/tokens/effects.json +0 -125
- package/tokens/hero.json +0 -69
- package/tokens/index.ts +0 -443
- package/tokens/motion.json +0 -33
- package/tokens/radius.json +0 -16
- package/tokens/shadows.json +0 -33
- package/tokens/spacing.json +0 -42
- package/tokens/typography.json +0 -264
- package/tokens/utilities.ts +0 -594
- package/tokens/z-index.json +0 -27
package/tokens/colors/dark.json
DELETED
|
@@ -1,296 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/theme.json",
|
|
3
|
-
"$description": "Dark theme color palette - Cyberpunk neon style with WCAG AA compliance",
|
|
4
|
-
"colors": {
|
|
5
|
-
"primary": {
|
|
6
|
-
"base": "#00e6ff",
|
|
7
|
-
"hover": "#1affff",
|
|
8
|
-
"active": "#4dffff",
|
|
9
|
-
"disabled": "#404040",
|
|
10
|
-
"focus": "#00e6ff",
|
|
11
|
-
"background": "rgba(0, 230, 255, 0.1)",
|
|
12
|
-
"backgroundHover": "rgba(0, 230, 255, 0.15)",
|
|
13
|
-
"backgroundActive": "rgba(0, 230, 255, 0.2)",
|
|
14
|
-
"border": "#00e6ff",
|
|
15
|
-
"borderHover": "#1affff",
|
|
16
|
-
"borderFocus": "#4dffff",
|
|
17
|
-
"text": "#0a0a0f",
|
|
18
|
-
"textHover": "#0a0a0f",
|
|
19
|
-
"textDisabled": "#525252"
|
|
20
|
-
},
|
|
21
|
-
"secondary": {
|
|
22
|
-
"base": "#7d00ff",
|
|
23
|
-
"hover": "#941aff",
|
|
24
|
-
"active": "#ab4dff",
|
|
25
|
-
"disabled": "#404040",
|
|
26
|
-
"focus": "#7d00ff",
|
|
27
|
-
"background": "rgba(125, 0, 255, 0.1)",
|
|
28
|
-
"backgroundHover": "rgba(125, 0, 255, 0.15)",
|
|
29
|
-
"backgroundActive": "rgba(125, 0, 255, 0.2)",
|
|
30
|
-
"border": "#7d00ff",
|
|
31
|
-
"borderHover": "#941aff",
|
|
32
|
-
"borderFocus": "#ab4dff",
|
|
33
|
-
"text": "#ffffff",
|
|
34
|
-
"textHover": "#ffffff",
|
|
35
|
-
"textDisabled": "#525252"
|
|
36
|
-
},
|
|
37
|
-
"accent": {
|
|
38
|
-
"base": "#ff00ff",
|
|
39
|
-
"hover": "#ff1aff",
|
|
40
|
-
"active": "#ff4dff",
|
|
41
|
-
"disabled": "#404040",
|
|
42
|
-
"focus": "#ff00ff",
|
|
43
|
-
"background": "rgba(255, 0, 255, 0.1)",
|
|
44
|
-
"backgroundHover": "rgba(255, 0, 255, 0.15)",
|
|
45
|
-
"backgroundActive": "rgba(255, 0, 255, 0.2)",
|
|
46
|
-
"border": "#ff00ff",
|
|
47
|
-
"borderHover": "#ff1aff",
|
|
48
|
-
"borderFocus": "#ff4dff",
|
|
49
|
-
"text": "#0a0a0f",
|
|
50
|
-
"textHover": "#0a0a0f",
|
|
51
|
-
"textDisabled": "#525252"
|
|
52
|
-
},
|
|
53
|
-
"background": {
|
|
54
|
-
"primary": "#0a0a0f",
|
|
55
|
-
"secondary": "#0f0f1a",
|
|
56
|
-
"tertiary": "#171717",
|
|
57
|
-
"inverse": "#ffffff",
|
|
58
|
-
"overlay": "rgba(0, 0, 0, 0.8)",
|
|
59
|
-
"muted": "#0f0f1a"
|
|
60
|
-
},
|
|
61
|
-
"surface": {
|
|
62
|
-
"primary": "#171717",
|
|
63
|
-
"secondary": "#262626",
|
|
64
|
-
"tertiary": "#404040",
|
|
65
|
-
"elevated": "#262626",
|
|
66
|
-
"overlay": "rgba(0, 0, 0, 0.8)",
|
|
67
|
-
"glass": "rgba(15, 15, 26, 0.7)",
|
|
68
|
-
"glassHover": "rgba(15, 15, 26, 0.85)",
|
|
69
|
-
"hover": "#262626",
|
|
70
|
-
"active": "#404040"
|
|
71
|
-
},
|
|
72
|
-
"text": {
|
|
73
|
-
"primary": "#b3ffff",
|
|
74
|
-
"secondary": "#4dffff",
|
|
75
|
-
"tertiary": "#00e6ff",
|
|
76
|
-
"inverse": "#0a0a0f",
|
|
77
|
-
"disabled": "#525252",
|
|
78
|
-
"link": "#1affff",
|
|
79
|
-
"linkHover": "#4dffff",
|
|
80
|
-
"linkActive": "#80ffff",
|
|
81
|
-
"linkVisited": "#941aff",
|
|
82
|
-
"onPrimary": "#0a0a0f",
|
|
83
|
-
"onSecondary": "#ffffff",
|
|
84
|
-
"onAccent": "#0a0a0f",
|
|
85
|
-
"onBackground": "#b3ffff",
|
|
86
|
-
"onSurface": "#b3ffff",
|
|
87
|
-
"glow": "#00e6ff",
|
|
88
|
-
"neonCyan": "#00e6ff",
|
|
89
|
-
"neonPink": "#ff00ff",
|
|
90
|
-
"neonPurple": "#7d00ff",
|
|
91
|
-
"neonGreen": "#00ff00"
|
|
92
|
-
},
|
|
93
|
-
"border": {
|
|
94
|
-
"primary": "#262626",
|
|
95
|
-
"secondary": "#404040",
|
|
96
|
-
"tertiary": "#525252",
|
|
97
|
-
"focus": "#00e6ff",
|
|
98
|
-
"focusRing": "#1affff",
|
|
99
|
-
"inverse": "#e5e5e5",
|
|
100
|
-
"neon": "#00e6ff",
|
|
101
|
-
"neonGlow": "rgba(0, 230, 255, 0.3)",
|
|
102
|
-
"hover": "#404040",
|
|
103
|
-
"active": "#525252",
|
|
104
|
-
"disabled": "#262626"
|
|
105
|
-
},
|
|
106
|
-
"status": {
|
|
107
|
-
"success": {
|
|
108
|
-
"base": "#00ff00",
|
|
109
|
-
"hover": "#4dff4d",
|
|
110
|
-
"active": "#80ff80",
|
|
111
|
-
"background": "rgba(0, 255, 0, 0.1)",
|
|
112
|
-
"backgroundHover": "rgba(0, 255, 0, 0.15)",
|
|
113
|
-
"border": "#4dff4d",
|
|
114
|
-
"text": "#0a0a0f",
|
|
115
|
-
"textOnBackground": "#4dff4d"
|
|
116
|
-
},
|
|
117
|
-
"warning": {
|
|
118
|
-
"base": "#ff7d00",
|
|
119
|
-
"hover": "#ffab4d",
|
|
120
|
-
"active": "#ffc880",
|
|
121
|
-
"background": "rgba(255, 125, 0, 0.1)",
|
|
122
|
-
"backgroundHover": "rgba(255, 125, 0, 0.15)",
|
|
123
|
-
"border": "#ffab4d",
|
|
124
|
-
"text": "#0a0a0f",
|
|
125
|
-
"textOnBackground": "#ffab4d"
|
|
126
|
-
},
|
|
127
|
-
"error": {
|
|
128
|
-
"base": "#f87171",
|
|
129
|
-
"hover": "#fca5a5",
|
|
130
|
-
"active": "#fecaca",
|
|
131
|
-
"background": "rgba(239, 68, 68, 0.1)",
|
|
132
|
-
"backgroundHover": "rgba(239, 68, 68, 0.15)",
|
|
133
|
-
"border": "#fca5a5",
|
|
134
|
-
"text": "#ffffff",
|
|
135
|
-
"textOnBackground": "#fca5a5"
|
|
136
|
-
},
|
|
137
|
-
"info": {
|
|
138
|
-
"base": "#007dff",
|
|
139
|
-
"hover": "#4dabff",
|
|
140
|
-
"active": "#80c7ff",
|
|
141
|
-
"background": "rgba(0, 125, 255, 0.1)",
|
|
142
|
-
"backgroundHover": "rgba(0, 125, 255, 0.15)",
|
|
143
|
-
"border": "#4dabff",
|
|
144
|
-
"text": "#ffffff",
|
|
145
|
-
"textOnBackground": "#4dabff"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"interactive": {
|
|
149
|
-
"default": "#00e6ff",
|
|
150
|
-
"hover": "#1affff",
|
|
151
|
-
"active": "#4dffff",
|
|
152
|
-
"disabled": "#404040",
|
|
153
|
-
"disabledText": "#525252",
|
|
154
|
-
"focus": "#00e6ff",
|
|
155
|
-
"focusRing": "#1affff"
|
|
156
|
-
},
|
|
157
|
-
"effects": {
|
|
158
|
-
"glowCyan": "0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",
|
|
159
|
-
"glowPink": "0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",
|
|
160
|
-
"glowPurple": "0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",
|
|
161
|
-
"glowGreen": "0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)",
|
|
162
|
-
"shadowSm": "0 1px 2px 0 rgba(0, 0, 0, 0.5)",
|
|
163
|
-
"shadowMd": "0 4px 6px -1px rgba(0, 0, 0, 0.5)",
|
|
164
|
-
"shadowLg": "0 10px 15px -3px rgba(0, 0, 0, 0.5)"
|
|
165
|
-
},
|
|
166
|
-
"gradients": {
|
|
167
|
-
"primary": "linear-gradient(135deg, #00e6ff 0%, #7d00ff 100%)",
|
|
168
|
-
"secondary": "linear-gradient(135deg, #ff00ff 0%, #00e6ff 100%)",
|
|
169
|
-
"accent": "linear-gradient(135deg, #ff7d00 0%, #ff00ff 100%)",
|
|
170
|
-
"background": "linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%)"
|
|
171
|
-
},
|
|
172
|
-
"primitive": {
|
|
173
|
-
"cyan": {
|
|
174
|
-
"50": "rgba(0, 230, 255, 0.1)",
|
|
175
|
-
"100": "rgba(0, 230, 255, 0.15)",
|
|
176
|
-
"200": "rgba(0, 230, 255, 0.2)",
|
|
177
|
-
"300": "#4dffff",
|
|
178
|
-
"400": "#1affff",
|
|
179
|
-
"500": "#00e6ff",
|
|
180
|
-
"600": "#00b8cc",
|
|
181
|
-
"700": "#008a99",
|
|
182
|
-
"800": "#005c66",
|
|
183
|
-
"900": "#003d44"
|
|
184
|
-
},
|
|
185
|
-
"purple": {
|
|
186
|
-
"50": "rgba(125, 0, 255, 0.1)",
|
|
187
|
-
"100": "rgba(125, 0, 255, 0.15)",
|
|
188
|
-
"200": "rgba(125, 0, 255, 0.2)",
|
|
189
|
-
"300": "#ab4dff",
|
|
190
|
-
"400": "#941aff",
|
|
191
|
-
"500": "#7d00ff",
|
|
192
|
-
"600": "#6400cc",
|
|
193
|
-
"700": "#4b0099",
|
|
194
|
-
"800": "#320066",
|
|
195
|
-
"900": "#190033"
|
|
196
|
-
},
|
|
197
|
-
"pink": {
|
|
198
|
-
"50": "rgba(255, 0, 255, 0.1)",
|
|
199
|
-
"100": "rgba(255, 0, 255, 0.15)",
|
|
200
|
-
"200": "rgba(255, 0, 255, 0.2)",
|
|
201
|
-
"300": "#ff4dff",
|
|
202
|
-
"400": "#ff1aff",
|
|
203
|
-
"500": "#ff00ff",
|
|
204
|
-
"600": "#cc00cc",
|
|
205
|
-
"700": "#990099",
|
|
206
|
-
"800": "#660066",
|
|
207
|
-
"900": "#330033"
|
|
208
|
-
},
|
|
209
|
-
"blue": {
|
|
210
|
-
"50": "rgba(0, 125, 255, 0.1)",
|
|
211
|
-
"100": "rgba(0, 125, 255, 0.15)",
|
|
212
|
-
"200": "rgba(0, 125, 255, 0.2)",
|
|
213
|
-
"300": "#80c7ff",
|
|
214
|
-
"400": "#4dabff",
|
|
215
|
-
"500": "#007dff",
|
|
216
|
-
"600": "#0064cc",
|
|
217
|
-
"700": "#004b99",
|
|
218
|
-
"800": "#003266",
|
|
219
|
-
"900": "#001933"
|
|
220
|
-
},
|
|
221
|
-
"green": {
|
|
222
|
-
"50": "rgba(0, 255, 0, 0.1)",
|
|
223
|
-
"100": "rgba(0, 255, 0, 0.15)",
|
|
224
|
-
"200": "rgba(0, 255, 0, 0.2)",
|
|
225
|
-
"300": "#80ff80",
|
|
226
|
-
"400": "#4dff4d",
|
|
227
|
-
"500": "#00ff00",
|
|
228
|
-
"600": "#00cc00",
|
|
229
|
-
"700": "#009900",
|
|
230
|
-
"800": "#006600",
|
|
231
|
-
"900": "#003300"
|
|
232
|
-
},
|
|
233
|
-
"orange": {
|
|
234
|
-
"50": "rgba(255, 125, 0, 0.1)",
|
|
235
|
-
"100": "rgba(255, 125, 0, 0.15)",
|
|
236
|
-
"200": "rgba(255, 125, 0, 0.2)",
|
|
237
|
-
"300": "#ffc880",
|
|
238
|
-
"400": "#ffab4d",
|
|
239
|
-
"500": "#ff7d00",
|
|
240
|
-
"600": "#cc6400",
|
|
241
|
-
"700": "#994b00",
|
|
242
|
-
"800": "#663200",
|
|
243
|
-
"900": "#331900"
|
|
244
|
-
},
|
|
245
|
-
"red": {
|
|
246
|
-
"50": "rgba(239, 68, 68, 0.1)",
|
|
247
|
-
"100": "rgba(239, 68, 68, 0.15)",
|
|
248
|
-
"200": "rgba(239, 68, 68, 0.2)",
|
|
249
|
-
"300": "#fecaca",
|
|
250
|
-
"400": "#fca5a5",
|
|
251
|
-
"500": "#f87171",
|
|
252
|
-
"600": "#c55a5a",
|
|
253
|
-
"700": "#924343",
|
|
254
|
-
"800": "#5f2c2c",
|
|
255
|
-
"900": "#2c1515"
|
|
256
|
-
},
|
|
257
|
-
"amber": {
|
|
258
|
-
"50": "rgba(255, 125, 0, 0.1)",
|
|
259
|
-
"100": "rgba(255, 125, 0, 0.15)",
|
|
260
|
-
"200": "rgba(255, 125, 0, 0.2)",
|
|
261
|
-
"300": "#ffc880",
|
|
262
|
-
"400": "#ffab4d",
|
|
263
|
-
"500": "#ff7d00",
|
|
264
|
-
"600": "#cc6400",
|
|
265
|
-
"700": "#994b00",
|
|
266
|
-
"800": "#663200",
|
|
267
|
-
"900": "#331900"
|
|
268
|
-
},
|
|
269
|
-
"emerald": {
|
|
270
|
-
"50": "rgba(0, 255, 0, 0.1)",
|
|
271
|
-
"100": "rgba(0, 255, 0, 0.15)",
|
|
272
|
-
"200": "rgba(0, 255, 0, 0.2)",
|
|
273
|
-
"300": "#80ff80",
|
|
274
|
-
"400": "#4dff4d",
|
|
275
|
-
"500": "#00ff00",
|
|
276
|
-
"600": "#00cc00",
|
|
277
|
-
"700": "#009900",
|
|
278
|
-
"800": "#006600",
|
|
279
|
-
"900": "#003300"
|
|
280
|
-
},
|
|
281
|
-
"neutral": {
|
|
282
|
-
"50": "#0f0f1a",
|
|
283
|
-
"100": "#171717",
|
|
284
|
-
"200": "#262626",
|
|
285
|
-
"300": "#404040",
|
|
286
|
-
"400": "#525252",
|
|
287
|
-
"500": "#737373",
|
|
288
|
-
"600": "#a3a3a3",
|
|
289
|
-
"700": "#d4d4d4",
|
|
290
|
-
"800": "#e5e5e5",
|
|
291
|
-
"900": "#f5f5f5",
|
|
292
|
-
"950": "#ffffff"
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
}
|
package/tokens/colors/light.json
DELETED
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/theme.json",
|
|
3
|
-
"$description": "Light theme color palette - Modern and professional design with WCAG AA compliance",
|
|
4
|
-
"colors": {
|
|
5
|
-
"primary": {
|
|
6
|
-
"base": "#0891b2",
|
|
7
|
-
"hover": "#0e7490",
|
|
8
|
-
"active": "#155e75",
|
|
9
|
-
"disabled": "#d4d4d4",
|
|
10
|
-
"focus": "#0891b2",
|
|
11
|
-
"background": "#ecfeff",
|
|
12
|
-
"backgroundHover": "#cffafe",
|
|
13
|
-
"backgroundActive": "#a5f3fc",
|
|
14
|
-
"border": "#0891b2",
|
|
15
|
-
"borderHover": "#0e7490",
|
|
16
|
-
"borderFocus": "#06b6d4",
|
|
17
|
-
"text": "#ffffff",
|
|
18
|
-
"textHover": "#ffffff",
|
|
19
|
-
"textDisabled": "#a3a3a3"
|
|
20
|
-
},
|
|
21
|
-
"secondary": {
|
|
22
|
-
"base": "#9333ea",
|
|
23
|
-
"hover": "#7e22ce",
|
|
24
|
-
"active": "#6b21a8",
|
|
25
|
-
"disabled": "#d4d4d4",
|
|
26
|
-
"focus": "#9333ea",
|
|
27
|
-
"background": "#faf5ff",
|
|
28
|
-
"backgroundHover": "#f3e8ff",
|
|
29
|
-
"backgroundActive": "#e9d5ff",
|
|
30
|
-
"border": "#9333ea",
|
|
31
|
-
"borderHover": "#7e22ce",
|
|
32
|
-
"borderFocus": "#a855f7",
|
|
33
|
-
"text": "#ffffff",
|
|
34
|
-
"textHover": "#ffffff",
|
|
35
|
-
"textDisabled": "#a3a3a3"
|
|
36
|
-
},
|
|
37
|
-
"accent": {
|
|
38
|
-
"base": "#db2777",
|
|
39
|
-
"hover": "#be185d",
|
|
40
|
-
"active": "#9f1239",
|
|
41
|
-
"disabled": "#d4d4d4",
|
|
42
|
-
"focus": "#db2777",
|
|
43
|
-
"background": "#fdf2f8",
|
|
44
|
-
"backgroundHover": "#fce7f3",
|
|
45
|
-
"backgroundActive": "#fbcfe8",
|
|
46
|
-
"border": "#db2777",
|
|
47
|
-
"borderHover": "#be185d",
|
|
48
|
-
"borderFocus": "#ec4899",
|
|
49
|
-
"text": "#ffffff",
|
|
50
|
-
"textHover": "#ffffff",
|
|
51
|
-
"textDisabled": "#a3a3a3"
|
|
52
|
-
},
|
|
53
|
-
"background": {
|
|
54
|
-
"primary": "#ffffff",
|
|
55
|
-
"secondary": "#fafafa",
|
|
56
|
-
"tertiary": "#f5f5f5",
|
|
57
|
-
"inverse": "#0a0a0f",
|
|
58
|
-
"overlay": "rgba(0, 0, 0, 0.5)",
|
|
59
|
-
"muted": "#f9fafb"
|
|
60
|
-
},
|
|
61
|
-
"surface": {
|
|
62
|
-
"primary": "#ffffff",
|
|
63
|
-
"secondary": "#fafafa",
|
|
64
|
-
"tertiary": "#f5f5f5",
|
|
65
|
-
"elevated": "#ffffff",
|
|
66
|
-
"overlay": "rgba(0, 0, 0, 0.5)",
|
|
67
|
-
"hover": "#f9fafb",
|
|
68
|
-
"active": "#f3f4f6"
|
|
69
|
-
},
|
|
70
|
-
"text": {
|
|
71
|
-
"primary": "#171717",
|
|
72
|
-
"secondary": "#404040",
|
|
73
|
-
"tertiary": "#737373",
|
|
74
|
-
"inverse": "#ffffff",
|
|
75
|
-
"disabled": "#a3a3a3",
|
|
76
|
-
"link": "#0891b2",
|
|
77
|
-
"linkHover": "#0e7490",
|
|
78
|
-
"linkActive": "#155e75",
|
|
79
|
-
"linkVisited": "#7e22ce",
|
|
80
|
-
"onPrimary": "#ffffff",
|
|
81
|
-
"onSecondary": "#ffffff",
|
|
82
|
-
"onAccent": "#ffffff",
|
|
83
|
-
"onBackground": "#171717",
|
|
84
|
-
"onSurface": "#171717"
|
|
85
|
-
},
|
|
86
|
-
"border": {
|
|
87
|
-
"primary": "#e5e5e5",
|
|
88
|
-
"secondary": "#d4d4d4",
|
|
89
|
-
"tertiary": "#a3a3a3",
|
|
90
|
-
"focus": "#0891b2",
|
|
91
|
-
"focusRing": "#06b6d4",
|
|
92
|
-
"inverse": "#404040",
|
|
93
|
-
"hover": "#d4d4d4",
|
|
94
|
-
"active": "#a3a3a3",
|
|
95
|
-
"disabled": "#e5e5e5"
|
|
96
|
-
},
|
|
97
|
-
"status": {
|
|
98
|
-
"success": {
|
|
99
|
-
"base": "#22c55e",
|
|
100
|
-
"hover": "#16a34a",
|
|
101
|
-
"active": "#15803d",
|
|
102
|
-
"background": "#f0fdf4",
|
|
103
|
-
"backgroundHover": "#dcfce7",
|
|
104
|
-
"border": "#86efac",
|
|
105
|
-
"text": "#ffffff",
|
|
106
|
-
"textOnBackground": "#166534"
|
|
107
|
-
},
|
|
108
|
-
"warning": {
|
|
109
|
-
"base": "#f59e0b",
|
|
110
|
-
"hover": "#d97706",
|
|
111
|
-
"active": "#b45309",
|
|
112
|
-
"background": "#fffbeb",
|
|
113
|
-
"backgroundHover": "#fef3c7",
|
|
114
|
-
"border": "#fcd34d",
|
|
115
|
-
"text": "#ffffff",
|
|
116
|
-
"textOnBackground": "#92400e"
|
|
117
|
-
},
|
|
118
|
-
"error": {
|
|
119
|
-
"base": "#ef4444",
|
|
120
|
-
"hover": "#dc2626",
|
|
121
|
-
"active": "#b91c1c",
|
|
122
|
-
"background": "#fef2f2",
|
|
123
|
-
"backgroundHover": "#fee2e2",
|
|
124
|
-
"border": "#fca5a5",
|
|
125
|
-
"text": "#ffffff",
|
|
126
|
-
"textOnBackground": "#991b1b"
|
|
127
|
-
},
|
|
128
|
-
"info": {
|
|
129
|
-
"base": "#3b82f6",
|
|
130
|
-
"hover": "#2563eb",
|
|
131
|
-
"active": "#1d4ed8",
|
|
132
|
-
"background": "#eff6ff",
|
|
133
|
-
"backgroundHover": "#dbeafe",
|
|
134
|
-
"border": "#93c5fd",
|
|
135
|
-
"text": "#ffffff",
|
|
136
|
-
"textOnBackground": "#1e40af"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"interactive": {
|
|
140
|
-
"default": "#0891b2",
|
|
141
|
-
"hover": "#0e7490",
|
|
142
|
-
"active": "#155e75",
|
|
143
|
-
"disabled": "#d4d4d4",
|
|
144
|
-
"disabledText": "#a3a3a3",
|
|
145
|
-
"focus": "#0891b2",
|
|
146
|
-
"focusRing": "#06b6d4"
|
|
147
|
-
},
|
|
148
|
-
"primitive": {
|
|
149
|
-
"cyan": {
|
|
150
|
-
"50": "#ecfeff",
|
|
151
|
-
"100": "#cffafe",
|
|
152
|
-
"200": "#a5f3fc",
|
|
153
|
-
"300": "#67e8f9",
|
|
154
|
-
"400": "#22d3ee",
|
|
155
|
-
"500": "#06b6d4",
|
|
156
|
-
"600": "#0891b2",
|
|
157
|
-
"700": "#0e7490",
|
|
158
|
-
"800": "#155e75",
|
|
159
|
-
"900": "#164e63"
|
|
160
|
-
},
|
|
161
|
-
"purple": {
|
|
162
|
-
"50": "#faf5ff",
|
|
163
|
-
"100": "#f3e8ff",
|
|
164
|
-
"200": "#e9d5ff",
|
|
165
|
-
"300": "#d8b4fe",
|
|
166
|
-
"400": "#c084fc",
|
|
167
|
-
"500": "#a855f7",
|
|
168
|
-
"600": "#9333ea",
|
|
169
|
-
"700": "#7e22ce",
|
|
170
|
-
"800": "#6b21a8",
|
|
171
|
-
"900": "#581c87"
|
|
172
|
-
},
|
|
173
|
-
"pink": {
|
|
174
|
-
"50": "#fdf2f8",
|
|
175
|
-
"100": "#fce7f3",
|
|
176
|
-
"200": "#fbcfe8",
|
|
177
|
-
"300": "#f9a8d4",
|
|
178
|
-
"400": "#f472b6",
|
|
179
|
-
"500": "#ec4899",
|
|
180
|
-
"600": "#db2777",
|
|
181
|
-
"700": "#be185d",
|
|
182
|
-
"800": "#9f1239",
|
|
183
|
-
"900": "#831843"
|
|
184
|
-
},
|
|
185
|
-
"blue": {
|
|
186
|
-
"50": "#eff6ff",
|
|
187
|
-
"100": "#dbeafe",
|
|
188
|
-
"200": "#bfdbfe",
|
|
189
|
-
"300": "#93c5fd",
|
|
190
|
-
"400": "#60a5fa",
|
|
191
|
-
"500": "#3b82f6",
|
|
192
|
-
"600": "#2563eb",
|
|
193
|
-
"700": "#1d4ed8",
|
|
194
|
-
"800": "#1e40af",
|
|
195
|
-
"900": "#1e3a8a"
|
|
196
|
-
},
|
|
197
|
-
"green": {
|
|
198
|
-
"50": "#f0fdf4",
|
|
199
|
-
"100": "#dcfce7",
|
|
200
|
-
"200": "#bbf7d0",
|
|
201
|
-
"300": "#86efac",
|
|
202
|
-
"400": "#4ade80",
|
|
203
|
-
"500": "#22c55e",
|
|
204
|
-
"600": "#16a34a",
|
|
205
|
-
"700": "#15803d",
|
|
206
|
-
"800": "#166534",
|
|
207
|
-
"900": "#14532d"
|
|
208
|
-
},
|
|
209
|
-
"orange": {
|
|
210
|
-
"50": "#fff7ed",
|
|
211
|
-
"100": "#ffedd5",
|
|
212
|
-
"200": "#fed7aa",
|
|
213
|
-
"300": "#fdba74",
|
|
214
|
-
"400": "#fb923c",
|
|
215
|
-
"500": "#f97316",
|
|
216
|
-
"600": "#ea580c",
|
|
217
|
-
"700": "#c2410c",
|
|
218
|
-
"800": "#9a3412",
|
|
219
|
-
"900": "#7c2d12"
|
|
220
|
-
},
|
|
221
|
-
"red": {
|
|
222
|
-
"50": "#fef2f2",
|
|
223
|
-
"100": "#fee2e2",
|
|
224
|
-
"200": "#fecaca",
|
|
225
|
-
"300": "#fca5a5",
|
|
226
|
-
"400": "#f87171",
|
|
227
|
-
"500": "#ef4444",
|
|
228
|
-
"600": "#dc2626",
|
|
229
|
-
"700": "#b91c1c",
|
|
230
|
-
"800": "#991b1b",
|
|
231
|
-
"900": "#7f1d1d"
|
|
232
|
-
},
|
|
233
|
-
"amber": {
|
|
234
|
-
"50": "#fffbeb",
|
|
235
|
-
"100": "#fef3c7",
|
|
236
|
-
"200": "#fde68a",
|
|
237
|
-
"300": "#fcd34d",
|
|
238
|
-
"400": "#fbbf24",
|
|
239
|
-
"500": "#f59e0b",
|
|
240
|
-
"600": "#d97706",
|
|
241
|
-
"700": "#b45309",
|
|
242
|
-
"800": "#92400e",
|
|
243
|
-
"900": "#78350f"
|
|
244
|
-
},
|
|
245
|
-
"emerald": {
|
|
246
|
-
"50": "#ecfdf5",
|
|
247
|
-
"100": "#d1fae5",
|
|
248
|
-
"200": "#a7f3d0",
|
|
249
|
-
"300": "#6ee7b7",
|
|
250
|
-
"400": "#34d399",
|
|
251
|
-
"500": "#10b981",
|
|
252
|
-
"600": "#059669",
|
|
253
|
-
"700": "#047857",
|
|
254
|
-
"800": "#065f46",
|
|
255
|
-
"900": "#064e3b"
|
|
256
|
-
},
|
|
257
|
-
"neutral": {
|
|
258
|
-
"50": "#fafafa",
|
|
259
|
-
"100": "#f5f5f5",
|
|
260
|
-
"200": "#e5e5e5",
|
|
261
|
-
"300": "#d4d4d4",
|
|
262
|
-
"400": "#a3a3a3",
|
|
263
|
-
"500": "#737373",
|
|
264
|
-
"600": "#525252",
|
|
265
|
-
"700": "#404040",
|
|
266
|
-
"800": "#262626",
|
|
267
|
-
"900": "#171717",
|
|
268
|
-
"950": "#0a0a0f"
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
}
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$description": "Tokens para componente de background celestial - configurações de estrelas, nebulosas e efeitos espaciais",
|
|
4
|
-
"celestialBackground": {
|
|
5
|
-
"stars": {
|
|
6
|
-
"default": {
|
|
7
|
-
"count": 150,
|
|
8
|
-
"sizes": [1, 1.5, 2],
|
|
9
|
-
"opacity": [0.35, 0.55, 0.75],
|
|
10
|
-
"glow": {
|
|
11
|
-
"color": "rgba(255, 255, 255, 0.8)",
|
|
12
|
-
"radius": 2
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"dense": {
|
|
16
|
-
"count": 250,
|
|
17
|
-
"sizes": [1, 1.5, 2, 2.5],
|
|
18
|
-
"opacity": [0.25, 0.45, 0.65, 0.85],
|
|
19
|
-
"glow": {
|
|
20
|
-
"color": "rgba(255, 255, 255, 0.8)",
|
|
21
|
-
"radius": 2
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"sparse": {
|
|
25
|
-
"count": 80,
|
|
26
|
-
"sizes": [1, 1.5],
|
|
27
|
-
"opacity": [0.45, 0.65],
|
|
28
|
-
"glow": {
|
|
29
|
-
"color": "rgba(255, 255, 255, 0.8)",
|
|
30
|
-
"radius": 2
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"nebula": {
|
|
35
|
-
"cyan": {
|
|
36
|
-
"position": {
|
|
37
|
-
"top": "0%",
|
|
38
|
-
"left": "0%"
|
|
39
|
-
},
|
|
40
|
-
"size": {
|
|
41
|
-
"width": "40%",
|
|
42
|
-
"height": "40%"
|
|
43
|
-
},
|
|
44
|
-
"gradient": {
|
|
45
|
-
"type": "radial",
|
|
46
|
-
"center": "0% 0%",
|
|
47
|
-
"colorStops": [
|
|
48
|
-
{ "color": "cyan.400", "alpha": 0.06, "position": "0%" },
|
|
49
|
-
{ "color": "cyan.400", "alpha": 0.04, "position": "30%" },
|
|
50
|
-
{ "color": "transparent", "alpha": 0, "position": "70%" }
|
|
51
|
-
]
|
|
52
|
-
},
|
|
53
|
-
"blur": "3xl"
|
|
54
|
-
},
|
|
55
|
-
"purple": {
|
|
56
|
-
"position": {
|
|
57
|
-
"top": "50%",
|
|
58
|
-
"right": "0%"
|
|
59
|
-
},
|
|
60
|
-
"size": {
|
|
61
|
-
"width": "35%",
|
|
62
|
-
"height": "35%"
|
|
63
|
-
},
|
|
64
|
-
"gradient": {
|
|
65
|
-
"type": "radial",
|
|
66
|
-
"center": "100% 50%",
|
|
67
|
-
"colorStops": [
|
|
68
|
-
{ "color": "purple.400", "alpha": 0.06, "position": "0%" },
|
|
69
|
-
{ "color": "purple.400", "alpha": 0.04, "position": "30%" },
|
|
70
|
-
{ "color": "transparent", "alpha": 0, "position": "70%" }
|
|
71
|
-
]
|
|
72
|
-
},
|
|
73
|
-
"blur": "3xl"
|
|
74
|
-
},
|
|
75
|
-
"pink": {
|
|
76
|
-
"position": {
|
|
77
|
-
"bottom": "0%",
|
|
78
|
-
"left": "25%"
|
|
79
|
-
},
|
|
80
|
-
"size": {
|
|
81
|
-
"width": "30%",
|
|
82
|
-
"height": "30%"
|
|
83
|
-
},
|
|
84
|
-
"gradient": {
|
|
85
|
-
"type": "radial",
|
|
86
|
-
"center": "25% 100%",
|
|
87
|
-
"colorStops": [
|
|
88
|
-
{ "color": "pink.500", "alpha": 0.06, "position": "0%" },
|
|
89
|
-
{ "color": "pink.500", "alpha": 0.04, "position": "30%" },
|
|
90
|
-
{ "color": "transparent", "alpha": 0, "position": "70%" }
|
|
91
|
-
]
|
|
92
|
-
},
|
|
93
|
-
"blur": "3xl"
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"baseGradient": {
|
|
97
|
-
"direction": "to-bottom",
|
|
98
|
-
"from": "black",
|
|
99
|
-
"via": {
|
|
100
|
-
"color": "purple-950",
|
|
101
|
-
"alpha": 0.35
|
|
102
|
-
},
|
|
103
|
-
"to": "black"
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|