20 lines
386 B
TypeScript
20 lines
386 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: {
|
||
|
primary: "green",
|
||
|
gray: "cool",
|
||
|
|
||
|
button: {
|
||
|
default: {
|
||
|
color: "orange",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|