Skip to content

Commit

Permalink
update banner colour (#2318)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414235014887631/1206297687428378/f

Description: Update banner colour
  • Loading branch information
SabrinaTardio authored Jan 10, 2024
1 parent 2d563fa commit a8010b1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "0.500",
"blue" : "0xFF",
"green" : "0xDA",
"red" : "0xCC"
}
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "0.500",
"blue" : "0x69",
"green" : "0x39",
"red" : "0x24"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,10 @@ extension SyncSettingsView {
Image("Info-Color-16")
Text(UserText.syncRollOutBannerDescription)
.font(.system(size: 12))
.foregroundColor(.black)
.foregroundColor(.primary)
}
.padding()
.background(RoundedRectangle(cornerRadius: 8).foregroundColor(.blue10))
.background(RoundedRectangle(cornerRadius: 8).foregroundColor(Color("RolloutBannerBackground")))
.padding(.bottom, 10)
}
}
Expand Down

0 comments on commit a8010b1

Please sign in to comment.