]>
Commit | Line | Data |
---|---|---|
fdb4633d RBR |
1 | import AppKit |
2 | ||
3 | extension NSColor { | |
4 | struct syntax { | |
5 | static let vertex = NSColor(named: "Vertex") ?? .textColor | |
6 | static let number = NSColor(named: "Number") ?? .textColor | |
7 | static let option = NSColor(named: "Option") ?? .textColor | |
8 | static let symbol = NSColor(named: "Symbol") ?? .textColor | |
9 | } | |
e2c37ac1 RBR |
10 | |
11 | struct ui { | |
12 | static let background = NSColor(named: "Background") ?? .windowBackgroundColor | |
13 | } | |
fdb4633d | 14 | } |