From dc928542f868112142699224707e0d65d48d3f7d Mon Sep 17 00:00:00 2001 From: Araxeus <78568641+Araxeus@users.noreply.github.com> Date: Fri, 11 Feb 2022 16:29:11 +0200 Subject: [PATCH] lighten up menuItem background color --- plugins/in-app-menu/front.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/in-app-menu/front.js b/plugins/in-app-menu/front.js index 1bd8d4be..aa025f3d 100644 --- a/plugins/in-app-menu/front.js +++ b/plugins/in-app-menu/front.js @@ -7,7 +7,7 @@ module.exports = () => { let visible = !config.get("options.hideMenu"); const bar = new Titlebar({ backgroundColor: Color.fromHex("#050505"), - itemBackgroundColor: Color.fromHex("#121212"), + itemBackgroundColor: Color.fromHex("#1d1d1d"), svgColor: Color.WHITE, menu: visible ? undefined : null });