From 4f13307828efac419898378f00994116290a5e05 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Wed, 13 Apr 2022 15:23:42 +0200 Subject: [PATCH] fix(ui): adjust default colors --- default-plugins/status-bar/src/main.rs | 2 +- zellij-utils/src/shared.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default-plugins/status-bar/src/main.rs b/default-plugins/status-bar/src/main.rs index 27e549d1..7c741853 100644 --- a/default-plugins/status-bar/src/main.rs +++ b/default-plugins/status-bar/src/main.rs @@ -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(), diff --git a/zellij-utils/src/shared.rs b/zellij-utils/src/shared.rs index 239b1f57..750f8d50 100644 --- a/zellij-utils/src/shared.rs +++ b/zellij-utils/src/shared.rs @@ -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;