27 lines
774 B
Swift
27 lines
774 B
Swift
//
|
|
// DamusColors.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-03-27.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
class DamusColors {
|
|
static let adaptableGrey = Color("DamusAdaptableGrey")
|
|
static let adaptableBlack = Color("DamusAdaptableBlack")
|
|
static let white = Color("DamusWhite")
|
|
static let black = Color("DamusBlack")
|
|
static let brown = Color("DamusBrown")
|
|
static let yellow = Color("DamusYellow")
|
|
static let lightGrey = Color("DamusLightGrey")
|
|
static let mediumGrey = Color("DamusMediumGrey")
|
|
static let darkGrey = Color("DamusDarkGrey")
|
|
static let green = Color("DamusGreen")
|
|
static let purple = Color("DamusPurple")
|
|
static let deepPurple = Color("DamusDeepPurple")
|
|
static let blue = Color("DamusBlue")
|
|
}
|
|
|