Merge branch 'main' into one-themes

This commit is contained in:
Marshall Bowers 2023-11-13 18:16:45 -05:00
commit 53117eb5e5
34 changed files with 1984 additions and 1999 deletions

View file

@ -76,7 +76,10 @@ impl ThemeRegistry {
system: SystemColors::default(),
colors: theme_colors,
status: status_colors,
player: PlayerColors::default(),
player: match user_theme.appearance {
Appearance::Light => PlayerColors::light(),
Appearance::Dark => PlayerColors::dark(),
},
syntax: Arc::new(syntax_colors),
},
}