1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2026-02-04 07:53:11 +00:00

将默认主题修改为浅色模式 (vibe-kanban e04d3d38)

将默认主题修改为浅色模式
This commit is contained in:
houalngs 2026-01-11 13:21:12 +08:00
parent 42ecc77ee3
commit b01934eef7
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ import {createVuetify} from 'vuetify'
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
export default createVuetify({ export default createVuetify({
theme: { theme: {
defaultTheme: 'dark', defaultTheme: 'light',
}, },
}) })

View File

@ -393,7 +393,7 @@ const settingsDefinitions = {
// 主题设置 // 主题设置
"theme.mode": { "theme.mode": {
type: "string", type: "string",
default: "dark", default: "light",
validate: (value) => ["light", "dark"].includes(value), validate: (value) => ["light", "dark"].includes(value),
description: "主题模式", description: "主题模式",
icon: "mdi-theme-light-dark", icon: "mdi-theme-light-dark",