StackOverflowTweaksTool is an extension for chromium based browsers and Firefox made for developers. It enables some UI customizations on any StackOverflow question page.
MIT License
24
stars
1
forks
source link
Fix correct answer highlighting when using system theme #10
This change fixes the correct answer highlighting when using 'System theme' option in Stack Overflow. Previously the isDarkTheme boolean would be wrong due to the lack of theme-dark class, so this now checks the preferred colour scheme if not explicitly set by using window.matchMedia("(prefers-color-scheme: dark)").
I have also added an event listener which trigger this update if the system theme changes.
This change fixes the correct answer highlighting when using 'System theme' option in Stack Overflow. Previously the
isDarkTheme
boolean would be wrong due to the lack oftheme-dark
class, so this now checks the preferred colour scheme if not explicitly set by usingwindow.matchMedia("(prefers-color-scheme: dark)")
.I have also added an event listener which trigger this update if the system theme changes.