From 41eb8cef8e1806f25b26c322edcc7c9a7ea8fe66 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Mon, 29 Nov 2021 17:20:29 +0100 Subject: [PATCH] fix: adjusted menu background color for dark themes (#727) --- Stats/Views/Settings.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stats/Views/Settings.swift b/Stats/Views/Settings.swift index dc7c9cd7..56a4c2ed 100644 --- a/Stats/Views/Settings.swift +++ b/Stats/Views/Settings.swift @@ -411,7 +411,7 @@ private class MenuView: NSView { public func activate() { NotificationCenter.default.post(name: .openModuleSettings, object: nil, userInfo: ["module": self.title]) - self.layer?.backgroundColor = .init(gray: 0.1, alpha: 0.4) + self.layer?.backgroundColor = .init(gray: 0.01, alpha: 0.25) self.active = true }