ghostguild-org/app/app.config.ts

18 lines
479 B
TypeScript

export default defineAppConfig({
ui: {
colors: {
primary: "emerald",
neutral: "stone",
},
formField: {
slots: {
label: "block font-medium text-[--ui-text-dimmed]",
},
},
},
colorMode: {
preference: "system", // default value of $colorMode.preference
fallback: "dark", // fallback value if not system preference found
classSuffix: "", // default is '', set to '-mode' to have 'dark-mode' and 'light-mode'
},
});