additional colors under admin control

This commit is contained in:
2026-06-29 22:31:37 +00:00
parent ee79662e5d
commit f62f8188bf
11 changed files with 42 additions and 0 deletions
+12
View File
@@ -55,6 +55,10 @@ interface ThemeColorState {
color_success: string;
color_danger: string;
color_info: string;
color_white: string;
color_light: string;
color_medium: string;
color_black: string;
[key: string]: string;
}
@@ -143,6 +147,10 @@ export class AdminComponent implements OnInit {
color_success: '#4a9e4f',
color_danger: '#c83030',
color_info: '#3a8abf',
color_white: '#ffffff',
color_light: '#f0ebe3',
color_medium: '#8a8580',
color_black: '#1a1816',
};
showShowForm = false;
@@ -417,6 +425,10 @@ export class AdminComponent implements OnInit {
color_success: config.color_success || this.themeDefaults.color_success,
color_danger: config.color_danger || this.themeDefaults.color_danger,
color_info: config.color_info || this.themeDefaults.color_info,
color_white: config.color_white || this.themeDefaults.color_white,
color_light: config.color_light || this.themeDefaults.color_light,
color_medium: config.color_medium || this.themeDefaults.color_medium,
color_black: config.color_black || this.themeDefaults.color_black,
};
this.themeSaveSuccess = '';
this.themeSaveError = '';