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:
parent
4f8b69ab8b
commit
b2769b4963
10 changed files with 109 additions and 216 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue