21 lines
493 B
Swift
21 lines
493 B
Swift
import SwiftUI
|
|
|
|
enum ColorPalette {
|
|
|
|
static let tagBackground = Color(r: 188, g: 188, b: 188) // Color(r: 9, g: 62, b: 103)
|
|
|
|
static let tagForeground = Color.primary // Color(r: 96, g: 186, b: 255)
|
|
|
|
static let listBackground = Color(r: 2, g: 15, b: 26)
|
|
|
|
static let postBackground = Color(r: 222, g: 222, b: 222) // Color(r: 4, g: 31, b: 52)
|
|
|
|
static let postText = Color(r: 221, g: 221, b: 221)
|
|
|
|
static let postDate = tagForeground
|
|
|
|
static let link = Color.blue
|
|
|
|
}
|
|
|