set disabled color

This commit is contained in:
Olivier Gagnon
2021-09-26 21:37:22 -04:00
parent b5abbbc240
commit d6584386ff
3 changed files with 18 additions and 1 deletions
+3
View File
@@ -129,6 +129,7 @@ interface IDefaultSettings {
cha: string;
int: string;
rep: string;
disabled: string;
};
}
@@ -199,6 +200,7 @@ export const defaultSettings: IDefaultSettings = {
cha: "#a671d1",
int: "#6495ed",
rep: "#faffdf",
disabled: "#66cfbc",
},
};
@@ -258,6 +260,7 @@ export const Settings: ISettings & ISelfInitializer & ISelfLoading = {
cha: defaultSettings.theme.cha,
int: defaultSettings.theme.int,
rep: defaultSettings.theme.rep,
disabled: defaultSettings.theme.disabled,
},
init() {
Object.assign(Settings, defaultSettings);