From 87f6e14c5d24e548df72895e39d84c6463ef73e7 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 11 Aug 2024 13:41:08 +0100 Subject: [PATCH] style(wezterm.lua): update background color to black for better readability and consistency --- .config/wezterm/wezterm.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index 055d881..e95a273 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -13,17 +13,17 @@ config.cursor_blink_rate = 0 config.font = wezterm.font("FiraCode Nerd Font", { weight = 450, stretch = "Normal", style = "Normal" }) config.font_size = 14 config.window_background_opacity = .9 --- background = { --- { --- source = { --- Color = "#1a1b26", --- }, --- width = "100%", --- height = "100%", --- opacity = 0.90, --- --- } --- }, +config.background = { + { + source = { + Color = "#000000", + }, + width = "100%", + height = "100%", + opacity = 0.90, + + } +} config.window_padding = { left = 3, right = 3,