diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2018-08-17 19:52:23 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2018-08-17 19:52:23 +0300 |
commit | 8e966e3636ce7c7162b60763088252b7111985e5 (patch) | |
tree | a4e3275efcd4c8a85b3148b0df8143c5b2675192 /functions | |
parent | 69c69b9cd91d77178324a86d8924efccadaa7247 (diff) |
Change bright colors to old color codes
Before this, there was no difference in that colors, as we always used
the bright color codes.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/colors.zsh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/functions/colors.zsh b/functions/colors.zsh index 8da5e481..80abb6be 100755 --- a/functions/colors.zsh +++ b/functions/colors.zsh @@ -11,23 +11,23 @@ typeset -gAh __P9K_COLORS # use color names by default to allow dark/light themes to adjust colors based on names __P9K_COLORS=( black 000 - maroon 001 + red 001 green 002 - olive 003 - navy 004 - purple 005 - teal 006 - silver 007 + yellow 003 + blue 004 + magenta 005 + cyan 006 + white 007 grey 008 - red 009 + maroon 009 lime 010 - yellow 011 - blue 012 + olive 011 + navy 012 fuchsia 013 - magenta 013 + purple 013 aqua 014 - cyan 014 - white 015 + teal 014 + silver 015 grey0 016 navyblue 017 darkblue 018 |