Skip to content

Commit

Permalink
Update the default background color of the default theme for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisNikolic committed Dec 10, 2024
1 parent 9c47a5e commit a0f2655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/PrimerSDK/Classes/Core/Constants/Colors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public struct PrimerColors {
private static let lightModeGreen = PrimerColor(red: 52, green: 199, blue: 89)

private static let darkModeBlack = PrimerColor(red: 255, green: 255, blue: 255)
private static let darkModeWhite = PrimerColor(red: 28, green: 28, blue: 30)
private static let darkModeWhite = PrimerColor(red: 23, green: 22, blue: 25)
private static let darkModeGray = PrimerColor(red: 142, green: 142, blue: 147)
private static let darkModeLightGray = PrimerColor(red: 58, green: 58, blue: 60)
private static let darkModeLightGray = PrimerColor(red: 44, green: 44, blue: 47)
private static let darkModeRed = PrimerColor(red: 255, green: 69, blue: 58)
private static let darkModeBlue = PrimerColor(red: 10, green: 132, blue: 255)
private static let darkModeYellow = PrimerColor(red: 255, green: 214, blue: 10)
Expand Down

0 comments on commit a0f2655

Please sign in to comment.