From 9441070ff0fbcd4a29f0f965b8b090f59094263f Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Sat, 15 Jan 2022 11:55:31 +0100 Subject: [PATCH] fix: fixed monochrome color for Network chart (#784) --- Kit/types.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kit/types.swift b/Kit/types.swift index fab1982c..fff9fc08 100644 --- a/Kit/types.swift +++ b/Kit/types.swift @@ -122,7 +122,7 @@ extension Color: CaseIterable { public static var separator1: Color { return Color(key: "separator_1", value: "separator_1", additional: NSColor.black) } public static var systemAccent: Color { return Color(key: "system", value: "System accent", additional: NSColor.black) } - public static var monochrome: Color { return Color(key: "monochrome", value: "Monochrome accent", additional: NSColor.black) } + public static var monochrome: Color { return Color(key: "monochrome", value: "Monochrome accent", additional: NSColor.textColor) } public static var separator2: Color { return Color(key: "separator_2", value: "separator_2", additional: NSColor.black) }