Update default branding palette for tenants and guests
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

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

View File

@@ -7,8 +7,8 @@ import { MissionActionCard } from '../HomePage';
vi.mock('../../context/EventBrandingContext', () => ({
useEventBranding: () => ({
branding: {
primaryColor: '#f43f5e',
secondaryColor: '#fb7185',
primaryColor: '#FF5A5F',
secondaryColor: '#FFF8F5',
buttons: { radius: 12 },
typography: {},
fontFamily: 'Montserrat',
@@ -18,7 +18,7 @@ vi.mock('../../context/EventBrandingContext', () => ({
vi.mock('../../lib/emotionTheme', () => ({
getEmotionTheme: () => ({
gradientBackground: 'linear-gradient(135deg, #f43f5e, #fb7185)',
gradientBackground: 'linear-gradient(135deg, #FF5A5F, #FFF8F5)',
}),
getEmotionIcon: () => '🙂',
}));