2025-02-01 09:34:55 +00:00
|
|
|
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: {
|
2025-02-12 14:14:17 +00:00
|
|
|
colors: {
|
|
|
|
primary: "emerald",
|
|
|
|
neutral: "slate",
|
|
|
|
},
|
2025-02-01 09:34:55 +00:00
|
|
|
button: {
|
2025-02-12 14:14:17 +00:00
|
|
|
defaultVariants: {
|
|
|
|
// Set default button color to neutral
|
|
|
|
// color: 'neutral'
|
2025-02-01 09:34:55 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|