Skip to content

Commit

Permalink
Use container background colour
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon-T committed Feb 27, 2025
1 parent 2b3f2f8 commit 058ed02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public class AboutHomeHandler: InternalSchemeResponse {
guard let url = request.url else { return nil }
let response = InternalSchemeHandler.response(forUrl: url)

let lightModeColour = UIColor.braveBackground.resolvedColor(
let lightModeColour = UIColor(braveSystemName: .containerBackground).resolvedColor(
with: .init(userInterfaceStyle: .light)
).toHexString()
let darkModeColour = UIColor.braveBackground.resolvedColor(
let darkModeColour = UIColor(braveSystemName: .containerBackground).resolvedColor(
with: .init(userInterfaceStyle: .dark)
).toHexString()

Expand Down

0 comments on commit 058ed02

Please sign in to comment.