16 lines
324 B
Swift
16 lines
324 B
Swift
//
|
|
// VDSColor.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 12/16/22.
|
|
//
|
|
|
|
import Foundation
|
|
import VDSColorTokens
|
|
import UIKit
|
|
|
|
extension VDSColor {
|
|
public static let elementsLowContrastOnLight = UIColor.init(hexString: "#D8DADA")
|
|
public static let elementsLowContrastOnDark = UIColor.init(hexString: "#333333")
|
|
}
|