]> git.r.bdr.sh - rbdr/map/blob - Map/Presentation/Theme/NSColor+theme.swift
d30332a0efa39849330c1881e53eaaf4f638899a
[rbdr/map] / Map / Presentation / Theme / NSColor+theme.swift
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 }
10
11 struct ui {
12 static let background = NSColor(named: "Background") ?? .windowBackgroundColor
13 }
14 }