diff --git a/CHANGELOG.md b/CHANGELOG.md index 30fd13e..78f3f4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Skip unplayable tracks - Queue UI correctly plays a track when clicking on an already selected item +- Swap foreground and background colors for command line input ## [1.2.2] diff --git a/src/ui/layout.rs b/src/ui/layout.rs index b07a22e..6603d78 100644 --- a/src/ui/layout.rs +++ b/src/ui/layout.rs @@ -44,8 +44,8 @@ impl Layout { configuration: Arc, ) -> Self { let style = ColorStyle::new( - ColorType::Color(*theme.palette.custom("cmdline_bg").unwrap()), ColorType::Color(*theme.palette.custom("cmdline").unwrap()), + ColorType::Color(*theme.palette.custom("cmdline_bg").unwrap()), ); let mut command_line_input = EditView::new().filler(" ").style(style);