Skip to content

Commit

Permalink
Fix backgroundColor on dark color-scheme. (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
fummicc1 authored Jan 13, 2024
1 parent ba7814a commit 04e38a0
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,42 @@
"reference" : "secondarySystemBackgroundColor"
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "light"
}
],
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0xF0",
"green" : "0xF0",
"red" : "0xF0"
}
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0x0E",
"green" : "0x0E",
"red" : "0x0E"
}
},
"idiom" : "universal"
}
],
"info" : {
Expand Down

0 comments on commit 04e38a0

Please sign in to comment.