From 7c214a6b6917e338d3b3c2edf98db28bc482d54c Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 27 Aug 2015 10:51:14 +0930 Subject: [PATCH] User lighter default theme color --- framework/core/src/Install/Console/DataFromUser.php | 4 ++-- framework/core/src/Install/Console/DefaultData.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/core/src/Install/Console/DataFromUser.php b/framework/core/src/Install/Console/DataFromUser.php index 4dc4ca923..05af4c9be 100644 --- a/framework/core/src/Install/Console/DataFromUser.php +++ b/framework/core/src/Install/Console/DataFromUser.php @@ -79,8 +79,8 @@ class DataFromUser implements ProvidesData 'mail_from' => 'noreply@' . preg_replace('/^www\./i', '', parse_url($baseUrl, PHP_URL_HOST)), 'theme_colored_header' => '0', 'theme_dark_mode' => '0', - 'theme_primary_color' => '#29415E', - 'theme_secondary_color' => '#29415E', + 'theme_primary_color' => '#4D698E', + 'theme_secondary_color' => '#4D698E', 'welcome_message' => 'This is beta software and you should not use it in production.', 'welcome_title' => 'Welcome to ' . $title, ]; diff --git a/framework/core/src/Install/Console/DefaultData.php b/framework/core/src/Install/Console/DefaultData.php index 2c267e925..9b790c24d 100644 --- a/framework/core/src/Install/Console/DefaultData.php +++ b/framework/core/src/Install/Console/DefaultData.php @@ -43,8 +43,8 @@ class DefaultData implements ProvidesData 'mail_from' => 'noreply@flarum.dev', 'theme_colored_header' => '0', 'theme_dark_mode' => '0', - 'theme_primary_color' => '#29415E', - 'theme_secondary_color' => '#29415E', + 'theme_primary_color' => '#4D698E', + 'theme_secondary_color' => '#4D698E', 'welcome_message' => 'This is beta software and you should not use it in production.', 'welcome_title' => 'Welcome to Development Forum', ];