feat: improve light themes

This commit is contained in:
Maciej Sypien 2024-09-16 23:33:47 +02:00
parent 84253ae979
commit 8e93542cc2
No known key found for this signature in database
GPG key ID: 10BC01EDA6827DC8
4 changed files with 96 additions and 13 deletions

View file

@ -49,7 +49,7 @@ main() {
# shellcheck disable=1091
source "${CURRENT_DIR}/src/palette_gruvbox_light256.sh"
# shellcheck disable=1091
source "${CURRENT_DIR}/src/theme_gruvbox_light.sh"
source "${CURRENT_DIR}/src/theme_gruvbox_light256.sh"
;;
dark)
# shellcheck disable=1091
@ -80,7 +80,11 @@ main() {
)
case $_theme in
light | light256)
light256)
# light256 have slightly different colors placement then regular light 16-bit
theme_set_light256 "${theme_args[@]}"
;;
light)
theme_set_light "${theme_args[@]}"
;;
dark | dark256 | *)