lighten up menuItem background color

This commit is contained in:
Araxeus
2022-02-11 16:29:11 +02:00
parent 8263918033
commit dc928542f8

View File

@ -7,7 +7,7 @@ module.exports = () => {
let visible = !config.get("options.hideMenu"); let visible = !config.get("options.hideMenu");
const bar = new Titlebar({ const bar = new Titlebar({
backgroundColor: Color.fromHex("#050505"), backgroundColor: Color.fromHex("#050505"),
itemBackgroundColor: Color.fromHex("#121212"), itemBackgroundColor: Color.fromHex("#1d1d1d"),
svgColor: Color.WHITE, svgColor: Color.WHITE,
menu: visible ? undefined : null menu: visible ? undefined : null
}); });