Files
REXNT/src/App.css
Rahaf 3ff54588ba Added ThemeToggle
Added Footer
2025-12-23 22:00:31 +03:00

26 lines
399 B
CSS

.App {
min-height: 100vh;
background-color: white;
color: #1e293b;
transition: background-color 0.3s ease, color 0.3s ease;
}
.dark .App {
background-color: #0f172a;
color: #f1f5f9;
}
:root {
--app-bg: white;
--app-text: #1e293b;
}
.dark {
--app-bg: #0f172a;
--app-text: #f1f5f9;
}
.App {
background-color: var(--app-bg);
color: var(--app-text);
}