first commit

This commit is contained in:
ZhangYonghao
2026-03-26 12:38:19 +08:00
commit af9d343f93
35 changed files with 4477 additions and 0 deletions

85
tailwind.config.d.ts vendored Normal file
View File

@@ -0,0 +1,85 @@
declare const _default: {
darkMode: ["class"];
content: string[];
theme: {
container: {
center: true;
padding: string;
screens: {
"2xl": string;
};
};
extend: {
colors: {
background: string;
foreground: string;
card: string;
"card-foreground": string;
popover: string;
"popover-foreground": string;
primary: string;
"primary-foreground": string;
secondary: string;
"secondary-foreground": string;
muted: string;
"muted-foreground": string;
accent: string;
"accent-foreground": string;
border: string;
input: string;
ring: string;
pastel: {
peach: string;
pink: string;
cream: string;
mint: string;
lavender: string;
lemon: string;
coral: string;
berry: string;
};
};
borderRadius: {
xl: string;
"2xl": string;
"3xl": string;
};
boxShadow: {
candy: string;
float: string;
};
fontFamily: {
sans: [string, string, string, string];
display: [string, string, string];
};
keyframes: {
bob: {
"0%, 100%": {
transform: string;
};
"50%": {
transform: string;
};
};
pop: {
"0%": {
transform: string;
opacity: string;
};
"100%": {
transform: string;
opacity: string;
};
};
};
animation: {
bob: string;
pop: string;
};
};
};
plugins: {
handler: () => void;
}[];
};
export default _default;