From f0c706833d55aec94ec7c364066d1c41ac24c455 Mon Sep 17 00:00:00 2001 From: rojebd <132220348+rojebd@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:54:56 -0700 Subject: [PATCH] makes the theme not transparent by default Makes the theme not transparent by default but users can set it transparent if they want to --- runtime/themes/voxed.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime/themes/voxed.toml b/runtime/themes/voxed.toml index c00c47908..f507a091b 100644 --- a/runtime/themes/voxed.toml +++ b/runtime/themes/voxed.toml @@ -47,10 +47,9 @@ label = "honey" # TODO: diferentiate doc comment # concat (ERROR) @error.syntax and "MISSING ;" selectors for errors -# NOTE: bg is empty so it is transparent on the terminal -# if you want the bg to not be transparent rename give bg -# the same value as fg and remove fg :) -"ui.background" = { fg = "#25262B", bg = "" } +# NOTE: If you want the background transparent set bg to empty +# bg = "" +"ui.background" = { fg = "#25262B", bg = "#25262B" } "ui.background.separator" = { fg = "sglow" } "ui.linenr" = { fg = "light-grey", modifiers = ["italic"] } "ui.linenr.selected" = { fg = "bpink", modifiers = ["bold"] }