mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
add nord color scheme
This commit is contained in:
parent
f3301c2e2c
commit
9c95244b42
@ -156,6 +156,7 @@ one of the following options to change the prompt colors.
|
||||
- `zenburn`. An adaptation of Zenburn.
|
||||
- `gruvbox`. An adaptation of gruvbox.
|
||||
- `dracula`. An adaptation of dracula.
|
||||
- `nord`. An adaptation of nord.
|
||||
|
||||
Some of these may not look right if your terminal does not support 24 bit color,
|
||||
in which case you can try one of the `terminal` schemes (below). However, if
|
||||
|
@ -480,6 +480,54 @@ function __bobthefish_colors -S -a color_scheme -d 'Define colors used by bobthe
|
||||
set -x color_virtualgo $cyan $bg --bold
|
||||
set -x color_desk $comment $bg --bold
|
||||
|
||||
case 'nord'
|
||||
set -l base00 2E3440
|
||||
set -l base01 3B4252
|
||||
set -l base02 434C5E
|
||||
set -l base03 4C566A
|
||||
set -l base04 D8DEE9
|
||||
set -l base05 E5E9F0
|
||||
set -l base06 ECEFF4
|
||||
set -l base07 8FBCBB
|
||||
set -l base08 88C0D0
|
||||
set -l base09 81A1C1
|
||||
set -l base0A 5E81AC
|
||||
set -l base0B BF616A
|
||||
set -l base0C D08770
|
||||
set -l base0D EBCB8B
|
||||
set -l base0E A3BE8C
|
||||
set -l base0F B48EAD
|
||||
|
||||
set -l colorfg $base00
|
||||
|
||||
set -x color_initial_segment_exit $base05 $base08 --bold
|
||||
set -x color_initial_segment_su $base05 $base0B --bold
|
||||
set -x color_initial_segment_jobs $base08 $base0D --bold
|
||||
|
||||
set -x color_path $base02 $base05
|
||||
set -x color_path_basename $base02 $base06 --bold
|
||||
set -x color_path_nowrite $base02 $base08
|
||||
set -x color_path_nowrite_basename $base02 $base08 --bold
|
||||
|
||||
set -x color_repo $base0E $colorfg
|
||||
set -x color_repo_work_tree $base02 $colorfg --bold
|
||||
set -x color_repo_dirty $base0B $colorfg
|
||||
set -x color_repo_staged $base0D $colorfg
|
||||
|
||||
set -x color_vi_mode_default $base08 $colorfg --bold
|
||||
set -x color_vi_mode_insert $base06 $colorfg --bold
|
||||
set -x color_vi_mode_visual $base07 $colorfg --bold
|
||||
|
||||
set -x color_vagrant $base02 $colorfg --bold
|
||||
set -x color_k8s $base02 $colorfg --bold
|
||||
set -x color_username $base02 $base0D --bold
|
||||
set -x color_hostname $base02 $base0D
|
||||
set -x color_rvm $base08 $colorfg --bold
|
||||
set -x color_nvm $base08 $colorfg --bold
|
||||
set -x color_virtualfish $base08 $colorfg --bold
|
||||
set -x color_virtualgo $base08 $colorfg --bold
|
||||
set -x color_desk $base08 $colorfg --bold
|
||||
|
||||
case '*' # default dark theme
|
||||
# light medium dark
|
||||
# ------ ------ ------
|
||||
|
Loading…
Reference in New Issue
Block a user