From b50e767d4bd63590951c49d5e66d0363989eb67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20M=C3=A4lman?= Date: Wed, 2 Sep 2026 21:37:54 +0200 Subject: [PATCH] Update generate button gradient colors for improved aesthetics --- src/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style.css b/src/style.css index db5f34b..47e15dc 100644 --- a/src/style.css +++ b/src/style.css @@ -151,7 +151,7 @@ main { } .generate-button { - background: linear-gradient(135deg, #3BA3E5, #2E8BC7); + background: linear-gradient(135deg, #287DB0, #2475A7); color: white; border: none; padding: 16px 32px; @@ -165,7 +165,7 @@ main { } .generate-button:hover { - background: linear-gradient(135deg, #2E8BC7, #2574A8); + background: linear-gradient(135deg, #2475A7, #206A99); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59, 163, 229, 0.4); }