blob: d30332a0efa39849330c1881e53eaaf4f638899a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import AppKit
extension NSColor {
struct syntax {
static let vertex = NSColor(named: "Vertex") ?? .textColor
static let number = NSColor(named: "Number") ?? .textColor
static let option = NSColor(named: "Option") ?? .textColor
static let symbol = NSColor(named: "Symbol") ?? .textColor
}
struct ui {
static let background = NSColor(named: "Background") ?? .windowBackgroundColor
}
}
|