boottent-design 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/LICENSE.md +1 -0
- package/README.md +79 -0
- package/dist/boottent-design.assets.cjs.js +1 -0
- package/dist/boottent-design.assets.es.js +1 -0
- package/dist/boottent-design.feature.cjs.js +1 -0
- package/dist/boottent-design.feature.es.js +1 -0
- package/dist/boottent-design.layout.cjs.js +1 -0
- package/dist/boottent-design.layout.es.js +5 -0
- package/dist/boottent-design.main.cjs.js +1 -0
- package/dist/boottent-design.main.es.js +16 -0
- package/dist/boottent-design.styles.cjs.js +1 -0
- package/dist/boottent-design.styles.es.js +1 -0
- package/dist/boottent-design.ui.cjs.js +1 -0
- package/dist/boottent-design.ui.es.js +11 -0
- package/dist/boottent-design.utils.cjs.js +1 -0
- package/dist/boottent-design.utils.es.js +2274 -0
- package/dist/index-BGG-QNz9.js +8 -0
- package/dist/index-CU-wEqOs.cjs +1 -0
- package/dist/index-D2oSpcX9.cjs +1 -0
- package/dist/index-_zUNSWhN.js +2564 -0
- package/dist/types/assets.d.ts +365 -0
- package/dist/types/feature.d.ts +365 -0
- package/dist/types/layout.d.ts +384 -0
- package/dist/types/main.d.ts +572 -0
- package/dist/types/styles.d.ts +365 -0
- package/dist/types/ui.d.ts +552 -0
- package/dist/types/utils.d.ts +369 -0
- package/package.json +99 -0
|
@@ -0,0 +1,572 @@
|
|
|
1
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
+
import { ClassValue } from 'clsx';
|
|
4
|
+
import { ComponentPropsWithRef } from 'react';
|
|
5
|
+
import { DetailedHTMLProps } from 'react';
|
|
6
|
+
import { DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES } from 'react';
|
|
7
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
8
|
+
import { HTMLAttributes } from 'react';
|
|
9
|
+
import { JSX as JSX_2 } from 'react';
|
|
10
|
+
import * as React_2 from 'react';
|
|
11
|
+
import { RefAttributes } from 'react';
|
|
12
|
+
import { RefObject } from 'react';
|
|
13
|
+
import { VariantProps } from 'class-variance-authority';
|
|
14
|
+
|
|
15
|
+
export declare const Accordion: React_2.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React_2.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
|
|
17
|
+
export declare const AccordionContent: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
|
|
19
|
+
export declare const AccordionItem: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
|
|
21
|
+
export declare const AccordionTrigger: React_2.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
22
|
+
|
|
23
|
+
declare function ArrowDown({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
24
|
+
|
|
25
|
+
declare function ArrowDownButton({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
26
|
+
|
|
27
|
+
declare function ArrowUp({ size }: SvgIconType): JSX_2.Element;
|
|
28
|
+
|
|
29
|
+
declare function Boottent120(): JSX_2.Element;
|
|
30
|
+
|
|
31
|
+
declare function Boottent140(): JSX_2.Element;
|
|
32
|
+
|
|
33
|
+
export declare const Box: ForwardRefExoticComponent<Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
34
|
+
ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
|
|
35
|
+
}, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
36
|
+
|
|
37
|
+
declare type BoxProps = ComponentPropsWithRef<"div">;
|
|
38
|
+
|
|
39
|
+
declare function Bubbles({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
40
|
+
|
|
41
|
+
declare function BubbleTip({ fill, className, }: SvgIconType): JSX_2.Element;
|
|
42
|
+
|
|
43
|
+
export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
44
|
+
|
|
45
|
+
export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
46
|
+
asChild?: boolean;
|
|
47
|
+
icLeft?: React_2.ReactNode;
|
|
48
|
+
icRight?: React_2.ReactNode;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare function ButtonRight({ size, disabled }: Props): JSX_2.Element;
|
|
52
|
+
|
|
53
|
+
export declare const buttonVariants: (props?: ({
|
|
54
|
+
theme?: "primary" | "secondary" | "etc" | null | undefined;
|
|
55
|
+
size?: "xs" | "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
56
|
+
variant?: "text" | "solid" | "outline" | null | undefined;
|
|
57
|
+
shape?: "square" | "rounded" | null | undefined;
|
|
58
|
+
} & ClassProp) | undefined) => string;
|
|
59
|
+
|
|
60
|
+
declare function Cancel({ size, fill }: SvgIconType): JSX_2.Element;
|
|
61
|
+
|
|
62
|
+
declare function CardView({ size, fill, }: SvgIconType): JSX_2.Element;
|
|
63
|
+
|
|
64
|
+
declare function Checkbox({ type, size }: Props_2): JSX_2.Element;
|
|
65
|
+
|
|
66
|
+
declare function CircleFillArrowRight({ size, color, className, }: ReactIconProps): JSX_2.Element;
|
|
67
|
+
|
|
68
|
+
export declare const cn: (...classes: ClassValue[]) => string;
|
|
69
|
+
|
|
70
|
+
declare function Company({ fill, className }: SvgIconType): JSX_2.Element;
|
|
71
|
+
|
|
72
|
+
declare function CopyLink(): JSX_2.Element;
|
|
73
|
+
|
|
74
|
+
declare function DefaultProfile({ size }: SvgIconType): JSX_2.Element;
|
|
75
|
+
|
|
76
|
+
declare function Facebook(): JSX_2.Element;
|
|
77
|
+
|
|
78
|
+
declare function Filter({ fill, size }: SvgIconType): JSX_2.Element;
|
|
79
|
+
|
|
80
|
+
declare function Google({ size }: SvgIconType): JSX_2.Element;
|
|
81
|
+
|
|
82
|
+
declare function HeartFill({ size, fill, }: SvgIconType): JSX_2.Element;
|
|
83
|
+
|
|
84
|
+
declare function HeartOutline({ size, fill, }: SvgIconType): JSX_2.Element;
|
|
85
|
+
|
|
86
|
+
declare function Home({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
87
|
+
|
|
88
|
+
export declare const Icon: {
|
|
89
|
+
ArrowDown: typeof ArrowDown;
|
|
90
|
+
ArrowDownButton: typeof ArrowDownButton;
|
|
91
|
+
ArrowUp: typeof ArrowUp;
|
|
92
|
+
Boottent120: typeof Boottent120;
|
|
93
|
+
Boottent140: typeof Boottent140;
|
|
94
|
+
Bubbles: typeof Bubbles;
|
|
95
|
+
BubbleTip: typeof BubbleTip;
|
|
96
|
+
ButtonRight: typeof ButtonRight;
|
|
97
|
+
Cancel: typeof Cancel;
|
|
98
|
+
Cardview: typeof CardView;
|
|
99
|
+
Checkbox: typeof Checkbox;
|
|
100
|
+
Company: typeof Company;
|
|
101
|
+
CopyLink: typeof CopyLink;
|
|
102
|
+
DefaultProfile: typeof DefaultProfile;
|
|
103
|
+
Facebook: typeof Facebook;
|
|
104
|
+
Filter: typeof Filter;
|
|
105
|
+
Google: typeof Google;
|
|
106
|
+
HeartFill: typeof HeartFill;
|
|
107
|
+
HeartOutline: typeof HeartOutline;
|
|
108
|
+
Home: typeof Home;
|
|
109
|
+
Kakao: typeof Kakao;
|
|
110
|
+
KakaoFill: typeof KakaoFill;
|
|
111
|
+
Line: typeof Line;
|
|
112
|
+
Location: typeof Location_2;
|
|
113
|
+
Menu: typeof Menu;
|
|
114
|
+
Meta: typeof Meta;
|
|
115
|
+
Moreview: typeof MoreView;
|
|
116
|
+
New: typeof New;
|
|
117
|
+
Play: typeof Play;
|
|
118
|
+
Profile: typeof Profile;
|
|
119
|
+
Program: typeof Program;
|
|
120
|
+
Radio: typeof Radio;
|
|
121
|
+
Reset: typeof Reset;
|
|
122
|
+
RICircleFillArrowRight: typeof CircleFillArrowRight;
|
|
123
|
+
RIReturnRight: typeof ReturnRight;
|
|
124
|
+
RIZoomIn: typeof ZoomIn;
|
|
125
|
+
RIZoomOut: typeof ZoomOut;
|
|
126
|
+
Search: typeof Search;
|
|
127
|
+
TableView: typeof TableView;
|
|
128
|
+
Tooltip: typeof Tooltip;
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
132
|
+
|
|
133
|
+
export declare interface InputProps extends React_2.InputHTMLAttributes<HTMLInputElement> {
|
|
134
|
+
icon?: React_2.ReactNode;
|
|
135
|
+
iconPosition?: "left" | "right";
|
|
136
|
+
error?: boolean;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare function Kakao({ size, fill }: SvgIconType): JSX_2.Element;
|
|
140
|
+
|
|
141
|
+
declare function KakaoFill({ size, className }: SvgIconType): JSX_2.Element;
|
|
142
|
+
|
|
143
|
+
declare function Line(): JSX_2.Element;
|
|
144
|
+
|
|
145
|
+
declare function Location_2({ fill, size, className, }: SvgIconType): JSX_2.Element;
|
|
146
|
+
|
|
147
|
+
declare function Menu({ fill }: SvgIconType): JSX_2.Element;
|
|
148
|
+
|
|
149
|
+
declare function Meta(): JSX_2.Element;
|
|
150
|
+
|
|
151
|
+
declare function MoreView({ size, fill, }: SvgIconType): JSX_2.Element;
|
|
152
|
+
|
|
153
|
+
declare function New({ size, fill }: SvgIconType): JSX_2.Element;
|
|
154
|
+
|
|
155
|
+
declare function Play({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
156
|
+
|
|
157
|
+
declare function Profile({ fill, className }: SvgIconType): JSX_2.Element;
|
|
158
|
+
|
|
159
|
+
declare function Program({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
160
|
+
|
|
161
|
+
declare type Props = {
|
|
162
|
+
size?: string;
|
|
163
|
+
disabled?: boolean;
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
declare type Props_2 = {
|
|
167
|
+
type: "disabled" | "checked" | "blank";
|
|
168
|
+
size?: string;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
declare type Props_3 = {
|
|
172
|
+
type: "checked" | "blank";
|
|
173
|
+
size?: string;
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
declare function Radio({ type, size }: Props_3): JSX_2.Element;
|
|
177
|
+
|
|
178
|
+
declare interface ReactIconProps {
|
|
179
|
+
size?: number;
|
|
180
|
+
color?: string;
|
|
181
|
+
className?: string;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
declare function Reset({ size, fill }: SvgIconType): JSX_2.Element;
|
|
185
|
+
|
|
186
|
+
declare function ReturnRight({ size, color, className, }: ReactIconProps): JSX_2.Element;
|
|
187
|
+
|
|
188
|
+
declare function Search({ size, fill }: SvgIconType): JSX_2.Element;
|
|
189
|
+
|
|
190
|
+
export declare const Stack: ({ className, ...props }: StackProps) => JSX_2.Element;
|
|
191
|
+
|
|
192
|
+
declare type StackProps = BoxProps;
|
|
193
|
+
|
|
194
|
+
declare type SvgIconType = {
|
|
195
|
+
size?: string;
|
|
196
|
+
fill?: string;
|
|
197
|
+
className?: string;
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
declare function TableView({ size, fill, }: SvgIconType): JSX_2.Element;
|
|
201
|
+
|
|
202
|
+
declare function Tooltip({ size, fill, className, }: SvgIconType): JSX_2.Element;
|
|
203
|
+
|
|
204
|
+
declare function ZoomIn({ size, color, className }: ReactIconProps): JSX_2.Element;
|
|
205
|
+
|
|
206
|
+
declare function ZoomOut({ size, color, className }: ReactIconProps): JSX_2.Element;
|
|
207
|
+
|
|
208
|
+
export { }
|
|
209
|
+
|
|
210
|
+
declare namespace _default {
|
|
211
|
+
let content: string[];
|
|
212
|
+
namespace theme {
|
|
213
|
+
let fontSize: any;
|
|
214
|
+
let colors: {
|
|
215
|
+
grey: {
|
|
216
|
+
50: string;
|
|
217
|
+
100: string;
|
|
218
|
+
200: string;
|
|
219
|
+
300: string;
|
|
220
|
+
400: string;
|
|
221
|
+
500: string;
|
|
222
|
+
600: string;
|
|
223
|
+
700: string;
|
|
224
|
+
800: string;
|
|
225
|
+
900: string;
|
|
226
|
+
950: string;
|
|
227
|
+
};
|
|
228
|
+
main: {
|
|
229
|
+
50: string;
|
|
230
|
+
100: string;
|
|
231
|
+
200: string;
|
|
232
|
+
300: string;
|
|
233
|
+
400: string;
|
|
234
|
+
500: string;
|
|
235
|
+
600: string;
|
|
236
|
+
700: string;
|
|
237
|
+
800: string;
|
|
238
|
+
900: string;
|
|
239
|
+
950: string;
|
|
240
|
+
};
|
|
241
|
+
red: {
|
|
242
|
+
50: string;
|
|
243
|
+
300: string;
|
|
244
|
+
400: string;
|
|
245
|
+
500: string;
|
|
246
|
+
'100': "#fee2e2";
|
|
247
|
+
'200': "#fecaca";
|
|
248
|
+
'600': "#dc2626";
|
|
249
|
+
'700': "#b91c1c";
|
|
250
|
+
'800': "#991b1b";
|
|
251
|
+
'900': "#7f1d1d";
|
|
252
|
+
'950': "#450a0a";
|
|
253
|
+
};
|
|
254
|
+
pink: {
|
|
255
|
+
50: string;
|
|
256
|
+
500: string;
|
|
257
|
+
'100': "#fce7f3";
|
|
258
|
+
'200': "#fbcfe8";
|
|
259
|
+
'300': "#f9a8d4";
|
|
260
|
+
'400': "#f472b6";
|
|
261
|
+
'600': "#db2777";
|
|
262
|
+
'700': "#be185d";
|
|
263
|
+
'800': "#9d174d";
|
|
264
|
+
'900': "#831843";
|
|
265
|
+
'950': "#500724";
|
|
266
|
+
};
|
|
267
|
+
yellow: {
|
|
268
|
+
100: string;
|
|
269
|
+
300: string;
|
|
270
|
+
400: string;
|
|
271
|
+
kakao: string;
|
|
272
|
+
'50': "#fefce8";
|
|
273
|
+
'200': "#fef08a";
|
|
274
|
+
'500': "#eab308";
|
|
275
|
+
'600': "#ca8a04";
|
|
276
|
+
'700': "#a16207";
|
|
277
|
+
'800': "#854d0e";
|
|
278
|
+
'900': "#713f12";
|
|
279
|
+
'950': "#422006";
|
|
280
|
+
};
|
|
281
|
+
orange: {
|
|
282
|
+
50: string;
|
|
283
|
+
500: string;
|
|
284
|
+
'100': "#ffedd5";
|
|
285
|
+
'200': "#fed7aa";
|
|
286
|
+
'300': "#fdba74";
|
|
287
|
+
'400': "#fb923c";
|
|
288
|
+
'600': "#ea580c";
|
|
289
|
+
'700': "#c2410c";
|
|
290
|
+
'800': "#9a3412";
|
|
291
|
+
'900': "#7c2d12";
|
|
292
|
+
'950': "#431407";
|
|
293
|
+
};
|
|
294
|
+
brown: {
|
|
295
|
+
50: string;
|
|
296
|
+
500: string;
|
|
297
|
+
};
|
|
298
|
+
lime: {
|
|
299
|
+
50: string;
|
|
300
|
+
500: string;
|
|
301
|
+
'100': "#ecfccb";
|
|
302
|
+
'200': "#d9f99d";
|
|
303
|
+
'300': "#bef264";
|
|
304
|
+
'400': "#a3e635";
|
|
305
|
+
'600': "#65a30d";
|
|
306
|
+
'700': "#4d7c0f";
|
|
307
|
+
'800': "#3f6212";
|
|
308
|
+
'900': "#365314";
|
|
309
|
+
'950': "#1a2e05";
|
|
310
|
+
};
|
|
311
|
+
green: {
|
|
312
|
+
50: string;
|
|
313
|
+
500: string;
|
|
314
|
+
naver: string;
|
|
315
|
+
'100': "#dcfce7";
|
|
316
|
+
'200': "#bbf7d0";
|
|
317
|
+
'300': "#86efac";
|
|
318
|
+
'400': "#4ade80";
|
|
319
|
+
'600': "#16a34a";
|
|
320
|
+
'700': "#15803d";
|
|
321
|
+
'800': "#166534";
|
|
322
|
+
'900': "#14532d";
|
|
323
|
+
'950': "#052e16";
|
|
324
|
+
};
|
|
325
|
+
teal: {
|
|
326
|
+
50: string;
|
|
327
|
+
500: string;
|
|
328
|
+
'100': "#ccfbf1";
|
|
329
|
+
'200': "#99f6e4";
|
|
330
|
+
'300': "#5eead4";
|
|
331
|
+
'400': "#2dd4bf";
|
|
332
|
+
'600': "#0d9488";
|
|
333
|
+
'700': "#0f766e";
|
|
334
|
+
'800': "#115e59";
|
|
335
|
+
'900': "#134e4a";
|
|
336
|
+
'950': "#042f2e";
|
|
337
|
+
};
|
|
338
|
+
blue: {
|
|
339
|
+
50: string;
|
|
340
|
+
100: string;
|
|
341
|
+
400: string;
|
|
342
|
+
500: string;
|
|
343
|
+
600: string;
|
|
344
|
+
'200': "#bfdbfe";
|
|
345
|
+
'300': "#93c5fd";
|
|
346
|
+
'700': "#1d4ed8";
|
|
347
|
+
'800': "#1e40af";
|
|
348
|
+
'900': "#1e3a8a";
|
|
349
|
+
'950': "#172554";
|
|
350
|
+
};
|
|
351
|
+
inherit: "inherit";
|
|
352
|
+
current: "currentColor";
|
|
353
|
+
transparent: "transparent";
|
|
354
|
+
black: "#000";
|
|
355
|
+
white: "#fff";
|
|
356
|
+
slate: {
|
|
357
|
+
"50": "#f8fafc";
|
|
358
|
+
"100": "#f1f5f9";
|
|
359
|
+
"200": "#e2e8f0";
|
|
360
|
+
"300": "#cbd5e1";
|
|
361
|
+
"400": "#94a3b8";
|
|
362
|
+
"500": "#64748b";
|
|
363
|
+
"600": "#475569";
|
|
364
|
+
"700": "#334155";
|
|
365
|
+
"800": "#1e293b";
|
|
366
|
+
"900": "#0f172a";
|
|
367
|
+
"950": "#020617";
|
|
368
|
+
};
|
|
369
|
+
gray: {
|
|
370
|
+
"50": "#f9fafb";
|
|
371
|
+
"100": "#f3f4f6";
|
|
372
|
+
"200": "#e5e7eb";
|
|
373
|
+
"300": "#d1d5db";
|
|
374
|
+
"400": "#9ca3af";
|
|
375
|
+
"500": "#6b7280";
|
|
376
|
+
"600": "#4b5563";
|
|
377
|
+
"700": "#374151";
|
|
378
|
+
"800": "#1f2937";
|
|
379
|
+
"900": "#111827";
|
|
380
|
+
"950": "#030712";
|
|
381
|
+
};
|
|
382
|
+
zinc: {
|
|
383
|
+
"50": "#fafafa";
|
|
384
|
+
"100": "#f4f4f5";
|
|
385
|
+
"200": "#e4e4e7";
|
|
386
|
+
"300": "#d4d4d8";
|
|
387
|
+
"400": "#a1a1aa";
|
|
388
|
+
"500": "#71717a";
|
|
389
|
+
"600": "#52525b";
|
|
390
|
+
"700": "#3f3f46";
|
|
391
|
+
"800": "#27272a";
|
|
392
|
+
"900": "#18181b";
|
|
393
|
+
"950": "#09090b";
|
|
394
|
+
};
|
|
395
|
+
neutral: {
|
|
396
|
+
"50": "#fafafa";
|
|
397
|
+
"100": "#f5f5f5";
|
|
398
|
+
"200": "#e5e5e5";
|
|
399
|
+
"300": "#d4d4d4";
|
|
400
|
+
"400": "#a3a3a3";
|
|
401
|
+
"500": "#737373";
|
|
402
|
+
"600": "#525252";
|
|
403
|
+
"700": "#404040";
|
|
404
|
+
"800": "#262626";
|
|
405
|
+
"900": "#171717";
|
|
406
|
+
"950": "#0a0a0a";
|
|
407
|
+
};
|
|
408
|
+
stone: {
|
|
409
|
+
"50": "#fafaf9";
|
|
410
|
+
"100": "#f5f5f4";
|
|
411
|
+
"200": "#e7e5e4";
|
|
412
|
+
"300": "#d6d3d1";
|
|
413
|
+
"400": "#a8a29e";
|
|
414
|
+
"500": "#78716c";
|
|
415
|
+
"600": "#57534e";
|
|
416
|
+
"700": "#44403c";
|
|
417
|
+
"800": "#292524";
|
|
418
|
+
"900": "#1c1917";
|
|
419
|
+
"950": "#0c0a09";
|
|
420
|
+
};
|
|
421
|
+
amber: {
|
|
422
|
+
"50": "#fffbeb";
|
|
423
|
+
"100": "#fef3c7";
|
|
424
|
+
"200": "#fde68a";
|
|
425
|
+
"300": "#fcd34d";
|
|
426
|
+
"400": "#fbbf24";
|
|
427
|
+
"500": "#f59e0b";
|
|
428
|
+
"600": "#d97706";
|
|
429
|
+
"700": "#b45309";
|
|
430
|
+
"800": "#92400e";
|
|
431
|
+
"900": "#78350f";
|
|
432
|
+
"950": "#451a03";
|
|
433
|
+
};
|
|
434
|
+
emerald: {
|
|
435
|
+
"50": "#ecfdf5";
|
|
436
|
+
"100": "#d1fae5";
|
|
437
|
+
"200": "#a7f3d0";
|
|
438
|
+
"300": "#6ee7b7";
|
|
439
|
+
"400": "#34d399";
|
|
440
|
+
"500": "#10b981";
|
|
441
|
+
"600": "#059669";
|
|
442
|
+
"700": "#047857";
|
|
443
|
+
"800": "#065f46";
|
|
444
|
+
"900": "#064e3b";
|
|
445
|
+
"950": "#022c22";
|
|
446
|
+
};
|
|
447
|
+
cyan: {
|
|
448
|
+
"50": "#ecfeff";
|
|
449
|
+
"100": "#cffafe";
|
|
450
|
+
"200": "#a5f3fc";
|
|
451
|
+
"300": "#67e8f9";
|
|
452
|
+
"400": "#22d3ee";
|
|
453
|
+
"500": "#06b6d4";
|
|
454
|
+
"600": "#0891b2";
|
|
455
|
+
"700": "#0e7490";
|
|
456
|
+
"800": "#155e75";
|
|
457
|
+
"900": "#164e63";
|
|
458
|
+
"950": "#083344";
|
|
459
|
+
};
|
|
460
|
+
sky: {
|
|
461
|
+
"50": "#f0f9ff";
|
|
462
|
+
"100": "#e0f2fe";
|
|
463
|
+
"200": "#bae6fd";
|
|
464
|
+
"300": "#7dd3fc";
|
|
465
|
+
"400": "#38bdf8";
|
|
466
|
+
"500": "#0ea5e9";
|
|
467
|
+
"600": "#0284c7";
|
|
468
|
+
"700": "#0369a1";
|
|
469
|
+
"800": "#075985";
|
|
470
|
+
"900": "#0c4a6e";
|
|
471
|
+
"950": "#082f49";
|
|
472
|
+
};
|
|
473
|
+
indigo: {
|
|
474
|
+
"50": "#eef2ff";
|
|
475
|
+
"100": "#e0e7ff";
|
|
476
|
+
"200": "#c7d2fe";
|
|
477
|
+
"300": "#a5b4fc";
|
|
478
|
+
"400": "#818cf8";
|
|
479
|
+
"500": "#6366f1";
|
|
480
|
+
"600": "#4f46e5";
|
|
481
|
+
"700": "#4338ca";
|
|
482
|
+
"800": "#3730a3";
|
|
483
|
+
"900": "#312e81";
|
|
484
|
+
"950": "#1e1b4b";
|
|
485
|
+
};
|
|
486
|
+
violet: {
|
|
487
|
+
"50": "#f5f3ff";
|
|
488
|
+
"100": "#ede9fe";
|
|
489
|
+
"200": "#ddd6fe";
|
|
490
|
+
"300": "#c4b5fd";
|
|
491
|
+
"400": "#a78bfa";
|
|
492
|
+
"500": "#8b5cf6";
|
|
493
|
+
"600": "#7c3aed";
|
|
494
|
+
"700": "#6d28d9";
|
|
495
|
+
"800": "#5b21b6";
|
|
496
|
+
"900": "#4c1d95";
|
|
497
|
+
"950": "#2e1065";
|
|
498
|
+
};
|
|
499
|
+
purple: {
|
|
500
|
+
"50": "#faf5ff";
|
|
501
|
+
"100": "#f3e8ff";
|
|
502
|
+
"200": "#e9d5ff";
|
|
503
|
+
"300": "#d8b4fe";
|
|
504
|
+
"400": "#c084fc";
|
|
505
|
+
"500": "#a855f7";
|
|
506
|
+
"600": "#9333ea";
|
|
507
|
+
"700": "#7e22ce";
|
|
508
|
+
"800": "#6b21a8";
|
|
509
|
+
"900": "#581c87";
|
|
510
|
+
"950": "#3b0764";
|
|
511
|
+
};
|
|
512
|
+
fuchsia: {
|
|
513
|
+
"50": "#fdf4ff";
|
|
514
|
+
"100": "#fae8ff";
|
|
515
|
+
"200": "#f5d0fe";
|
|
516
|
+
"300": "#f0abfc";
|
|
517
|
+
"400": "#e879f9";
|
|
518
|
+
"500": "#d946ef";
|
|
519
|
+
"600": "#c026d3";
|
|
520
|
+
"700": "#a21caf";
|
|
521
|
+
"800": "#86198f";
|
|
522
|
+
"900": "#701a75";
|
|
523
|
+
"950": "#4a044e";
|
|
524
|
+
};
|
|
525
|
+
rose: {
|
|
526
|
+
"50": "#fff1f2";
|
|
527
|
+
"100": "#ffe4e6";
|
|
528
|
+
"200": "#fecdd3";
|
|
529
|
+
"300": "#fda4af";
|
|
530
|
+
"400": "#fb7185";
|
|
531
|
+
"500": "#f43f5e";
|
|
532
|
+
"600": "#e11d48";
|
|
533
|
+
"700": "#be123c";
|
|
534
|
+
"800": "#9f1239";
|
|
535
|
+
"900": "#881337";
|
|
536
|
+
"950": "#4c0519";
|
|
537
|
+
};
|
|
538
|
+
lightBlue: import("tailwindcss/types/generated/colors").DefaultColors["sky"];
|
|
539
|
+
warmGray: import("tailwindcss/types/generated/colors").DefaultColors["stone"];
|
|
540
|
+
trueGray: import("tailwindcss/types/generated/colors").DefaultColors["neutral"];
|
|
541
|
+
coolGray: import("tailwindcss/types/generated/colors").DefaultColors["gray"];
|
|
542
|
+
blueGray: import("tailwindcss/types/generated/colors").DefaultColors["slate"];
|
|
543
|
+
};
|
|
544
|
+
namespace extend {
|
|
545
|
+
export namespace colors_1 {
|
|
546
|
+
let primary: {
|
|
547
|
+
'50': "#eff6ff";
|
|
548
|
+
'100': "#dbeafe";
|
|
549
|
+
'200': "#bfdbfe";
|
|
550
|
+
'300': "#93c5fd";
|
|
551
|
+
'400': "#60a5fa";
|
|
552
|
+
'500': "#3b82f6";
|
|
553
|
+
'600': "#2563eb";
|
|
554
|
+
'700': "#1d4ed8";
|
|
555
|
+
'800': "#1e40af";
|
|
556
|
+
'900': "#1e3a8a";
|
|
557
|
+
'950': "#172554";
|
|
558
|
+
};
|
|
559
|
+
}
|
|
560
|
+
export { colors_1 as colors };
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
let plugins: never[];
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
declare namespace _default {
|
|
567
|
+
namespace plugins {
|
|
568
|
+
let tailwindcss: {};
|
|
569
|
+
let autoprefixer: {};
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
|