From 25492b448d36faa22927da07217dc1254c2c2f49 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Wed, 13 Apr 2022 15:36:04 +0200 Subject: [PATCH] fix(ui): adjust default bg color --- zellij-utils/src/shared.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zellij-utils/src/shared.rs b/zellij-utils/src/shared.rs index 750f8d50..295d8c5b 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 = 232; + pub const BLACK: u8 = 16; pub const MAGENTA: u8 = 201; pub const CYAN: u8 = 51; pub const YELLOW: u8 = 226;