From 11942fab8369f9a9ffe49266f6a74d0c669363ed Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Sun, 22 Feb 2026 15:53:28 -0500 Subject: [PATCH] shorten dark mode transition from 0.3s to 0.2s Co-Authored-By: Claude Opus 4.6 --- groups/home/bootstrap5/home1.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/groups/home/bootstrap5/home1.css b/groups/home/bootstrap5/home1.css index 6055d5a..f2ea459 100644 --- a/groups/home/bootstrap5/home1.css +++ b/groups/home/bootstrap5/home1.css @@ -23,7 +23,7 @@ color: var(--text); background-color: var(--bg); overflow-x: hidden; - transition: background-color 0.3s ease, color 0.3s ease; + transition: background-color 0.2s ease, color 0.2s ease; } a, @@ -564,7 +564,7 @@ display: flex; align-items: center; justify-content: center; - transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; + transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; background-color: var(--bg); } #theme-toggle:hover { @@ -583,13 +583,13 @@ /* card body dark mode background */ .card-body { background-color: var(--bg); - transition: background-color 0.3s ease; + transition: background-color 0.2s ease; } /* dropdown menu dark mode background */ .dropdown-menu { background-color: var(--bg-surface); - transition: background-color 0.3s ease; + transition: background-color 0.2s ease; } /* media queries */