From d2c65a748d9ae969e89a4c7f9bdff33420fb8083 Mon Sep 17 00:00:00 2001 From: Marius Mutu Date: Tue, 28 Apr 2026 17:43:03 +0000 Subject: [PATCH] fix(theme): border visible, shadow neutral, hero gradient teal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - --border: #e8f4f7 → #cbd5e1 (gray-300, vizibil pe fundal alb) - --shadow: albastru → neutral rgba(0,0,0,0.08) - --hero-gradient: alb pe alb → teal subtil (#e8f4f7 → white → #f0f9fb) Co-Authored-By: Claude Sonnet 4.6 --- professional-theme.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/professional-theme.css b/professional-theme.css index 29ec908..846191b 100644 --- a/professional-theme.css +++ b/professional-theme.css @@ -25,13 +25,13 @@ --muted: #f5f6f7 !important; /* Light gray muted */ --muted-foreground: #2c3e50 !important; /* Soft executive navy muted text */ - --border: #e8f2ff !important; /* Very light blue border */ + --border: #cbd5e1 !important; /* gray-300, visible on white */ --input: #ffffff !important; /* White input background */ --ring: #5288c4 !important; /* Soft professional blue focus ring */ /* Soft Professional Gradients - Gentle & Muted */ --navbar-bg: linear-gradient(135deg, #2c3e50, #4a7ba7) !important; /* Soft navy to gentle trust blue */ - --hero-gradient: linear-gradient(180deg, #fafbfc, #ffffff) !important; /* Soft executive white to pure white */ + --hero-gradient: linear-gradient(to bottom right, #e8f4f7, #ffffff, #f0f9fb) !important; /* Soft teal hero gradient */ --button-gradient: linear-gradient(90deg, #5288c4, #4a7ba7) !important; /* Soft professional blue to gentle trust blue */ --red-gradient: linear-gradient(90deg, #b85555, #c67b7b) !important; /* Muted red accent gradient */ @@ -51,7 +51,7 @@ --shadow-2xs: 0 1px 3px 0px rgba(82, 136, 196, 0.03) !important; --shadow-xs: 0 2px 6px 0px rgba(82, 136, 196, 0.04) !important; --shadow-sm: 0 3px 10px 0px rgba(82, 136, 196, 0.05), 0 1px 2px 0px rgba(82, 136, 196, 0.02) !important; - --shadow: 0 4px 16px 0px rgba(82, 136, 196, 0.06), 0 2px 4px 0px rgba(82, 136, 196, 0.03) !important; + --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04) !important; --shadow-md: 0 6px 20px 0px rgba(82, 136, 196, 0.08), 0 3px 6px 0px rgba(82, 136, 196, 0.04) !important; --shadow-lg: 0 8px 28px 0px rgba(82, 136, 196, 0.10), 0 4px 8px 0px rgba(82, 136, 196, 0.05) !important; --shadow-xl: 0 12px 36px 0px rgba(82, 136, 196, 0.12), 0 6px 12px 0px rgba(82, 136, 196, 0.06) !important;