24 lines
338 B
TypeScript
24 lines
338 B
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
colors: {
|
|
primary: "indigo",
|
|
neutral: "neutral",
|
|
},
|
|
button: {
|
|
slots: {
|
|
base: "cursor-pointer",
|
|
},
|
|
},
|
|
input: {
|
|
slots: {
|
|
root: "w-full",
|
|
},
|
|
},
|
|
textarea: {
|
|
slots: {
|
|
root: "w-full",
|
|
},
|
|
},
|
|
},
|
|
});
|