fix(ui): adjust default colors

This commit is contained in:
Aram Drevekenin 2022-04-13 15:23:42 +02:00
parent aae9ad95ec
commit 4f13307828
2 changed files with 2 additions and 2 deletions

View file

@ -104,7 +104,7 @@ fn color_elements(palette: Palette) -> ColoredElements {
unselected_styled_text: style!(background, palette.fg).bold(),
unselected_suffix_separator: style!(palette.fg, background),
disabled_prefix_separator: style!(background, palette.fg),
disabled_styled_text: style!(background, palette.fg).dimmed(),
disabled_styled_text: style!(background, palette.fg).dimmed().italic(),
disabled_suffix_separator: style!(palette.fg, background),
selected_single_letter_prefix_separator: style!(background, palette.green),
selected_single_letter_char_shortcut: style!(palette.red, palette.green).bold(),

View file

@ -59,7 +59,7 @@ pub mod colors {
pub const BRIGHT_GRAY: u8 = 245;
pub const RED: u8 = 88;
pub const ORANGE: u8 = 166;
pub const BLACK: u8 = 236;
pub const BLACK: u8 = 232;
pub const MAGENTA: u8 = 201;
pub const CYAN: u8 = 51;
pub const YELLOW: u8 = 226;