杨锴
2024-08-14 909e20941e45f8712c012db602034b47da0bfdb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  Themes.swift
//  XQMuse
//
//  Created by 无故事王国 on 2024/8/12.
//
 
import UIKit
 
 
// MARK: -- Font
let Def_NavFont:UIFont = UIFont(name: "PingFangSC-Medium", size: 18) ?? .systemFont(ofSize: 18, weight: .medium)
 
func Def_SourceHanSansCN_Regular(fontSize:Double)->UIFont{
                return UIFont(name: "SourceHanSansCN-Regular", size: fontSize) ?? .systemFont(ofSize: fontSize,weight: .medium)
}
 
func Def_Agenda_Light(fontSize:Double)->UIFont{
                return UIFont(name: "Agenda-Light", size: fontSize) ?? .systemFont(ofSize: fontSize)
}
 
 
// MARK: -- Color
let Def_ThemeColor:UIColor = UIColor(hexStr: "#8DA178")
let Def_NavFontColor = UIColor(hexStr: "#252A23")