first commit
This commit is contained in:
85
tailwind.config.d.ts
vendored
Normal file
85
tailwind.config.d.ts
vendored
Normal 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;
|
||||
Reference in New Issue
Block a user