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

@@ -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: () => '🙂',
}));