diff --git a/src/App.js b/src/App.js index ab8b6368..f23b7b6a 100644 --- a/src/App.js +++ b/src/App.js @@ -18,7 +18,6 @@ function App() { const recordsPerPage = 20; const currentUrl = window.location.pathname; - useEffect(() => { const fetchData = async (file) => { try { diff --git a/src/components/ErrorPage/ErrorPage.css b/src/components/ErrorPage/ErrorPage.css index b5f17524..bf6d3d9c 100644 --- a/src/components/ErrorPage/ErrorPage.css +++ b/src/components/ErrorPage/ErrorPage.css @@ -7,7 +7,7 @@ .error-page-content { text-align: center; - color: #fff; + color: var(--text-color); } .error-page-content h1 { diff --git a/src/components/NoResultFound/NoResultFound.css b/src/components/NoResultFound/NoResultFound.css index b328051e..0cc89b2b 100644 --- a/src/components/NoResultFound/NoResultFound.css +++ b/src/components/NoResultFound/NoResultFound.css @@ -9,7 +9,7 @@ margin-bottom: 1.5rem; padding: 1rem; height: auto; - color: #fff; + color: var(--text-color); } .no-result-card .top-container { diff --git a/src/components/Pagination/Pagination.css b/src/components/Pagination/Pagination.css index 8a2d0026..c13fb2a8 100644 --- a/src/components/Pagination/Pagination.css +++ b/src/components/Pagination/Pagination.css @@ -17,7 +17,7 @@ } .pagination-text { - color: white; + color: var(--text-color); text-decoration: none; font-family: 'Space Mono', monospace, sans-serif; font-size: 1rem; diff --git a/src/components/Profile/Profile.css b/src/components/Profile/Profile.css index d1b523df..0d3aaa8f 100644 --- a/src/components/Profile/Profile.css +++ b/src/components/Profile/Profile.css @@ -7,11 +7,13 @@ .profile-card { border-radius: 10px; - background: #1e2a47; + background: var(--secondary-color); margin-bottom: 1.5rem; padding: 1rem 1rem 0rem 1rem; height: auto; - color: #fff; + box-shadow: + 0 20px 25px -5px rgba(0, 0, 0, 0.1), + 0 10px 10px -5px rgba(0, 0, 0, 0.04); } .profile-card .top-container { @@ -59,11 +61,11 @@ } .skills-container::-webkit-scrollbar-track { - background: #1e2a47; + background: var(--secondary-color); } .skills-container::-webkit-scrollbar-thumb { - background: rgba(20, 29, 47, 0.5); + background: var(--primary-color); border-radius: 5px; } @@ -76,6 +78,7 @@ height: 30px; cursor: default; display: inline; + color: #fff; } .profile-link a { diff --git a/src/components/Search/Search.css b/src/components/Search/Search.css index cb446772..96a35d60 100644 --- a/src/components/Search/Search.css +++ b/src/components/Search/Search.css @@ -13,12 +13,12 @@ width: 100%; height: 3rem; border-radius: 6px; - border: 2px solid rgba(194, 183, 183, 0.1); - background: rgba(20, 29, 47, 1); + border: 2px solid var(--border-color); + background: var(--primary-color); padding: 0.25rem 0.8rem; font-size: 1rem; outline: none; - color: #fff; + color: var(--text-color); font-family: 'Space Mono', sans-serif; } @@ -27,7 +27,6 @@ margin-right: 10px; font-size: 1.25rem; cursor: pointer; - color: #fff; } .search-icon:hover { diff --git a/src/components/Sidebar/Sidebar.css b/src/components/Sidebar/Sidebar.css index 389b81f9..174d976c 100644 --- a/src/components/Sidebar/Sidebar.css +++ b/src/components/Sidebar/Sidebar.css @@ -8,14 +8,15 @@ left: 0; width: 20rem; height: 90vh; - border-right: 2px solid rgba(194, 183, 183, 0.1); + border-right: 2px solid var(--border-color); } -.logo-title { +.header { display: flex; align-items: center; gap: 10px; height: 3rem; + margin-bottom: 0.5rem; } .title { @@ -25,7 +26,7 @@ } .title .dev { - color: #fff; + color: var(--text-color); } .title .find { @@ -37,12 +38,12 @@ } .headline { - color: #fff; + color: var(--text-color); } .description a { text-decoration: underline; - color: #fff; + color: var(--text-color); transition: color 0.2s ease; } @@ -68,13 +69,33 @@ text-decoration: none; display: inline-block; font-size: 14px; + border: 2px solid #00a6fb; } .link_button:hover { - background-color: white; + background-color: transparent; color: #00a6fb; } +.theme { + margin-left: auto; +} + +.theme-button { + width: 42px; + height: 42px; + border-radius: 8px; + color: var(--text-color); + border: solid 2px var(--border-color); + background-color: var(--secondary-color); + transition: all 0.2s ease; +} + +.theme-button:hover { + color: #00a6fb; + border: solid 2px #00a6fb; +} + @media screen and (max-width: 768px) { .sidebar { position: relative; diff --git a/src/components/Sidebar/Sidebar.jsx b/src/components/Sidebar/Sidebar.jsx index c06a8731..86251a89 100644 --- a/src/components/Sidebar/Sidebar.jsx +++ b/src/components/Sidebar/Sidebar.jsx @@ -1,14 +1,16 @@ import React from 'react'; import './Sidebar.css'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCode } from '@fortawesome/free-solid-svg-icons'; +import { faCode, faMoon, faSun } from '@fortawesome/free-solid-svg-icons'; +import useTheme from '../../hooks/useTheme'; function Sidebar() { + const { theme, toogleTheme } = useTheme(); return (