Merge pull request #332 from getmaxun/proxy-ui

feat: match toggle mode icon color in dark mode to theme
This commit is contained in:
Karishma Shukla
2025-01-09 17:05:34 +05:30
committed by GitHub

View File

@@ -108,7 +108,7 @@ export const NavBar: React.FC<NavBarProps> = ({
<IconButton
onClick={toggleTheme}
sx={{
color: darkMode ? '#ffffff' : '#333333',
color: darkMode ? '#ffffff' : '#0000008A',
'&:hover': {
color: '#ff00c3'
}