Use window background for cosmic color schemes (#102)

This commit is contained in:
Jeremy Soller 2024-01-31 11:20:15 -07:00
parent 470437e55a
commit c0d7fed185
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
2 changed files with 12 additions and 6 deletions

View file

@ -476,7 +476,7 @@ fn cosmic_dark() -> Colors {
// Set special colors
colors[NamedColor::Foreground] = colors[NamedColor::BrightWhite];
colors[NamedColor::Background] = colors[NamedColor::Black];
// Background comes from theme settings: colors[NamedColor::Background] = colors[NamedColor::Black];
colors[NamedColor::Cursor] = colors[NamedColor::BrightWhite];
colors[NamedColor::BrightForeground] = colors[NamedColor::BrightWhite];
@ -517,7 +517,7 @@ fn cosmic_light() -> Colors {
// Set special colors
colors[NamedColor::Foreground] = colors[NamedColor::Black];
colors[NamedColor::Background] = colors[NamedColor::BrightWhite];
// Background comes from theme settings: colors[NamedColor::Background] = colors[NamedColor::BrightWhite];
colors[NamedColor::Cursor] = colors[NamedColor::Black];
colors[NamedColor::BrightForeground] = colors[NamedColor::BrightBlack];