From f21eaea3bdb9a84433fe610b3c10580310f9bd13 Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Wed, 30 Aug 2023 09:08:05 +0200 Subject: [PATCH] Fix dark secondary color --- Packages/DesignSystem/Sources/DesignSystem/ColorSet.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/DesignSystem/Sources/DesignSystem/ColorSet.swift b/Packages/DesignSystem/Sources/DesignSystem/ColorSet.swift index 4fd55dfd..d240a099 100644 --- a/Packages/DesignSystem/Sources/DesignSystem/ColorSet.swift +++ b/Packages/DesignSystem/Sources/DesignSystem/ColorSet.swift @@ -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() {}