From 0e9e41eb80d60de55101f0a9ab1a87351b9f3521 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 14 Jun 2025 18:36:16 +0000 Subject: [PATCH] =?UTF-8?q?Style:=20Am=C3=A9liore=20le=20contraste=20des?= =?UTF-8?q?=20couleurs=20en=20mode=20clair?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajuste plusieurs variables CSS dans style.css pour augmenter la lisibilité en mode clair, en réponse à vos retours. Modifications principales : - Assombrit --header-bg et --table-header-bg pour un meilleur contraste avec le texte blanc. - Ajuste --button-primary-bg, --button-primary-hover-bg, --button-secondary-bg, et --button-secondary-hover-bg pour améliorer la lisibilité du texte blanc sur les boutons. --- app/public/css/style.css | 12 ++++++------ app/src/Views/shared/header.php | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/app/public/css/style.css b/app/public/css/style.css index 976be67..1ac01a7 100644 --- a/app/public/css/style.css +++ b/app/public/css/style.css @@ -4,19 +4,19 @@ --text-color: #333; --container-bg: #fff; --container-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - --header-bg: #0056b3; + --header-bg: #004a99; --header-text: #fff; --nav-bg: #e2e2e2; --nav-link-color: #0056b3; --nav-link-hover-bg: #d1d1d1; --table-border-color: #ddd; - --table-header-bg: #0056b3; + --table-header-bg: #004a99; --table-header-text: #fff; --table-row-even-bg: #f2f2f2; - --button-primary-bg: #007bff; - --button-primary-hover-bg: #0056b3; - --button-secondary-bg: #6c757d; - --button-secondary-hover-bg: #5a6268; + --button-primary-bg: #0056b3; + --button-primary-hover-bg: #004a99; + --button-secondary-bg: #5a6268; + --button-secondary-hover-bg: #495057; --button-danger-bg: #dc3545; --button-danger-hover-bg: #bd2130; --status-revoked-color: red; diff --git a/app/src/Views/shared/header.php b/app/src/Views/shared/header.php index 1d7dd91..20736fb 100644 --- a/app/src/Views/shared/header.php +++ b/app/src/Views/shared/header.php @@ -13,7 +13,6 @@ -