This commit is contained in:
bietiaop
2025-02-08 23:45:33 +08:00
parent a6a11a7026
commit 96d79cf495
3 changed files with 7 additions and 3 deletions

View File

@@ -87,12 +87,12 @@ export async function InitWebUi(logger: LogWrapper, pathWrapper: NapCatPathWrapp
// 生成css分为亮色和暗色靠class和[data-theme="light"]
let css = '.dark, [data-theme="dark"] {';
for (const key in colors.dark) {
css += `--${key}: ${colors.dark[key]};`;
css += `${key}: ${colors.dark[key]};`;
}
css += '}';
css += '.light, [data-theme="light"] {';
for (const key in colors.light) {
css += `--${key}: ${colors.light[key]};`;
css += `${key}: ${colors.light[key]};`;
}
css += '}';