From c05e320665525a24cd13ba75f24b2052068ea220 Mon Sep 17 00:00:00 2001 From: rosslh Date: Thu, 19 Feb 2026 16:10:43 -0800 Subject: [PATCH] style(branding): replace Coolify purple and yellow with MapleDeploy palette Replace #6b16ed (Coolify purple) with #d52b1e (MapleDeploy red) and #fcd452 (Coolify yellow) with #fde047 (Tailwind yellow-300) across all form focus states, dirty indicators, chart colors, and theme tokens. Also fix warning color scale to use standard Tailwind yellow values. --- config/constants.php | 2 +- config/livewire.php | 2 +- resources/css/app.css | 6 +++--- resources/css/utilities.css | 17 +++++++++-------- .../views/components/forms/datalist.blade.php | 12 ++++++------ .../views/components/forms/input.blade.php | 4 ++-- .../views/components/forms/select.blade.php | 2 +- .../views/components/forms/textarea.blade.php | 10 +++++----- .../application/deployment/index.blade.php | 4 ++-- .../livewire/project/shared/metrics.blade.php | 4 ++-- .../views/livewire/server/charts.blade.php | 4 ++-- 11 files changed, 34 insertions(+), 33 deletions(-) diff --git a/config/constants.php b/config/constants.php index ce590d46f..b31957f2c 100644 --- a/config/constants.php +++ b/config/constants.php @@ -3,7 +3,7 @@ return [ // MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default 'coolify' => [ - 'version' => '4.0.0-beta.463.6', + 'version' => '4.0.0-beta.463.7', 'helper_version' => '1.0.12', 'realtime_version' => '1.0.10', 'self_hosted' => env('SELF_HOSTED', true), diff --git a/config/livewire.php b/config/livewire.php index 716739b17..0775a5cb2 100644 --- a/config/livewire.php +++ b/config/livewire.php @@ -118,7 +118,7 @@ 'navigate' => [ 'show_progress_bar' => true, - 'progress_bar_color' => '#fcd452', + 'progress_bar_color' => '#fde047', ], /* diff --git a/resources/css/app.css b/resources/css/app.css index 538ab92ae..fd8c81ddc 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -19,13 +19,13 @@ @theme { --font-display: 'Overlock', sans-serif; --color-base: #1c1917; - --color-warning: #fcd452; + --color-warning: #fde047; --color-warning-50: #fefce8; --color-warning-100: #fef9c3; --color-warning-200: #fef08a; --color-warning-300: #fde047; - --color-warning-400: #fcd452; - --color-warning-500: #facc15; + --color-warning-400: #facc15; + --color-warning-500: #eab308; --color-warning-600: #ca8a04; --color-warning-700: #a16207; --color-warning-800: #854d0e; diff --git a/resources/css/utilities.css b/resources/css/utilities.css index 02be0c0c4..6a882af73 100644 --- a/resources/css/utilities.css +++ b/resources/css/utilities.css @@ -40,11 +40,11 @@ @utility input-sticky { } &:focus-visible { - box-shadow: inset 4px 0 0 #6b16ed, inset 0 0 0 1px #e5e5e5; + box-shadow: inset 4px 0 0 #d52b1e, inset 0 0 0 1px #e5e5e5; } &:where(.dark, .dark *):focus-visible { - box-shadow: inset 4px 0 0 #fcd452, inset 0 0 0 1px #242424; + box-shadow: inset 4px 0 0 #fde047, inset 0 0 0 1px #242424; } } @@ -82,11 +82,11 @@ @utility input { @apply focus-visible:outline-none; &:focus-visible { - box-shadow: inset 4px 0 0 #6b16ed, inset 0 0 0 2px #e5e5e5; + box-shadow: inset 4px 0 0 #d52b1e, inset 0 0 0 2px #e5e5e5; } &:where(.dark, .dark *):focus-visible { - box-shadow: inset 4px 0 0 #fcd452, inset 0 0 0 2px #242424; + box-shadow: inset 4px 0 0 #fde047, inset 0 0 0 2px #242424; } &:read-only { @@ -113,11 +113,11 @@ @utility select { } &:focus-visible { - box-shadow: inset 4px 0 0 #6b16ed, inset 0 0 0 2px #e5e5e5; + box-shadow: inset 4px 0 0 #d52b1e, inset 0 0 0 2px #e5e5e5; } &:where(.dark, .dark *):focus-visible { - box-shadow: inset 4px 0 0 #fcd452, inset 0 0 0 2px #242424; + box-shadow: inset 4px 0 0 #fde047, inset 0 0 0 2px #242424; } } @@ -269,7 +269,8 @@ @utility description { } @utility bg-coollabs-gradient { - @apply from-purple-500 via-pink-500 to-red-500 bg-linear-to-r; + /* MapleDeploy branding */ + @apply from-red-700 via-red-500 to-red-400 bg-linear-to-r; } @utility text-helper { @@ -333,7 +334,7 @@ @utility log-warning { } @utility log-debug { - @apply bg-purple-500/10 dark:bg-purple-500/15; + @apply bg-stone-500/10 dark:bg-stone-500/15; } @utility log-info { diff --git a/resources/views/components/forms/datalist.blade.php b/resources/views/components/forms/datalist.blade.php index 1d9a3b263..bc005aef5 100644 --- a/resources/views/components/forms/datalist.blade.php +++ b/resources/views/components/forms/datalist.blade.php @@ -99,12 +99,12 @@ {{-- Unified Input Container with Tags Inside --}}
+ wire:dirty.class="[box-shadow:inset_4px_0_0_#d52b1e,inset_0_0_0_2px_#e5e5e5] dark:[box-shadow:inset_4px_0_0_#fde047,inset_0_0_0_2px_#242424]"> {{-- Selected Tags Inside Input --}}