From 95ee4eef50e3058df5672a0dbce0af61e36314fc Mon Sep 17 00:00:00 2001 From: Yuya Date: Mon, 12 Aug 2024 03:31:53 +0900 Subject: [PATCH 1/3] Added table background color setting when dark theme --- debug_toolbar/static/debug_toolbar/css/toolbar.css | 1 + 1 file changed, 1 insertion(+) diff --git a/debug_toolbar/static/debug_toolbar/css/toolbar.css b/debug_toolbar/static/debug_toolbar/css/toolbar.css index 79f42ae56..8a19ab646 100644 --- a/debug_toolbar/static/debug_toolbar/css/toolbar.css +++ b/debug_toolbar/static/debug_toolbar/css/toolbar.css @@ -61,6 +61,7 @@ --djdt-font-color: #8393a7; --djdt-background-color: #1e293bff; --djdt-panel-content-background-color: #0f1729ff; + --djdt-panel-content-table-background-color: var(--djdt-background-color); --djdt-panel-title-background-color: #242432; --djdt-djdt-panel-content-table-strip-background-color: #324154ff; --djdt--highlighted-background-color: #2c2a7dff; From 220fa2ebb2791778d7072cea6da598a8816bc83c Mon Sep 17 00:00:00 2001 From: Yuya Date: Tue, 13 Aug 2024 02:03:05 +0900 Subject: [PATCH 2/3] Add line to changelog. --- docs/changes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/changes.rst b/docs/changes.rst index d4a81ffca..982727577 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -9,6 +9,7 @@ Pending ``FORCE_SCRIPT_NAME`` was set. * Increase opacity of show Debug Toolbar handle to improve accessibility. * Changed the ``RedirectsPanel`` to be async compatible. +* Fixed the Dark mode text needs higher contrast. 4.4.6 (2024-07-10) ------------------ From d79d04107b1946eb0fbdbbab4f8853da951c2f7c Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Tue, 13 Aug 2024 07:51:13 -0500 Subject: [PATCH 3/3] Update changelog --- docs/changes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index 982727577..b233dadc6 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -9,7 +9,7 @@ Pending ``FORCE_SCRIPT_NAME`` was set. * Increase opacity of show Debug Toolbar handle to improve accessibility. * Changed the ``RedirectsPanel`` to be async compatible. -* Fixed the Dark mode text needs higher contrast. +* Increased the contrast of text with dark mode enabled. 4.4.6 (2024-07-10) ------------------