minor fix on theming

This commit is contained in:
ryanzhao 2023-08-08 15:28:16 +10:00
parent 0e376d0d8a
commit c6af2dba54
1 changed files with 3 additions and 1 deletions

View File

@ -178,5 +178,7 @@ internal extension Color {
}
public extension Color {
static let primary: Color = ThemeManager.primaryColor.colorSwiftUI
static var primary: Color {
return Color(UIColor.primary)
}
}