banhatten-ui 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.
- package/README.md +62 -0
- package/dist/index.d.mts +806 -0
- package/dist/index.d.ts +806 -0
- package/dist/index.js +4639 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4524 -0
- package/dist/index.mjs.map +1 -0
- package/dist/lib/utils.d.mts +5 -0
- package/dist/lib/utils.d.ts +5 -0
- package/dist/lib/utils.js +35 -0
- package/dist/lib/utils.js.map +1 -0
- package/dist/lib/utils.mjs +10 -0
- package/dist/lib/utils.mjs.map +1 -0
- package/dist/tokens/tailwind.config.d.mts +5 -0
- package/dist/tokens/tailwind.config.d.ts +5 -0
- package/dist/tokens/tailwind.config.js +423 -0
- package/dist/tokens/tailwind.config.js.map +1 -0
- package/dist/tokens/tailwind.config.mjs +400 -0
- package/dist/tokens/tailwind.config.mjs.map +1 -0
- package/dist/tokens/tokens.json +340 -0
- package/package.json +71 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/lib/utils.ts
|
|
21
|
+
var utils_exports = {};
|
|
22
|
+
__export(utils_exports, {
|
|
23
|
+
cn: () => cn
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(utils_exports);
|
|
26
|
+
var import_clsx = require("clsx");
|
|
27
|
+
var import_tailwind_merge = require("tailwind-merge");
|
|
28
|
+
function cn(...inputs) {
|
|
29
|
+
return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
|
|
30
|
+
}
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
cn
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/lib/utils.ts"],"sourcesContent":["import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAAsC;AACtC,4BAAwB;AAEjB,SAAS,MAAM,QAAsB;AAC1C,aAAO,mCAAQ,kBAAK,MAAM,CAAC;AAC7B;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/lib/utils.ts"],"sourcesContent":["import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"],"mappings":";AAAA,SAA0B,YAAY;AACtC,SAAS,eAAe;AAEjB,SAAS,MAAM,QAAsB;AAC1C,SAAO,QAAQ,KAAK,MAAM,CAAC;AAC7B;","names":[]}
|
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/tokens/tailwind.config.ts
|
|
21
|
+
var tailwind_config_exports = {};
|
|
22
|
+
__export(tailwind_config_exports, {
|
|
23
|
+
default: () => tailwind_config_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(tailwind_config_exports);
|
|
26
|
+
|
|
27
|
+
// src/tokens/tokens.json
|
|
28
|
+
var tokens_default = {
|
|
29
|
+
brand: {
|
|
30
|
+
"neutral-950": "#000000",
|
|
31
|
+
"neutral-900": "#131826",
|
|
32
|
+
"neutral-800": "#1f242e",
|
|
33
|
+
"neutral-700": "#3a424d",
|
|
34
|
+
"neutral-600": "#4e5663",
|
|
35
|
+
"neutral-500": "#686e7d",
|
|
36
|
+
"neutral-400": "#9fa5b2",
|
|
37
|
+
"neutral-300": "#d1d5de",
|
|
38
|
+
"neutral-200": "#e9ebf0",
|
|
39
|
+
"neutral-100": "#f1f3f7",
|
|
40
|
+
"neutral-50": "#f9fafc",
|
|
41
|
+
"neutral-25": "#ffffff",
|
|
42
|
+
"primary-950": "#172554",
|
|
43
|
+
"primary-900": "#1e3a8a",
|
|
44
|
+
"primary-800": "#1e40af",
|
|
45
|
+
"primary-700": "#1d4ed8",
|
|
46
|
+
"primary-600": "#2563eb",
|
|
47
|
+
"primary-500": "#3b82f6",
|
|
48
|
+
"primary-400": "#73affa",
|
|
49
|
+
"primary-300": "#93c5fd",
|
|
50
|
+
"primary-200": "#bfdbfe",
|
|
51
|
+
"primary-100": "#dbeafe",
|
|
52
|
+
"primary-50": "#eff6ff",
|
|
53
|
+
"success-950": "#022c22",
|
|
54
|
+
"success-900": "#064e3b",
|
|
55
|
+
"success-800": "#065f46",
|
|
56
|
+
"success-700": "#047857",
|
|
57
|
+
"success-600": "#059669",
|
|
58
|
+
"success-500": "#10b981",
|
|
59
|
+
"success-400": "#34d399",
|
|
60
|
+
"success-300": "#6ee7b7",
|
|
61
|
+
"success-200": "#a7f3d0",
|
|
62
|
+
"success-100": "#d1fae5",
|
|
63
|
+
"success-50": "#ecfdf5",
|
|
64
|
+
"warning-950": "#413406",
|
|
65
|
+
"warning-900": "#735912",
|
|
66
|
+
"warning-800": "#86660e",
|
|
67
|
+
"warning-700": "#a27607",
|
|
68
|
+
"warning-600": "#c89704",
|
|
69
|
+
"warning-500": "#eab308",
|
|
70
|
+
"warning-400": "#facc15",
|
|
71
|
+
"warning-300": "#fde047",
|
|
72
|
+
"warning-200": "#fef08a",
|
|
73
|
+
"warning-100": "#fef3c7",
|
|
74
|
+
"warning-50": "#fefce8",
|
|
75
|
+
"danger-950": "#450a0a",
|
|
76
|
+
"danger-900": "#7f1d1d",
|
|
77
|
+
"danger-800": "#991b1b",
|
|
78
|
+
"danger-700": "#b91c1c",
|
|
79
|
+
"danger-600": "#dc2626",
|
|
80
|
+
"danger-500": "#ef4444",
|
|
81
|
+
"danger-400": "#f87171",
|
|
82
|
+
"danger-300": "#fca5a5",
|
|
83
|
+
"danger-200": "#fecaca",
|
|
84
|
+
"danger-100": "#fee2e2",
|
|
85
|
+
"danger-50": "#fef2f2",
|
|
86
|
+
"info-950": "#172554",
|
|
87
|
+
"info-900": "#1e3a8a",
|
|
88
|
+
"info-800": "#1e40af",
|
|
89
|
+
"info-700": "#1d4ed8",
|
|
90
|
+
"info-600": "#2563eb",
|
|
91
|
+
"info-500": "#3b82f6",
|
|
92
|
+
"info-400": "#60a5fa",
|
|
93
|
+
"info-300": "#93c5fd",
|
|
94
|
+
"info-200": "#bfdbfe",
|
|
95
|
+
"info-100": "#dbeafe",
|
|
96
|
+
"info-50": "#eff6ff",
|
|
97
|
+
"sky-950": "#082f49",
|
|
98
|
+
"sky-900": "#0c4a6e",
|
|
99
|
+
"sky-800": "#075985",
|
|
100
|
+
"sky-700": "#0369a1",
|
|
101
|
+
"sky-600": "#0284c7",
|
|
102
|
+
"sky-500": "#0ea5e9",
|
|
103
|
+
"sky-400": "#38bdf8",
|
|
104
|
+
"sky-300": "#7dd3fc",
|
|
105
|
+
"sky-200": "#bae6fd",
|
|
106
|
+
"sky-100": "#e0f2fe",
|
|
107
|
+
"sky-50": "#f0f9ff",
|
|
108
|
+
"teal-950": "#042f2e",
|
|
109
|
+
"teal-900": "#134e4a",
|
|
110
|
+
"teal-800": "#115e59",
|
|
111
|
+
"teal-700": "#0f766e",
|
|
112
|
+
"teal-600": "#0d9488",
|
|
113
|
+
"teal-500": "#14b8a6",
|
|
114
|
+
"teal-400": "#2dd4bf",
|
|
115
|
+
"teal-300": "#5eead4",
|
|
116
|
+
"teal-200": "#99f6e4",
|
|
117
|
+
"teal-100": "#ccfbf1",
|
|
118
|
+
"teal-50": "#f0fdfa",
|
|
119
|
+
"lime-950": "#1a2e05",
|
|
120
|
+
"lime-900": "#365314",
|
|
121
|
+
"lime-800": "#3f6212",
|
|
122
|
+
"lime-700": "#4d7c0f",
|
|
123
|
+
"lime-600": "#65a30d",
|
|
124
|
+
"lime-500": "#84cc16",
|
|
125
|
+
"lime-400": "#a3e635",
|
|
126
|
+
"lime-300": "#bef264",
|
|
127
|
+
"lime-200": "#d9f99d",
|
|
128
|
+
"lime-100": "#ecfccb",
|
|
129
|
+
"lime-50": "#f7fee7",
|
|
130
|
+
"indigo-950": "#1e1b4b",
|
|
131
|
+
"indigo-900": "#312e81",
|
|
132
|
+
"indigo-800": "#3730a3",
|
|
133
|
+
"indigo-700": "#4338ca",
|
|
134
|
+
"indigo-600": "#4f46e5",
|
|
135
|
+
"indigo-500": "#6366f1",
|
|
136
|
+
"indigo-400": "#818cf8",
|
|
137
|
+
"indigo-300": "#a5b4fc",
|
|
138
|
+
"indigo-200": "#c7d2fe",
|
|
139
|
+
"indigo-100": "#e0e7ff",
|
|
140
|
+
"indigo-50": "#eef2ff",
|
|
141
|
+
"purple-950": "#3b0764",
|
|
142
|
+
"purple-900": "#581c87",
|
|
143
|
+
"purple-800": "#6b21a8",
|
|
144
|
+
"purple-700": "#7e22ce",
|
|
145
|
+
"purple-600": "#9333ea",
|
|
146
|
+
"purple-500": "#a855f7",
|
|
147
|
+
"purple-400": "#c084fc",
|
|
148
|
+
"purple-300": "#d8b4fe",
|
|
149
|
+
"purple-200": "#e9d5ff",
|
|
150
|
+
"purple-100": "#f3e8ff",
|
|
151
|
+
"purple-50": "#faf5ff",
|
|
152
|
+
"fuchsia-950": "#4a044e",
|
|
153
|
+
"fuchsia-900": "#701a75",
|
|
154
|
+
"fuchsia-800": "#86198f",
|
|
155
|
+
"fuchsia-700": "#a21caf",
|
|
156
|
+
"fuchsia-600": "#c026d3",
|
|
157
|
+
"fuchsia-500": "#d946ef",
|
|
158
|
+
"fuchsia-400": "#e879f9",
|
|
159
|
+
"fuchsia-300": "#f0abfc",
|
|
160
|
+
"fuchsia-200": "#f5d0fe",
|
|
161
|
+
"fuchsia-100": "#fae8ff",
|
|
162
|
+
"fuchsia-50": "#fdf4ff",
|
|
163
|
+
"pink-950": "#500724",
|
|
164
|
+
"pink-900": "#831843",
|
|
165
|
+
"pink-800": "#9d174d",
|
|
166
|
+
"pink-700": "#be185d",
|
|
167
|
+
"pink-600": "#db2777",
|
|
168
|
+
"pink-500": "#ec4899",
|
|
169
|
+
"pink-400": "#f472b6",
|
|
170
|
+
"pink-300": "#f9a8d4",
|
|
171
|
+
"pink-200": "#fbcfe8",
|
|
172
|
+
"pink-100": "#fce7f3",
|
|
173
|
+
"pink-50": "#fdf2f8",
|
|
174
|
+
"rose-950": "#4c0519",
|
|
175
|
+
"rose-900": "#881337",
|
|
176
|
+
"rose-800": "#9f1239",
|
|
177
|
+
"rose-700": "#be123c",
|
|
178
|
+
"rose-600": "#e11d48",
|
|
179
|
+
"rose-500": "#f43f5e",
|
|
180
|
+
"rose-400": "#fb7185",
|
|
181
|
+
"rose-300": "#fda4af",
|
|
182
|
+
"rose-200": "#fecdd3",
|
|
183
|
+
"rose-100": "#ffe4e6",
|
|
184
|
+
"rose-50": "#fff1f2",
|
|
185
|
+
"yellow-950": "#413406",
|
|
186
|
+
"yellow-900": "#735912",
|
|
187
|
+
"yellow-800": "#86660e",
|
|
188
|
+
"yellow-700": "#a27607",
|
|
189
|
+
"yellow-600": "#c89704",
|
|
190
|
+
"yellow-500": "#eab308",
|
|
191
|
+
"yellow-400": "#facc15",
|
|
192
|
+
"yellow-300": "#fde047",
|
|
193
|
+
"yellow-200": "#fef08a",
|
|
194
|
+
"yellow-100": "#fef3c7",
|
|
195
|
+
"yellow-50": "#fefce8"
|
|
196
|
+
},
|
|
197
|
+
alias: {
|
|
198
|
+
"bg-primary": "{brand.neutral-25}",
|
|
199
|
+
"bg-primary-alt": "{brand.neutral-25}",
|
|
200
|
+
"bg-primary-inverse": "{brand.neutral-900}",
|
|
201
|
+
"bg-secondary": "{brand.neutral-50}",
|
|
202
|
+
"bg-secondary-alt": "{brand.neutral-50}",
|
|
203
|
+
"bg-secondary-subtle": "{brand.neutral-50}",
|
|
204
|
+
"bg-secondary-inverse": "{brand.neutral-800}",
|
|
205
|
+
"bg-tertiary": "{brand.neutral-100}",
|
|
206
|
+
"bg-quarterary": "{brand.neutral-200}",
|
|
207
|
+
"bg-inactive": "{brand.neutral-100}",
|
|
208
|
+
"bg-inactive-subtle": "{brand.neutral-50}",
|
|
209
|
+
"bg-always-light": "{brand.neutral-25}",
|
|
210
|
+
"bg-always-dark": "#191b21",
|
|
211
|
+
"bg-on-overlay": "{brand.neutral-25}",
|
|
212
|
+
"bg-overlay": "#8c8d90",
|
|
213
|
+
highlight: "{brand.neutral-25}",
|
|
214
|
+
"highlight-hover": "rgba(0, 0, 0, 0.04)",
|
|
215
|
+
"highlight-pressed": "#ededed",
|
|
216
|
+
"highlight-inactive": "#f5f5f5",
|
|
217
|
+
"highlight-active": "#e8e8e8",
|
|
218
|
+
"bg-brand": "{brand.primary-600}",
|
|
219
|
+
"bg-brand-hover": "{brand.primary-700}",
|
|
220
|
+
"bg-brand-secondary": "{brand.primary-100}",
|
|
221
|
+
"bg-brand-tertiary": "{brand.primary-50}",
|
|
222
|
+
"bg-brand-tertiary-hover": "{brand.primary-100}",
|
|
223
|
+
"bg-brand-strong": "{brand.primary-800}",
|
|
224
|
+
"bg-success": "{brand.success-600}",
|
|
225
|
+
"bg-success-secondary": "{brand.success-100}",
|
|
226
|
+
"bg-success-tertiary": "{brand.success-50}",
|
|
227
|
+
"bg-danger": "{brand.danger-600}",
|
|
228
|
+
"bg-danger-hover": "{brand.danger-700}",
|
|
229
|
+
"bg-danger-secondary": "{brand.danger-100}",
|
|
230
|
+
"bg-danger-tertiary": "{brand.danger-50}",
|
|
231
|
+
"bg-danger-strong": "{brand.danger-800}",
|
|
232
|
+
"bg-warning": "{brand.warning-600}",
|
|
233
|
+
"bg-warning-secondary": "{brand.warning-100}",
|
|
234
|
+
"bg-warning-tertiary": "{brand.warning-50}",
|
|
235
|
+
"bg-info": "{brand.sky-600}",
|
|
236
|
+
"bg-info-secondary": "{brand.sky-100}",
|
|
237
|
+
"bg-info-tertiary": "{brand.sky-50}",
|
|
238
|
+
"border-default": "{brand.neutral-200}",
|
|
239
|
+
"border-secondary": "{brand.neutral-100}",
|
|
240
|
+
"border-strong": "{brand.neutral-300}",
|
|
241
|
+
"border-subtract": "{brand.neutral-25}",
|
|
242
|
+
"border-inactive": "{brand.neutral-300}",
|
|
243
|
+
"border-inactive-subtle": "{brand.neutral-200}",
|
|
244
|
+
"border-focused": "#d3e0fb",
|
|
245
|
+
"border-focused-danger": "#fac7c7",
|
|
246
|
+
"border-brand": "{brand.primary-600}",
|
|
247
|
+
"border-brand-secondary": "{brand.primary-300}",
|
|
248
|
+
"border-brand-tertiary": "{brand.primary-50}",
|
|
249
|
+
"border-success": "{brand.success-600}",
|
|
250
|
+
"border-success-secondary": "{brand.success-300}",
|
|
251
|
+
"border-success-tertiary": "{brand.success-50}",
|
|
252
|
+
"border-danger": "{brand.danger-600}",
|
|
253
|
+
"border-danger-secondary": "{brand.danger-300}",
|
|
254
|
+
"border-danger-tertiary": "{brand.danger-50}",
|
|
255
|
+
"border-warning": "{brand.warning-600}",
|
|
256
|
+
"border-warning-secondary": "{brand.warning-300}",
|
|
257
|
+
"border-warning-tertiary": "{brand.warning-50}",
|
|
258
|
+
"border-info": "{brand.sky-600}",
|
|
259
|
+
"border-info-subtle": "{brand.sky-300}",
|
|
260
|
+
"icon-primary": "{brand.neutral-800}",
|
|
261
|
+
"icon-primary-inverse": "{brand.neutral-25}",
|
|
262
|
+
"icon-secondary": "{brand.neutral-600}",
|
|
263
|
+
"icon-secondary-hover": "{brand.neutral-700}",
|
|
264
|
+
"icon-secondary-inverse": "{brand.neutral-400}",
|
|
265
|
+
"icon-tertiary": "{brand.neutral-500}",
|
|
266
|
+
"icon-tertiary-hover": "{brand.neutral-600}",
|
|
267
|
+
"icon-inactive": "{brand.neutral-400}",
|
|
268
|
+
"icon-inactive-subtle": "{brand.neutral-300}",
|
|
269
|
+
"icon-on-color": "{brand.neutral-25}",
|
|
270
|
+
"icon-on-color-inverse": "{brand.neutral-700}",
|
|
271
|
+
"icon-brand": "{brand.primary-600}",
|
|
272
|
+
"icon-brand-secondary": "{brand.primary-500}",
|
|
273
|
+
"icon-success": "{brand.success-600}",
|
|
274
|
+
"icon-success-secondary": "{brand.success-500}",
|
|
275
|
+
"icon-success-strong": "{brand.success-800}",
|
|
276
|
+
"icon-danger": "{brand.danger-600}",
|
|
277
|
+
"icon-danger-secondary": "{brand.danger-500}",
|
|
278
|
+
"icon-danger-strong": "{brand.danger-800}",
|
|
279
|
+
"icon-warning": "{brand.warning-600}",
|
|
280
|
+
"icon-warning-secondary": "{brand.warning-500}",
|
|
281
|
+
"icon-warning-strong": "{brand.warning-800}",
|
|
282
|
+
"icon-info": "{brand.sky-600}",
|
|
283
|
+
"icon-info-secondary": "{brand.sky-500}",
|
|
284
|
+
"icon-info-strong": "{brand.sky-800}",
|
|
285
|
+
"text-primary": "{brand.neutral-800}",
|
|
286
|
+
"text-primary-inverse": "{brand.neutral-25}",
|
|
287
|
+
"text-secondary": "{brand.neutral-600}",
|
|
288
|
+
"text-secondary-hover": "{brand.neutral-700}",
|
|
289
|
+
"text-secondary-inverse": "{brand.neutral-400}",
|
|
290
|
+
"text-tertiary": "{brand.neutral-500}",
|
|
291
|
+
"text-tertiary-hover": "{brand.neutral-600}",
|
|
292
|
+
"text-inactive": "{brand.neutral-500}",
|
|
293
|
+
"text-inactive-subtle": "{brand.neutral-400}",
|
|
294
|
+
"text-placeholder": "{brand.neutral-500}",
|
|
295
|
+
"text-on-color": "{brand.neutral-25}",
|
|
296
|
+
"text-on-color-inverse": "{brand.neutral-700}",
|
|
297
|
+
"text-brand": "{brand.primary-600}",
|
|
298
|
+
"text-brand-strong": "{brand.primary-800}",
|
|
299
|
+
"text-success": "{brand.success-600}",
|
|
300
|
+
"text-success-strong": "{brand.success-800}",
|
|
301
|
+
"text-danger": "{brand.danger-600}",
|
|
302
|
+
"text-danger-strong": "{brand.danger-800}",
|
|
303
|
+
"text-error": "{brand.danger-600}",
|
|
304
|
+
"text-warning": "{brand.warning-600}",
|
|
305
|
+
"text-warning-strong": "{brand.warning-800}",
|
|
306
|
+
"text-info": "{brand.sky-800}",
|
|
307
|
+
"text-info-strong": "{brand.sky-800}",
|
|
308
|
+
"component-input-bg": "{brand.neutral-25}",
|
|
309
|
+
"component-input-bg-hover": "{brand.neutral-50}",
|
|
310
|
+
"component-button-brand-bg": "{brand.primary-600}",
|
|
311
|
+
"component-button-brand-bg-hover": "{brand.primary-700}",
|
|
312
|
+
"component-button-secondary-bg": "{brand.neutral-25}",
|
|
313
|
+
"component-button-secondary-bg-hover": "{brand.neutral-100}",
|
|
314
|
+
"component-button-secondary-fg": "{brand.neutral-800}",
|
|
315
|
+
"component-button-secondary-fg-hover": "{brand.neutral-800}",
|
|
316
|
+
"component-button-danger-bg": "{brand.danger-600}",
|
|
317
|
+
"component-button-danger-bg-hover": "{brand.danger-700}",
|
|
318
|
+
"component-button-tertiary-bg-hover": "{brand.neutral-100}",
|
|
319
|
+
"component-button-tertiary-color-fg": "{brand.neutral-800}",
|
|
320
|
+
"component-button-tertiary-color-fg-hover": "{brand.neutral-800}",
|
|
321
|
+
"component-button-link-color-fg": "{brand.primary-700}",
|
|
322
|
+
"component-button-link-color-fg-hover": "{brand.primary-800}",
|
|
323
|
+
"component-toggle-brand-bg": "{brand.primary-600}",
|
|
324
|
+
"component-toggle-brand-bg-hover": "{brand.primary-700}"
|
|
325
|
+
},
|
|
326
|
+
shadow: {
|
|
327
|
+
xs: "0px 1px 2px 0px rgba(15, 17, 20, 0.06)",
|
|
328
|
+
sm: "0px 1px 3px 0px rgba(15, 17, 20, 0.10)",
|
|
329
|
+
md: "0px 1.75px 4px -1px rgba(15, 17, 20, 0.10)",
|
|
330
|
+
lg: "0px 10px 16px -3px rgba(15, 17, 20, 0.06), 0px 4px 6px -2px rgba(15, 17, 20, 0.04)",
|
|
331
|
+
xl: "0px 20px 25px -5px rgba(15, 17, 20, 0.08), 0px 10px 10px -5px rgba(15, 17, 20, 0.06)",
|
|
332
|
+
"2xl": "0px 25px 50px -12px rgba(15, 17, 20, 0.20)",
|
|
333
|
+
flat: "0px 1px 0px 0px rgba(228, 228, 231, 1.0)",
|
|
334
|
+
inner: "inset 0px 2px 4px 0px rgba(15, 17, 20, 0.08)"
|
|
335
|
+
},
|
|
336
|
+
radius: {
|
|
337
|
+
none: "0px",
|
|
338
|
+
xxs: "2px",
|
|
339
|
+
xs: "4px",
|
|
340
|
+
sm: "8px",
|
|
341
|
+
md: "12px",
|
|
342
|
+
lg: "16px",
|
|
343
|
+
xl: "20px",
|
|
344
|
+
"2xl": "28px",
|
|
345
|
+
full: "9999px"
|
|
346
|
+
},
|
|
347
|
+
spacing: {
|
|
348
|
+
none: "0px",
|
|
349
|
+
xxs: "0.125rem",
|
|
350
|
+
xs: "0.25rem",
|
|
351
|
+
sm: "0.5rem",
|
|
352
|
+
md: "0.75rem",
|
|
353
|
+
lg: "1rem",
|
|
354
|
+
xl: "1.25rem",
|
|
355
|
+
"2xl": "1.5rem",
|
|
356
|
+
"3xl": "1.75rem",
|
|
357
|
+
"4xl": "2rem",
|
|
358
|
+
"5xl": "2.5rem",
|
|
359
|
+
"6xl": "3rem",
|
|
360
|
+
"7xl": "4rem",
|
|
361
|
+
"8xl": "5rem",
|
|
362
|
+
"9xl": "6rem",
|
|
363
|
+
"10xl": "8rem",
|
|
364
|
+
"11xl": "10rem",
|
|
365
|
+
"12xl": "12rem"
|
|
366
|
+
}
|
|
367
|
+
};
|
|
368
|
+
|
|
369
|
+
// src/tokens/tailwind.config.ts
|
|
370
|
+
function resolveAliases(aliases, brand) {
|
|
371
|
+
const resolved = {};
|
|
372
|
+
for (const [key, value] of Object.entries(aliases)) {
|
|
373
|
+
const match = value.match(/^\{brand\.(.+)\}$/);
|
|
374
|
+
if (match) {
|
|
375
|
+
const brandKey = match[1];
|
|
376
|
+
resolved[key] = brand[brandKey] ?? value;
|
|
377
|
+
} else {
|
|
378
|
+
resolved[key] = value;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
return resolved;
|
|
382
|
+
}
|
|
383
|
+
function categorizeAliases(resolved) {
|
|
384
|
+
const backgroundColor = {};
|
|
385
|
+
const textColor = {};
|
|
386
|
+
const borderColor = {};
|
|
387
|
+
const colors = {};
|
|
388
|
+
for (const [key, value] of Object.entries(resolved)) {
|
|
389
|
+
if (key.startsWith("bg-")) {
|
|
390
|
+
backgroundColor[key.slice(3)] = value;
|
|
391
|
+
} else if (key.startsWith("text-")) {
|
|
392
|
+
textColor[key.slice(5)] = value;
|
|
393
|
+
} else if (key.startsWith("border-")) {
|
|
394
|
+
borderColor[key.slice(7)] = value;
|
|
395
|
+
} else if (key.startsWith("icon-")) {
|
|
396
|
+
textColor[key] = value;
|
|
397
|
+
} else {
|
|
398
|
+
colors[key] = value;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
return { backgroundColor, textColor, borderColor, colors };
|
|
402
|
+
}
|
|
403
|
+
var resolvedAlias = resolveAliases(tokens_default.alias, tokens_default.brand);
|
|
404
|
+
var categorized = categorizeAliases(resolvedAlias);
|
|
405
|
+
var config = {
|
|
406
|
+
content: [],
|
|
407
|
+
theme: {
|
|
408
|
+
extend: {
|
|
409
|
+
colors: {
|
|
410
|
+
brand: tokens_default.brand,
|
|
411
|
+
...categorized.colors
|
|
412
|
+
},
|
|
413
|
+
backgroundColor: categorized.backgroundColor,
|
|
414
|
+
textColor: categorized.textColor,
|
|
415
|
+
borderColor: categorized.borderColor,
|
|
416
|
+
boxShadow: tokens_default.shadow,
|
|
417
|
+
borderRadius: tokens_default.radius,
|
|
418
|
+
spacing: tokens_default.spacing
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
};
|
|
422
|
+
var tailwind_config_default = config;
|
|
423
|
+
//# sourceMappingURL=tailwind.config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/tokens/tailwind.config.ts","../../src/tokens/tokens.json"],"sourcesContent":["import type { Config } from \"tailwindcss\";\nimport tokens from \"./tokens.json\";\n\ntype TokenValue = string;\ntype TokenObject = Record<string, TokenValue>;\n\n/**\n * Resolves alias references in the format \"{brand.color-name}\" to their hex values.\n * Falls back to the original value if no reference pattern is found or lookup fails.\n */\nfunction resolveAliases(\n aliases: TokenObject,\n brand: TokenObject\n): TokenObject {\n const resolved: TokenObject = {};\n\n for (const [key, value] of Object.entries(aliases)) {\n const match = value.match(/^\\{brand\\.(.+)\\}$/);\n\n if (match) {\n const brandKey = match[1];\n resolved[key] = brand[brandKey] ?? value;\n } else {\n // Direct hex value or unresolved reference\n resolved[key] = value;\n }\n }\n\n return resolved;\n}\n\n/**\n * Categorizes resolved aliases by their semantic prefix.\n * Strips the prefix so \"bg-brand\" becomes usable as `class=\"bg-brand\"`.\n */\nfunction categorizeAliases(resolved: TokenObject) {\n const backgroundColor: TokenObject = {};\n const textColor: TokenObject = {};\n const borderColor: TokenObject = {};\n const colors: TokenObject = {};\n\n for (const [key, value] of Object.entries(resolved)) {\n if (key.startsWith(\"bg-\")) {\n backgroundColor[key.slice(3)] = value;\n } else if (key.startsWith(\"text-\")) {\n textColor[key.slice(5)] = value;\n } else if (key.startsWith(\"border-\")) {\n borderColor[key.slice(7)] = value;\n } else if (key.startsWith(\"icon-\")) {\n // Icons use text color utilities\n textColor[key] = value;\n } else {\n colors[key] = value;\n }\n }\n\n return { backgroundColor, textColor, borderColor, colors };\n}\n\nconst resolvedAlias = resolveAliases(tokens.alias, tokens.brand);\nconst categorized = categorizeAliases(resolvedAlias);\n\nconst config: Config = {\n content: [],\n theme: {\n extend: {\n colors: {\n brand: tokens.brand,\n ...categorized.colors,\n },\n backgroundColor: categorized.backgroundColor,\n textColor: categorized.textColor,\n borderColor: categorized.borderColor,\n boxShadow: tokens.shadow,\n borderRadius: tokens.radius,\n spacing: tokens.spacing,\n },\n },\n};\n\nexport default config;\n","{\n \"brand\": {\n \"neutral-950\": \"#000000\",\n \"neutral-900\": \"#131826\",\n \"neutral-800\": \"#1f242e\",\n \"neutral-700\": \"#3a424d\",\n \"neutral-600\": \"#4e5663\",\n \"neutral-500\": \"#686e7d\",\n \"neutral-400\": \"#9fa5b2\",\n \"neutral-300\": \"#d1d5de\",\n \"neutral-200\": \"#e9ebf0\",\n \"neutral-100\": \"#f1f3f7\",\n \"neutral-50\": \"#f9fafc\",\n \"neutral-25\": \"#ffffff\",\n \"primary-950\": \"#172554\",\n \"primary-900\": \"#1e3a8a\",\n \"primary-800\": \"#1e40af\",\n \"primary-700\": \"#1d4ed8\",\n \"primary-600\": \"#2563eb\",\n \"primary-500\": \"#3b82f6\",\n \"primary-400\": \"#73affa\",\n \"primary-300\": \"#93c5fd\",\n \"primary-200\": \"#bfdbfe\",\n \"primary-100\": \"#dbeafe\",\n \"primary-50\": \"#eff6ff\",\n \"success-950\": \"#022c22\",\n \"success-900\": \"#064e3b\",\n \"success-800\": \"#065f46\",\n \"success-700\": \"#047857\",\n \"success-600\": \"#059669\",\n \"success-500\": \"#10b981\",\n \"success-400\": \"#34d399\",\n \"success-300\": \"#6ee7b7\",\n \"success-200\": \"#a7f3d0\",\n \"success-100\": \"#d1fae5\",\n \"success-50\": \"#ecfdf5\",\n \"warning-950\": \"#413406\",\n \"warning-900\": \"#735912\",\n \"warning-800\": \"#86660e\",\n \"warning-700\": \"#a27607\",\n \"warning-600\": \"#c89704\",\n \"warning-500\": \"#eab308\",\n \"warning-400\": \"#facc15\",\n \"warning-300\": \"#fde047\",\n \"warning-200\": \"#fef08a\",\n \"warning-100\": \"#fef3c7\",\n \"warning-50\": \"#fefce8\",\n \"danger-950\": \"#450a0a\",\n \"danger-900\": \"#7f1d1d\",\n \"danger-800\": \"#991b1b\",\n \"danger-700\": \"#b91c1c\",\n \"danger-600\": \"#dc2626\",\n \"danger-500\": \"#ef4444\",\n \"danger-400\": \"#f87171\",\n \"danger-300\": \"#fca5a5\",\n \"danger-200\": \"#fecaca\",\n \"danger-100\": \"#fee2e2\",\n \"danger-50\": \"#fef2f2\",\n \"info-950\": \"#172554\",\n \"info-900\": \"#1e3a8a\",\n \"info-800\": \"#1e40af\",\n \"info-700\": \"#1d4ed8\",\n \"info-600\": \"#2563eb\",\n \"info-500\": \"#3b82f6\",\n \"info-400\": \"#60a5fa\",\n \"info-300\": \"#93c5fd\",\n \"info-200\": \"#bfdbfe\",\n \"info-100\": \"#dbeafe\",\n \"info-50\": \"#eff6ff\",\n \"sky-950\": \"#082f49\",\n \"sky-900\": \"#0c4a6e\",\n \"sky-800\": \"#075985\",\n \"sky-700\": \"#0369a1\",\n \"sky-600\": \"#0284c7\",\n \"sky-500\": \"#0ea5e9\",\n \"sky-400\": \"#38bdf8\",\n \"sky-300\": \"#7dd3fc\",\n \"sky-200\": \"#bae6fd\",\n \"sky-100\": \"#e0f2fe\",\n \"sky-50\": \"#f0f9ff\",\n \"teal-950\": \"#042f2e\",\n \"teal-900\": \"#134e4a\",\n \"teal-800\": \"#115e59\",\n \"teal-700\": \"#0f766e\",\n \"teal-600\": \"#0d9488\",\n \"teal-500\": \"#14b8a6\",\n \"teal-400\": \"#2dd4bf\",\n \"teal-300\": \"#5eead4\",\n \"teal-200\": \"#99f6e4\",\n \"teal-100\": \"#ccfbf1\",\n \"teal-50\": \"#f0fdfa\",\n \"lime-950\": \"#1a2e05\",\n \"lime-900\": \"#365314\",\n \"lime-800\": \"#3f6212\",\n \"lime-700\": \"#4d7c0f\",\n \"lime-600\": \"#65a30d\",\n \"lime-500\": \"#84cc16\",\n \"lime-400\": \"#a3e635\",\n \"lime-300\": \"#bef264\",\n \"lime-200\": \"#d9f99d\",\n \"lime-100\": \"#ecfccb\",\n \"lime-50\": \"#f7fee7\",\n \"indigo-950\": \"#1e1b4b\",\n \"indigo-900\": \"#312e81\",\n \"indigo-800\": \"#3730a3\",\n \"indigo-700\": \"#4338ca\",\n \"indigo-600\": \"#4f46e5\",\n \"indigo-500\": \"#6366f1\",\n \"indigo-400\": \"#818cf8\",\n \"indigo-300\": \"#a5b4fc\",\n \"indigo-200\": \"#c7d2fe\",\n \"indigo-100\": \"#e0e7ff\",\n \"indigo-50\": \"#eef2ff\",\n \"purple-950\": \"#3b0764\",\n \"purple-900\": \"#581c87\",\n \"purple-800\": \"#6b21a8\",\n \"purple-700\": \"#7e22ce\",\n \"purple-600\": \"#9333ea\",\n \"purple-500\": \"#a855f7\",\n \"purple-400\": \"#c084fc\",\n \"purple-300\": \"#d8b4fe\",\n \"purple-200\": \"#e9d5ff\",\n \"purple-100\": \"#f3e8ff\",\n \"purple-50\": \"#faf5ff\",\n \"fuchsia-950\": \"#4a044e\",\n \"fuchsia-900\": \"#701a75\",\n \"fuchsia-800\": \"#86198f\",\n \"fuchsia-700\": \"#a21caf\",\n \"fuchsia-600\": \"#c026d3\",\n \"fuchsia-500\": \"#d946ef\",\n \"fuchsia-400\": \"#e879f9\",\n \"fuchsia-300\": \"#f0abfc\",\n \"fuchsia-200\": \"#f5d0fe\",\n \"fuchsia-100\": \"#fae8ff\",\n \"fuchsia-50\": \"#fdf4ff\",\n \"pink-950\": \"#500724\",\n \"pink-900\": \"#831843\",\n \"pink-800\": \"#9d174d\",\n \"pink-700\": \"#be185d\",\n \"pink-600\": \"#db2777\",\n \"pink-500\": \"#ec4899\",\n \"pink-400\": \"#f472b6\",\n \"pink-300\": \"#f9a8d4\",\n \"pink-200\": \"#fbcfe8\",\n \"pink-100\": \"#fce7f3\",\n \"pink-50\": \"#fdf2f8\",\n \"rose-950\": \"#4c0519\",\n \"rose-900\": \"#881337\",\n \"rose-800\": \"#9f1239\",\n \"rose-700\": \"#be123c\",\n \"rose-600\": \"#e11d48\",\n \"rose-500\": \"#f43f5e\",\n \"rose-400\": \"#fb7185\",\n \"rose-300\": \"#fda4af\",\n \"rose-200\": \"#fecdd3\",\n \"rose-100\": \"#ffe4e6\",\n \"rose-50\": \"#fff1f2\",\n \"yellow-950\": \"#413406\",\n \"yellow-900\": \"#735912\",\n \"yellow-800\": \"#86660e\",\n \"yellow-700\": \"#a27607\",\n \"yellow-600\": \"#c89704\",\n \"yellow-500\": \"#eab308\",\n \"yellow-400\": \"#facc15\",\n \"yellow-300\": \"#fde047\",\n \"yellow-200\": \"#fef08a\",\n \"yellow-100\": \"#fef3c7\",\n \"yellow-50\": \"#fefce8\"\n },\n \"alias\": {\n \"bg-primary\": \"{brand.neutral-25}\",\n \"bg-primary-alt\": \"{brand.neutral-25}\",\n \"bg-primary-inverse\": \"{brand.neutral-900}\",\n \"bg-secondary\": \"{brand.neutral-50}\",\n \"bg-secondary-alt\": \"{brand.neutral-50}\",\n \"bg-secondary-subtle\": \"{brand.neutral-50}\",\n \"bg-secondary-inverse\": \"{brand.neutral-800}\",\n \"bg-tertiary\": \"{brand.neutral-100}\",\n \"bg-quarterary\": \"{brand.neutral-200}\",\n \"bg-inactive\": \"{brand.neutral-100}\",\n \"bg-inactive-subtle\": \"{brand.neutral-50}\",\n \"bg-always-light\": \"{brand.neutral-25}\",\n \"bg-always-dark\": \"#191b21\",\n \"bg-on-overlay\": \"{brand.neutral-25}\",\n \"bg-overlay\": \"#8c8d90\",\n \"highlight\": \"{brand.neutral-25}\",\n \"highlight-hover\": \"rgba(0, 0, 0, 0.04)\",\n \"highlight-pressed\": \"#ededed\",\n \"highlight-inactive\": \"#f5f5f5\",\n \"highlight-active\": \"#e8e8e8\",\n \"bg-brand\": \"{brand.primary-600}\",\n \"bg-brand-hover\": \"{brand.primary-700}\",\n \"bg-brand-secondary\": \"{brand.primary-100}\",\n \"bg-brand-tertiary\": \"{brand.primary-50}\",\n \"bg-brand-tertiary-hover\": \"{brand.primary-100}\",\n \"bg-brand-strong\": \"{brand.primary-800}\",\n \"bg-success\": \"{brand.success-600}\",\n \"bg-success-secondary\": \"{brand.success-100}\",\n \"bg-success-tertiary\": \"{brand.success-50}\",\n \"bg-danger\": \"{brand.danger-600}\",\n \"bg-danger-hover\": \"{brand.danger-700}\",\n \"bg-danger-secondary\": \"{brand.danger-100}\",\n \"bg-danger-tertiary\": \"{brand.danger-50}\",\n \"bg-danger-strong\": \"{brand.danger-800}\",\n \"bg-warning\": \"{brand.warning-600}\",\n \"bg-warning-secondary\": \"{brand.warning-100}\",\n \"bg-warning-tertiary\": \"{brand.warning-50}\",\n \"bg-info\": \"{brand.sky-600}\",\n \"bg-info-secondary\": \"{brand.sky-100}\",\n \"bg-info-tertiary\": \"{brand.sky-50}\",\n \"border-default\": \"{brand.neutral-200}\",\n \"border-secondary\": \"{brand.neutral-100}\",\n \"border-strong\": \"{brand.neutral-300}\",\n \"border-subtract\": \"{brand.neutral-25}\",\n \"border-inactive\": \"{brand.neutral-300}\",\n \"border-inactive-subtle\": \"{brand.neutral-200}\",\n \"border-focused\": \"#d3e0fb\",\n \"border-focused-danger\": \"#fac7c7\",\n \"border-brand\": \"{brand.primary-600}\",\n \"border-brand-secondary\": \"{brand.primary-300}\",\n \"border-brand-tertiary\": \"{brand.primary-50}\",\n \"border-success\": \"{brand.success-600}\",\n \"border-success-secondary\": \"{brand.success-300}\",\n \"border-success-tertiary\": \"{brand.success-50}\",\n \"border-danger\": \"{brand.danger-600}\",\n \"border-danger-secondary\": \"{brand.danger-300}\",\n \"border-danger-tertiary\": \"{brand.danger-50}\",\n \"border-warning\": \"{brand.warning-600}\",\n \"border-warning-secondary\": \"{brand.warning-300}\",\n \"border-warning-tertiary\": \"{brand.warning-50}\",\n \"border-info\": \"{brand.sky-600}\",\n \"border-info-subtle\": \"{brand.sky-300}\",\n \"icon-primary\": \"{brand.neutral-800}\",\n \"icon-primary-inverse\": \"{brand.neutral-25}\",\n \"icon-secondary\": \"{brand.neutral-600}\",\n \"icon-secondary-hover\": \"{brand.neutral-700}\",\n \"icon-secondary-inverse\": \"{brand.neutral-400}\",\n \"icon-tertiary\": \"{brand.neutral-500}\",\n \"icon-tertiary-hover\": \"{brand.neutral-600}\",\n \"icon-inactive\": \"{brand.neutral-400}\",\n \"icon-inactive-subtle\": \"{brand.neutral-300}\",\n \"icon-on-color\": \"{brand.neutral-25}\",\n \"icon-on-color-inverse\": \"{brand.neutral-700}\",\n \"icon-brand\": \"{brand.primary-600}\",\n \"icon-brand-secondary\": \"{brand.primary-500}\",\n \"icon-success\": \"{brand.success-600}\",\n \"icon-success-secondary\": \"{brand.success-500}\",\n \"icon-success-strong\": \"{brand.success-800}\",\n \"icon-danger\": \"{brand.danger-600}\",\n \"icon-danger-secondary\": \"{brand.danger-500}\",\n \"icon-danger-strong\": \"{brand.danger-800}\",\n \"icon-warning\": \"{brand.warning-600}\",\n \"icon-warning-secondary\": \"{brand.warning-500}\",\n \"icon-warning-strong\": \"{brand.warning-800}\",\n \"icon-info\": \"{brand.sky-600}\",\n \"icon-info-secondary\": \"{brand.sky-500}\",\n \"icon-info-strong\": \"{brand.sky-800}\",\n \"text-primary\": \"{brand.neutral-800}\",\n \"text-primary-inverse\": \"{brand.neutral-25}\",\n \"text-secondary\": \"{brand.neutral-600}\",\n \"text-secondary-hover\": \"{brand.neutral-700}\",\n \"text-secondary-inverse\": \"{brand.neutral-400}\",\n \"text-tertiary\": \"{brand.neutral-500}\",\n \"text-tertiary-hover\": \"{brand.neutral-600}\",\n \"text-inactive\": \"{brand.neutral-500}\",\n \"text-inactive-subtle\": \"{brand.neutral-400}\",\n \"text-placeholder\": \"{brand.neutral-500}\",\n \"text-on-color\": \"{brand.neutral-25}\",\n \"text-on-color-inverse\": \"{brand.neutral-700}\",\n \"text-brand\": \"{brand.primary-600}\",\n \"text-brand-strong\": \"{brand.primary-800}\",\n \"text-success\": \"{brand.success-600}\",\n \"text-success-strong\": \"{brand.success-800}\",\n \"text-danger\": \"{brand.danger-600}\",\n \"text-danger-strong\": \"{brand.danger-800}\",\n \"text-error\": \"{brand.danger-600}\",\n \"text-warning\": \"{brand.warning-600}\",\n \"text-warning-strong\": \"{brand.warning-800}\",\n \"text-info\": \"{brand.sky-800}\",\n \"text-info-strong\": \"{brand.sky-800}\",\n \"component-input-bg\": \"{brand.neutral-25}\",\n \"component-input-bg-hover\": \"{brand.neutral-50}\",\n \"component-button-brand-bg\": \"{brand.primary-600}\",\n \"component-button-brand-bg-hover\": \"{brand.primary-700}\",\n \"component-button-secondary-bg\": \"{brand.neutral-25}\",\n \"component-button-secondary-bg-hover\": \"{brand.neutral-100}\",\n \"component-button-secondary-fg\": \"{brand.neutral-800}\",\n \"component-button-secondary-fg-hover\": \"{brand.neutral-800}\",\n \"component-button-danger-bg\": \"{brand.danger-600}\",\n \"component-button-danger-bg-hover\": \"{brand.danger-700}\",\n \"component-button-tertiary-bg-hover\": \"{brand.neutral-100}\",\n \"component-button-tertiary-color-fg\": \"{brand.neutral-800}\",\n \"component-button-tertiary-color-fg-hover\": \"{brand.neutral-800}\",\n \"component-button-link-color-fg\": \"{brand.primary-700}\",\n \"component-button-link-color-fg-hover\": \"{brand.primary-800}\",\n \"component-toggle-brand-bg\": \"{brand.primary-600}\",\n \"component-toggle-brand-bg-hover\": \"{brand.primary-700}\"\n },\n \"shadow\": {\n \"xs\": \"0px 1px 2px 0px rgba(15, 17, 20, 0.06)\",\n \"sm\": \"0px 1px 3px 0px rgba(15, 17, 20, 0.10)\",\n \"md\": \"0px 1.75px 4px -1px rgba(15, 17, 20, 0.10)\",\n \"lg\": \"0px 10px 16px -3px rgba(15, 17, 20, 0.06), 0px 4px 6px -2px rgba(15, 17, 20, 0.04)\",\n \"xl\": \"0px 20px 25px -5px rgba(15, 17, 20, 0.08), 0px 10px 10px -5px rgba(15, 17, 20, 0.06)\",\n \"2xl\": \"0px 25px 50px -12px rgba(15, 17, 20, 0.20)\",\n \"flat\": \"0px 1px 0px 0px rgba(228, 228, 231, 1.0)\",\n \"inner\": \"inset 0px 2px 4px 0px rgba(15, 17, 20, 0.08)\"\n },\n \"radius\": {\n \"none\": \"0px\",\n \"xxs\": \"2px\",\n \"xs\": \"4px\",\n \"sm\": \"8px\",\n \"md\": \"12px\",\n \"lg\": \"16px\",\n \"xl\": \"20px\",\n \"2xl\": \"28px\",\n \"full\": \"9999px\"\n },\n \"spacing\": {\n \"none\": \"0px\",\n \"xxs\": \"0.125rem\",\n \"xs\": \"0.25rem\",\n \"sm\": \"0.5rem\",\n \"md\": \"0.75rem\",\n \"lg\": \"1rem\",\n \"xl\": \"1.25rem\",\n \"2xl\": \"1.5rem\",\n \"3xl\": \"1.75rem\",\n \"4xl\": \"2rem\",\n \"5xl\": \"2.5rem\",\n \"6xl\": \"3rem\",\n \"7xl\": \"4rem\",\n \"8xl\": \"5rem\",\n \"9xl\": \"6rem\",\n \"10xl\": \"8rem\",\n \"11xl\": \"10rem\",\n \"12xl\": \"12rem\"\n }\n}\n"],"mappings":"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","names":[]}
|