Fix dark secondary color (#1565)

This commit is contained in:
Thomas Ricouard 2023-08-30 09:10:22 +02:00 committed by GitHub
parent bdce052dc7
commit e921f2cdd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@ public struct ConstellationDark: ColorSet {
public var scheme: ColorScheme = .dark
public var tintColor: Color = .init(hex: 0xFFD966)
public var primaryBackgroundColor: Color = .init(hex: 0x09192C)
public var secondaryBackgroundColor: Color = .init(hex: 0x00557E)
public var secondaryBackgroundColor: Color = .init(hex: 0x304c7a)
public var labelColor: Color = .init(hex: 0xE2E4E2)
public init() {}