Skip to content

Commit

Permalink
Change faded aqua to use terminal color 65
Browse files Browse the repository at this point in the history
Related to #60
  • Loading branch information
rbong committed Jun 1, 2019
1 parent 43ec687 commit a70cb07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ call s:Color('faded_green', ['#79740e', 100]) " 121-116-14
call s:Color('faded_yellow', ['#b57614', 136]) " 181-118-20
call s:Color('faded_blue', ['#076678', 24]) " 7-102-120
call s:Color('faded_purple', ['#8f3f71', 96]) " 143-63-113
call s:Color('faded_aqua', ['#427b58', 66]) " 66-123-88
call s:Color('faded_aqua', ['#427b58', 65]) " 66-123-88
call s:Color('faded_orange', ['#af3a03', 130]) " 175-58-3

" }}}
Expand Down
8 changes: 4 additions & 4 deletions gruvbox_256palette.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "${TERM%%-*}" = "screen" ] || [ "${TERM%%-*}" = "tmux" ]; then
printf "\033Ptmux;\033\033]4;136;rgb:b5/76/14\007\033\\"
printf "\033Ptmux;\033\033]4;24;rgb:07/66/78\007\033\\"
printf "\033Ptmux;\033\033]4;96;rgb:8f/3f/71\007\033\\"
printf "\033Ptmux;\033\033]4;66;rgb:42/7b/58\007\033\\"
printf "\033Ptmux;\033\033]4;65;rgb:42/7b/58\007\033\\"
printf "\033Ptmux;\033\033]4;130;rgb:af/3a/03\007\033\\"
else
printf "\033P\033]4;236;rgb:32/30/2f\007\033\\"
Expand Down Expand Up @@ -73,7 +73,7 @@ if [ "${TERM%%-*}" = "screen" ] || [ "${TERM%%-*}" = "tmux" ]; then
printf "\033P\033]4;136;rgb:b5/76/14\007\033\\"
printf "\033P\033]4;24;rgb:07/66/78\007\033\\"
printf "\033P\033]4;96;rgb:8f/3f/71\007\033\\"
printf "\033P\033]4;66;rgb:42/7b/58\007\033\\"
printf "\033P\033]4;65;rgb:42/7b/58\007\033\\"
printf "\033P\033]4;130;rgb:af/3a/03\007\033\\"
fi

Expand Down Expand Up @@ -112,7 +112,7 @@ elif [ "$TERM" = "fbterm" ]; then
printf "\033[3;136;181;118;20}"
printf "\033[3;24;7;102;120}"
printf "\033[3;96;143;63;113}"
printf "\033[3;66;66;123;88}"
printf "\033[3;65;66;123;88}"
printf "\033[3;130;175;58;3}"

elif [ "$TERM" != "linux" ] && [ "$TERM" != "vt100" ] && [ "$TERM" != "vt220" ]; then
Expand Down Expand Up @@ -151,6 +151,6 @@ elif [ "$TERM" != "linux" ] && [ "$TERM" != "vt100" ] && [ "$TERM" != "vt220" ];
printf "\033]4;136;rgb:b5/76/14\033\\"
printf "\033]4;24;rgb:07/66/78\033\\"
printf "\033]4;96;rgb:8f/3f/71\033\\"
printf "\033]4;66;rgb:42/7b/58\033\\"
printf "\033]4;65;rgb:42/7b/58\033\\"
printf "\033]4;130;rgb:af/3a/03\033\\"
fi
6 changes: 3 additions & 3 deletions gruvbox_256palette_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "${TERM%%-*}" = "screen" ] || [ "${TERM%%-*}" = "tmux" ]; then
printf "\033Ptmux;\033\033]4;136;rgb:a5/63/11\007\033\\"
printf "\033Ptmux;\033\033]4;24;rgb:0e/53/65\007\033\\"
printf "\033Ptmux;\033\033]4;96;rgb:7b/2b/5e\007\033\\"
printf "\033Ptmux;\033\033]4;66;rgb:35/6a/46\007\033\\"
printf "\033Ptmux;\033\033]4;65;rgb:35/6a/46\007\033\\"
printf "\033Ptmux;\033\033]4;130;rgb:9d/28/07\007\033\\"
else
printf "\033P\033]4;236;rgb:26/24/23\007\033\\"
Expand Down Expand Up @@ -73,7 +73,7 @@ if [ "${TERM%%-*}" = "screen" ] || [ "${TERM%%-*}" = "tmux" ]; then
printf "\033P\033]4;136;rgb:a5/63/11\007\033\\"
printf "\033P\033]4;24;rgb:0e/53/65\007\033\\"
printf "\033P\033]4;96;rgb:7b/2b/5e\007\033\\"
printf "\033P\033]4;66;rgb:35/6a/46\007\033\\"
printf "\033P\033]4;65;rgb:35/6a/46\007\033\\"
printf "\033P\033]4;130;rgb:9d/28/07\007\033\\"
fi
else
Expand Down Expand Up @@ -111,6 +111,6 @@ else
printf "\033]4;136;rgb:a5/63/11\033\\"
printf "\033]4;24;rgb:0e/53/65\033\\"
printf "\033]4;96;rgb:7b/2b/5e\033\\"
printf "\033]4;66;rgb:35/6a/46\033\\"
printf "\033]4;65;rgb:35/6a/46\033\\"
printf "\033]4;130;rgb:9d/28/07\033\\"
fi

0 comments on commit a70cb07

Please sign in to comment.