From 144915635bdfc90445321189914929a911fe77d4 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 16 Sep 2024 20:32:25 +0200 Subject: Add search --- Map/Presentation/Theme/NSColor+theme.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Map/Presentation/Theme') diff --git a/Map/Presentation/Theme/NSColor+theme.swift b/Map/Presentation/Theme/NSColor+theme.swift index 2b9b8f7..f1a046d 100644 --- a/Map/Presentation/Theme/NSColor+theme.swift +++ b/Map/Presentation/Theme/NSColor+theme.swift @@ -22,6 +22,9 @@ extension NSColor { static let number = NSColor(named: "Number") ?? .textColor static let option = NSColor(named: "Option") ?? .textColor static let symbol = NSColor(named: "Symbol") ?? .textColor + static let match = (NSColor(named: "Light Neutral Gray") ?? .textColor).withAlphaComponent(0.3) + static let highlightMatch = (NSColor(named: "Naples Yellow") ?? .textColor).withAlphaComponent( + 0.3) } struct ui { -- cgit