diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-09-05 20:54:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-05 20:54:22 +0300 |
commit | 96f3c1da10e9b1b834402da7978e448436e8d000 (patch) | |
tree | b283c264572d9749631af54d307b5e477e2edee8 /functions/colors.zsh | |
parent | e207dec8de036112fcac8b8face41e87e1d0b7ec (diff) | |
parent | 94897a40f0775e54e181e98fd152d981ca188e98 (diff) |
Merge pull request #959 from dritter/fix_color_values
[Discussion] Change bright colors to old version
Diffstat (limited to 'functions/colors.zsh')
-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 |