Files
matrix-frontend/global.css
T
StarAppeal 743058096a feat: Improve dark mode support and splash screen handling across app
- Add dark mode background to splash and global styles
- Replace LoadingScreen with SplashScreenComponent for unified splash handling
- Ensure navigation and paper themes sync with dark mode
- Set initial theme based on system preference
- Apply background color to navigation containers and scenes
2025-12-27 16:09:15 +01:00

14 lines
204 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #121212 !important;
}
}