]>
Commit | Line | Data |
---|---|---|
be897af3 | 1 | // Copyright (C) 2024 Rubén Beltrán del Río |
98f09799 | 2 | |
be897af3 RBR |
3 | // This program is free software: you can redistribute it and/or modify |
4 | // it under the terms of the GNU General Public License as published by | |
5 | // the Free Software Foundation, either version 3 of the License, or | |
6 | // (at your option) any later version. | |
98f09799 | 7 | |
be897af3 RBR |
8 | // This program is distributed in the hope that it will be useful, |
9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | // GNU General Public License for more details. | |
98f09799 | 12 | |
be897af3 RBR |
13 | // You should have received a copy of the GNU General Public License |
14 | // along with this program. If not, see https://map.tranquil.systems. | |
fdb4633d RBR |
15 | import AppKit |
16 | ||
17 | extension NSColor { | |
be897af3 | 18 | struct Syntax { |
fdb4633d RBR |
19 | static let vertex = NSColor(named: "Vertex") ?? .textColor |
20 | static let number = NSColor(named: "Number") ?? .textColor | |
21 | static let option = NSColor(named: "Option") ?? .textColor | |
22 | static let symbol = NSColor(named: "Symbol") ?? .textColor | |
14491563 RBR |
23 | static let match = (NSColor(named: "Light Neutral Gray") ?? .textColor).withAlphaComponent(0.3) |
24 | static let highlightMatch = (NSColor(named: "Naples Yellow") ?? .textColor).withAlphaComponent( | |
25 | 0.3) | |
fdb4633d | 26 | } |
e2c37ac1 | 27 | |
be897af3 | 28 | struct UI { |
e2c37ac1 RBR |
29 | static let background = NSColor(named: "Background") ?? .windowBackgroundColor |
30 | } | |
fdb4633d | 31 | } |