base_ui/app.config.ts
2025-02-12 17:44:17 +03:30

22 lines
474 B
TypeScript

export default defineAppConfig({
theme: {
primaryColor: "#ababab",
},
colorMode: {
preference: "light", // Set the default preference to 'light'
fallback: "light", // Set the fallback to 'light' if system preference is not available
},
ui: {
colors: {
primary: "emerald",
neutral: "slate",
},
button: {
defaultVariants: {
// Set default button color to neutral
// color: 'neutral'
},
},
},
});