forked from shadowfacts/Tusker
Tweak non-pure-black dark mode colors
This commit is contained in:
parent
65ea72c07f
commit
99127b617b
|
@ -13,7 +13,7 @@ extension UIColor {
|
||||||
static let appBackground = UIColor { traitCollection in
|
static let appBackground = UIColor { traitCollection in
|
||||||
if case .dark = traitCollection.userInterfaceStyle,
|
if case .dark = traitCollection.userInterfaceStyle,
|
||||||
!traitCollection.pureBlackDarkMode {
|
!traitCollection.pureBlackDarkMode {
|
||||||
return UIColor(hue: 230/360, saturation: 20/100, brightness: 10/100, alpha: 1)
|
return UIColor(hue: 230/360, saturation: 23/100, brightness: 10/100, alpha: 1)
|
||||||
} else {
|
} else {
|
||||||
return .systemBackground
|
return .systemBackground
|
||||||
}
|
}
|
||||||
|
@ -23,9 +23,9 @@ extension UIColor {
|
||||||
if case .dark = traitCollection.userInterfaceStyle,
|
if case .dark = traitCollection.userInterfaceStyle,
|
||||||
!traitCollection.pureBlackDarkMode {
|
!traitCollection.pureBlackDarkMode {
|
||||||
if traitCollection.userInterfaceLevel == .elevated {
|
if traitCollection.userInterfaceLevel == .elevated {
|
||||||
return UIColor(hue: 230/360, saturation: 25/100, brightness: 10/100, alpha: 1)
|
return UIColor(hue: 230/360, saturation: 23/100, brightness: 10/100, alpha: 1)
|
||||||
} else {
|
} else {
|
||||||
return UIColor(hue: 230/360, saturation: 25/100, brightness: 5/100, alpha: 1)
|
return UIColor(hue: 230/360, saturation: 23/100, brightness: 5/100, alpha: 1)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return .secondarySystemBackground
|
return .secondarySystemBackground
|
||||||
|
|
Loading…
Reference in New Issue