From 3755213010bb46ac7f7529a70a5d33038edd869c Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Thu, 15 Jan 2026 09:38:24 +0100 Subject: [PATCH] Align demo seed branding defaults --- app/Console/Commands/SeedDemoSwitcherTenants.php | 4 ++-- database/seeders/DemoEventSeeder.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Console/Commands/SeedDemoSwitcherTenants.php b/app/Console/Commands/SeedDemoSwitcherTenants.php index 2b2943f..e4c3b61 100644 --- a/app/Console/Commands/SeedDemoSwitcherTenants.php +++ b/app/Console/Commands/SeedDemoSwitcherTenants.php @@ -357,8 +357,8 @@ class SeedDemoSwitcherTenants extends Command 'settings' => [ 'branding' => [ 'logo_url' => null, - 'primary_color' => '#1D4ED8', - 'secondary_color' => '#0F172A', + 'primary_color' => '#FF5A5F', + 'secondary_color' => '#FFF8F5', 'font_family' => 'Inter, sans-serif', ], 'features' => [ diff --git a/database/seeders/DemoEventSeeder.php b/database/seeders/DemoEventSeeder.php index f46f66a..acb11c6 100644 --- a/database/seeders/DemoEventSeeder.php +++ b/database/seeders/DemoEventSeeder.php @@ -46,9 +46,9 @@ class DemoEventSeeder extends Seeder 'collection_slugs' => ['wedding-classics-2025'], 'task_slug_prefix' => 'wedding-', 'branding' => [ - 'primary_color' => '#f43f5e', - 'secondary_color' => '#fb7185', - 'background_color' => '#fff7f4', + 'primary_color' => '#FF5A5F', + 'secondary_color' => '#FFF8F5', + 'background_color' => '#FFF8F5', 'font_family' => 'Playfair Display, serif', ], ],