From f90dad51c38b57eaf2905e641673706efbede648 Mon Sep 17 00:00:00 2001 From: Alecto Irene Perez Date: Mon, 1 Nov 2021 18:10:52 -0600 Subject: [PATCH] Make Nord Light More Nord Update Nord Light theme to improve usability and make the black and grey colors a dark blue. Regarding usability: Prior to this change, it was extremely difficult to read green text with Nord Light because the green was such a light color that the text was hard to discern against the background. Green text is common in the output of commands like `git diff`, and many zsh themes use green text to indicate the existence of a command. This commit uses a darker green that's still in line with the theme. Regarding update to black and grey: using dark blue and blue-grey colors for Black and Grey respectively is more in line with the style choices made by the Nord theme. Signed-off-by: Alecto Irene Perez --- themes/nord-light.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/nord-light.sh b/themes/nord-light.sh index ac65fee..472efb3 100755 --- a/themes/nord-light.sh +++ b/themes/nord-light.sh @@ -1,16 +1,16 @@ #!/usr/bin/env bash # ====================CONFIG THIS =============================== # -export COLOR_01="#353535" #black +export COLOR_01="#003B4E" #black export COLOR_02="#E64569" #red -export COLOR_03="#89D287" #green +export COLOR_03="#069F5F" #green export COLOR_04="#DAB752" #yellow export COLOR_05="#439ECF" #blue export COLOR_06="#D961DC" #magenta export COLOR_07="#64AAAF" #cyan export COLOR_08="#B3B3B3" #white -export COLOR_09="#535353" #lightBlack +export COLOR_09="#3E89A1" #lightBlack export COLOR_10="#E4859A" #lightRed export COLOR_11="#A2CCA1" #lightGreen export COLOR_12="#E1E387" #lightYellow