New Ligera (light) Theme (#990)

* Enhanced Light Theme

* New Login Screen

* Fix Appbar for sm screen

* Reverse Gradient

* Fix test error

* Fix color

* Fix Gradient

* Theme color change

* Fix playlist autocomp popup

* Rename theme

* Fix hover icon color
This commit is contained in:
Dnouv
2021-04-11 05:19:39 +05:30
committed by GitHub
parent efe8240c0a
commit ca9d42714f
4 changed files with 498 additions and 20 deletions
+14 -9
View File
@@ -16,15 +16,20 @@ import ActivityPanel from './ActivityPanel'
import UserMenu from './UserMenu'
import config from '../config'
const useStyles = makeStyles((theme) => ({
root: {
color: theme.palette.text.secondary,
},
active: {
color: theme.palette.text.primary,
},
icon: { minWidth: theme.spacing(5) },
}))
const useStyles = makeStyles(
(theme) => ({
root: {
color: theme.palette.text.secondary,
},
active: {
color: theme.palette.text.primary,
},
icon: { minWidth: theme.spacing(5) },
}),
{
name: 'NDAppBar',
}
)
const AboutMenuItem = forwardRef(({ onClick, ...rest }, ref) => {
const classes = useStyles(rest)