Update default branding palette for tenants and guests

This commit is contained in:
Codex Agent
2026-01-15 09:32:51 +01:00
parent 738af5f76f
commit 9d1cf016d3
15 changed files with 42 additions and 42 deletions

View File

@@ -100,8 +100,8 @@ export default function PublicGalleryPage(): React.ReactElement | null {
}
const palette = state.meta.branding.palette ?? {};
const primary = palette.primary ?? state.meta.branding.primary_color ?? '#f43f5e';
const secondary = palette.secondary ?? state.meta.branding.secondary_color ?? '#fb7185';
const primary = palette.primary ?? state.meta.branding.primary_color ?? '#FF5A5F';
const secondary = palette.secondary ?? state.meta.branding.secondary_color ?? '#FFF8F5';
const background = palette.background ?? state.meta.branding.background_color ?? '#ffffff';
const surface = palette.surface ?? state.meta.branding.surface_color ?? background;
const mode = state.meta.branding.mode ?? 'auto';