feat: add support for dark and light 16-bit color palettes (#34)

* feat: add dark 16-bit colors palette

* feat: add light 16-bit colors palette

* feat: remove unnecessary files

* docs: update names

* chore: add changelog entry
This commit is contained in:
Maciej Sypien 2024-09-16 18:36:48 +02:00 committed by Maciej Sypien
parent 4f8b69ab8b
commit b2769b4963
No known key found for this signature in database
GPG key ID: 10BC01EDA6827DC8
10 changed files with 109 additions and 216 deletions

View file

@ -39,13 +39,25 @@ main() {
_statusbar_alpha=$(tmux_get_option "${TMUX_GRUVBOX_STATUSBAR_ALPHA}" "${DEFAULT_STATUSBAR_ALPHA}")
case "$_theme" in
light | light256)
light)
# shellcheck disable=1091
source "${CURRENT_DIR}/src/palette_gruvbox_light.sh"
# shellcheck disable=1091
source "${CURRENT_DIR}/src/theme_gruvbox_light.sh"
;;
light256)
# shellcheck disable=1091
source "${CURRENT_DIR}/src/palette_gruvbox_light256.sh"
# shellcheck disable=1091
source "${CURRENT_DIR}/src/theme_gruvbox_light.sh"
;;
dark | dark256 | *)
dark)
# shellcheck disable=1091
source "${CURRENT_DIR}/src/palette_gruvbox_dark.sh"
# shellcheck disable=1091
source "${CURRENT_DIR}/src/theme_gruvbox_dark.sh"
;;
dark256 | *)
# shellcheck disable=1091
source "${CURRENT_DIR}/src/palette_gruvbox_dark256.sh"
# shellcheck disable=1091