mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
fix
This commit is contained in:
@@ -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 += '}';
|
||||
|
||||
|
Reference in New Issue
Block a user