Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark mode conflicts with pygments #2096

Closed
jefftriplett opened this issue Mar 4, 2025 · 3 comments · Fixed by #2108 or #2111
Closed

Dark mode conflicts with pygments #2096

jefftriplett opened this issue Mar 4, 2025 · 3 comments · Fixed by #2108 or #2111

Comments

@jefftriplett
Copy link

While DDT served the right template and saved the day for me, Tim pointed out that dark mode conflicts with pygments and he asked me to open an issue. See the screenshot.

context: https://mastodon.social/@[email protected]/114105865490684530

Image

[Off topic] It was also pointed out in that thread that there was a Dracula theme for pygments in case that's a useful data point.

https://draculatheme.com/pygments

@matthiask
Copy link
Member

Thanks @andoriyaprashant

It seems that the issue hasn't been fixed; maybe you hadn't installed the pygments library and syntax highlighting wasn't active at all?

@matthiask matthiask reopened this Mar 19, 2025
@matthiask
Copy link
Member

matthiask commented Mar 19, 2025

I think you have to do something like the attached patch. Currently, the CSS has to be included twice -- once for the preference (media query) and once for the explicit switch, that would maybe be fixed also by only evaluating the media query in the JavaScript code*.

patch.txt

  • To spell it out, something like:
diff --git i/debug_toolbar/static/debug_toolbar/js/toolbar.js w/debug_toolbar/static/debug_toolbar/js/toolbar.js
index 077bc930..c0fa80fd 100644
--- i/debug_toolbar/static/debug_toolbar/js/toolbar.js
+++ w/debug_toolbar/static/debug_toolbar/js/toolbar.js
@@ -216,6 +216,8 @@ const djdt = {
         const userTheme = localStorage.getItem("djdt.user-theme");
         if (userTheme !== null) {
             djDebug.setAttribute("data-theme", userTheme);
+        } else if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
+            djDebug.setAttribute("data-theme", "dark")
         }
         // Adds the listener to the Theme Toggle Button
         $$.on(djDebug, "click", "#djToggleThemeButton", () => {

But maybe slightly nicer. The Django admin has a nice cycling behavior: https://github.com/django/django/blob/main/django/contrib/admin/static/admin/js/theme.js

@matthiask
Copy link
Member

Hey @andoriyaprashant

I want you to succeed, can I do anything to help? Maybe concentrate on what's in patch.txt first, the matchMedia stuff mentioned above can be cleaned up later.

matthiask added a commit to matthiask/django-debug-toolbar that referenced this issue Mar 31, 2025
matthiask added a commit to matthiask/django-debug-toolbar that referenced this issue Mar 31, 2025
Previously, if the system preference was dark mode and the user
explicitly selected the light theme, the @media block still interferred
with the styling. This is fixed by only evaluating the color scheme
preference when initializing the toolbar and later only looking at our
own selected theme.
matthiask added a commit to matthiask/django-debug-toolbar that referenced this issue Mar 31, 2025
Previously, if the system preference was dark mode and the user
explicitly selected the light theme, the @media block still interferred
with the styling. This is fixed by only evaluating the color scheme
preference when initializing the toolbar and later only looking at our
own selected theme.

Also, removed the DEFAULT_THEME setting; falling back to system defaults
seems much better to me.
matthiask added a commit that referenced this issue Apr 2, 2025
Previously, if the system preference was dark mode and the user
explicitly selected the light theme, the @media block still interferred
with the styling. This is fixed by only evaluating the color scheme
preference when initializing the toolbar and later only looking at our
own selected theme.

Also, removed the DEFAULT_THEME setting; falling back to system defaults
seems much better to me.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment