18 lines
375 B
Swift
18 lines
375 B
Swift
import SwiftUI
|
|
|
|
enum ColorPalette {
|
|
|
|
static let tagBackground = Color(r: 9, g: 62, b: 103)
|
|
|
|
static let tagForeground = Color(r: 96, g: 186, b: 255)
|
|
|
|
static let listBackground = Color(r: 2, g: 15, b: 26)
|
|
|
|
static let postBackground = Color(r: 4, g: 31, b: 52)
|
|
|
|
static let postText = Color(r: 221, g: 221, b: 221)
|
|
|
|
static let postDate = tagForeground
|
|
}
|
|
|