mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
18 lines
458 B
Swift
18 lines
458 B
Swift
//
|
|
// Colors.swift
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 11/1/20.
|
|
// Copyright © 2020 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension Color {
|
|
static let textColor = Color("TextColor")
|
|
static let textColorLightGray = Color(red: 0.6, green: 0.63, blue: 0.67)
|
|
static let widgetBackground = Color("WidgetBackground")
|
|
static let containerGreen = Color("ContainerGreen")
|
|
static let containerRed = Color("ContainerRed")
|
|
}
|