21 lines
427 B
TypeScript
Executable File
21 lines
427 B
TypeScript
Executable File
// app.config.ts
|
|
export default defineAppConfig({
|
|
ui: {
|
|
colors: {
|
|
primary: "primary",
|
|
secondary: "purple",
|
|
neutral: "zinc",
|
|
},
|
|
button: {
|
|
slots: {
|
|
base: ["cursor-pointer"],
|
|
},
|
|
defaultVariants: {
|
|
color: "primary",
|
|
variant: "solid",
|
|
size: "lg", // ← همه دکمهها پیشفرض lg میشن
|
|
},
|
|
},
|
|
},
|
|
});
|