diff --git a/src/App.css b/src/App.css index c695958f9b..a48b309b46 100644 --- a/src/App.css +++ b/src/App.css @@ -109,6 +109,10 @@ body { background-color: #3A506B !important; } +.bg-yinmn-blue-light{ + background-color:#2f4157; +} + .bg-azure{ background-color: #007BFF !important; } @@ -130,7 +134,11 @@ body { } .text-dark-green{ - background-color: #193D31 !important; + color: #193D31 !important; +} + +.text-custom-grey{ + color: rgb(192, 192, 192) !important; } .box-shadow-dark { diff --git a/src/components/Header/Header.css b/src/components/Header/Header.css index 30d4ee6bcc..12b5520a06 100644 --- a/src/components/Header/Header.css +++ b/src/components/Header/Header.css @@ -58,6 +58,10 @@ align-items: center; } +.dropdown-item-hover:hover{ + background-color: #2f4157 !important; +} + @media (max-width: 1400px) { .nav-links{ flex-direction: column !important; diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx index 960516d091..c41c5ecc04 100644 --- a/src/components/Header/Header.jsx +++ b/src/components/Header/Header.jsx @@ -263,6 +263,8 @@ export function Header(props) { } }, [lastDismissed, userId, userDashboardProfile]); + const fontColor = darkMode ? 'text-white dropdown-item-hover' : ''; + return (