mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
Add gruvbox light theme
This commit is contained in:
parent
626bd39b00
commit
12d5be5c86
@ -164,7 +164,7 @@ one of the following options to change the prompt colors.
|
||||
- `base16` (or `base16-dark`), `base16-light`. Dark and light variants of the
|
||||
default Base16 theme.
|
||||
- `zenburn`. An adaptation of Zenburn.
|
||||
- `gruvbox`. An adaptation of gruvbox.
|
||||
- `gruvbox`, `gruvbox-light`. An adaptation of gruvbox dark and light variants.
|
||||
- `dracula`. An adaptation of dracula.
|
||||
- `nord`. An adaptation of nord.
|
||||
|
||||
|
@ -482,6 +482,48 @@ function __bobthefish_colors -S -a color_scheme -d 'Define colors used by bobthe
|
||||
set -x color_desk $blue[2] $fg[2] --bold
|
||||
set -x color_nix $blue[2] $fg[2] --bold
|
||||
|
||||
case 'gruvbox-light'
|
||||
# light medium dark darkest
|
||||
# ------ ------ ------ -------
|
||||
set -l red 9d0006 cc241d
|
||||
set -l green 79740e 98971a
|
||||
set -l yellow b57614 d79921
|
||||
set -l aqua 427b58 689d6a
|
||||
set -l blue 076678 458588
|
||||
set -l grey a89984 928374
|
||||
set -l orange af3a03 d65d0e
|
||||
set -l fg 282828 3c3836 504945 7c6f64
|
||||
set -l bg d5c4a1 fbf1c7
|
||||
|
||||
set -x color_initial_segment_exit $red[1] $bg[2] --bold
|
||||
set -x color_initial_segment_su $fg[1] $green[2] --bold
|
||||
set -x color_initial_segment_jobs $fg[1] $aqua[2] --bold
|
||||
|
||||
set -x color_path $bg[1] $fg[2]
|
||||
set -x color_path_basename $bg[1] $fg[2] --bold
|
||||
set -x color_path_nowrite $red[1] $bg[2]
|
||||
set -x color_path_nowrite_basename $red[1] $bg[2] --bold
|
||||
|
||||
set -x color_repo $green[2] $fg[1]
|
||||
set -x color_repo_work_tree $bg[1] $fg[2] --bold
|
||||
set -x color_repo_dirty $orange[2] $bg[2]
|
||||
set -x color_repo_staged $yellow[1] $bg[1]
|
||||
|
||||
set -x color_vi_mode_default $fg[4] $bg[2] --bold
|
||||
set -x color_vi_mode_insert $blue[1] $bg[2] --bold
|
||||
set -x color_vi_mode_visual $yellow[1] $bg[2] --bold
|
||||
|
||||
set -x color_vagrant $blue[2] $fg[2] --bold
|
||||
set -x color_k8s $green[2] $fg[2] --bold
|
||||
set -x color_username $fg[3] $blue[2] --bold
|
||||
set -x color_hostname $fg[3] $blue[2]
|
||||
set -x color_rvm $red[2] $bg[2] --bold
|
||||
set -x color_nvm $green[1] $fg[2] --bold
|
||||
set -x color_virtualfish $blue[2] $fg[2] --bold
|
||||
set -x color_virtualgo $blue[2] $fg[2] --bold
|
||||
set -x color_desk $blue[2] $fg[2] --bold
|
||||
set -x color_nix $blue[2] $fg[2] --bold
|
||||
|
||||
case 'dracula' # https://draculatheme.com
|
||||
set -l bg 282a36
|
||||
set -l current_line 44475a
|
||||
|
@ -3,7 +3,7 @@ function bobthefish_display_colors -a color_scheme -d 'Print example prompt colo
|
||||
set -l color_schemes default light \
|
||||
solarized solarized-light \
|
||||
base16 base16-light \
|
||||
gruvbox zenburn \
|
||||
gruvbox gruvbox-light zenburn \
|
||||
dracula nord \
|
||||
terminal terminal-dark-white \
|
||||
terminal-light terminal-light-black \
|
||||
|
Loading…
Reference in New Issue
Block a user