Added ThemeToggle

Added Footer
This commit is contained in:
Rahaf
2025-12-23 22:00:31 +03:00
parent 914078190f
commit 3ff54588ba
6 changed files with 203 additions and 57 deletions

View File

@ -0,0 +1,26 @@
.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);
}