diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-09-16 20:32:25 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-09-16 20:32:25 +0200 |
| commit | 144915635bdfc90445321189914929a911fe77d4 (patch) | |
| tree | 20f77a976c19f9c8bd138cd3dce06a742acb5113 /Map/Presentation/Theme | |
| parent | f93215a7b37e065a0a52a852bb2c35d2a3d77b0b (diff) | |
Add search
Diffstat (limited to 'Map/Presentation/Theme')
| -rw-r--r-- | Map/Presentation/Theme/NSColor+theme.swift | 3 |
1 files changed, 3 insertions, 0 deletions
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 { |