refactor: change dark theme color

This commit is contained in:
2026-07-07 01:09:22 +08:00
parent 712a2cbb6a
commit 777d5cb6c3
4 changed files with 220 additions and 40 deletions
+2
View File
@@ -167,6 +167,7 @@ export namespace domain {
}
export class AppConfig {
hotkey: string;
theme: string;
s3: S3Config;
ssh: SSHConfig;
llm: LLMConfig;
@@ -178,6 +179,7 @@ export namespace domain {
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.hotkey = source["hotkey"];
this.theme = source["theme"];
this.s3 = this.convertValues(source["s3"], S3Config);
this.ssh = this.convertValues(source["ssh"], SSHConfig);
this.llm = this.convertValues(source["llm"], LLMConfig);