Add dark mode component overrides, fix sidebar dark mode styling, update theme toggle to emoji-only

This commit is contained in:
Omnicscient
2025-12-17 21:02:10 +03:00
parent 7735491092
commit fcbd05edec
3 changed files with 193 additions and 4 deletions

View File

@@ -295,12 +295,12 @@ public class MainController {
if (isDarkMode) {
// Switch to light mode
styleClass.remove("dark");
themeToggleButton.setText("🌙 Dark Mode");
themeToggleButton.setText("🌙");
isDarkMode = false;
} else {
// Switch to dark mode
styleClass.add("dark");
themeToggleButton.setText("☀️ Light Mode");
themeToggleButton.setText("🌞");
isDarkMode = true;
}
}