You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
469 B
20 lines
469 B
// |
|
// ThemeManagerFrieBoltt.swift |
|
// FireBoltt |
|
// |
|
// Created by lemo. on 2020/3/7. |
|
// Copyright © 2020 Sheldon. All rights reserved. |
|
// |
|
|
|
import UIKit |
|
|
|
struct ThemeManagerFrieBoltt { |
|
|
|
static let tabBarColor: UIColor = .white |
|
static let commonBgColor: UIColor = .white |
|
static let bgColor: UIColor = kHexColor(0xFAFAFA) |
|
static let commonTextColor: UIColor = kHexColor(0x2A2A2A) |
|
|
|
static let navBarFont: UIFont = SystemMediumFont(18) |
|
|
|
}
|
|
|