743058096a
- 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
14 lines
204 B
CSS
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;
|
|
}
|
|
} |