-
+
{isOpen && (
{
{theme === 'dark' ? (
) : (
)}
diff --git a/frontend/src/index.css b/frontend/src/index.css
index 8c3f54a..1edd6a9 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -241,21 +241,13 @@ input:checked + .slider:before {
justify-content: center;
border-radius: 9999px;
border: 2px solid transparent;
- background-color: var(--custom-light);
+ background-color: var(--custom-blue);
padding: 0.5rem;
transition: all 0.5s ease-in-out;
}
.header-button:hover {
- background-color: var(--custom-dark-4);
-}
-
-.dark .header-button {
- background-color: var(--custom-dark-1);
-}
-
-.dark .header-button:hover {
- background-color: var(--custom-light);
+ background-color: var(--custom-blue-hover);
}
.deleted,
diff --git a/frontend/src/views/HomeView.jsx b/frontend/src/views/HomeView.jsx
index fab4ecf..7bee649 100644
--- a/frontend/src/views/HomeView.jsx
+++ b/frontend/src/views/HomeView.jsx
@@ -122,7 +122,7 @@ export const HomeView = () => {
)}
>
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index 6c713e7..7a4ea2b 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -25,13 +25,13 @@ export default {
},
colors: {
'custom-light': '#dee4e7',
- 'custom-dark-1': '#24273a',
- 'custom-dark-2': '#363a4f',
- 'custom-dark-3': '#6e738d',
- 'custom-dark-4': '#5b6078',
+ 'custom-dark-1': '#121212',
+ 'custom-dark-2': '#282828',
+ 'custom-dark-3': '#3f3f3f',
+ 'custom-dark-4': '#575757',
'custom-dark-error': '#ed8796',
'custom-blue': '#2196f3',
- 'custom-blue-hover': '#1976d2'
+ 'custom-blue-hover': '#0b5ea1'
}
}
},