From f90dad51c38b57eaf2905e641673706efbede648 Mon Sep 17 00:00:00 2001 From: Alecto Irene Perez Date: Mon, 1 Nov 2021 18:10:52 -0600 Subject: [PATCH 1/2] 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 From 29c2fd508851185751f182ccea01adb1171a0a9e Mon Sep 17 00:00:00 2001 From: Alecto Irene Perez Date: Tue, 2 Nov 2021 00:16:43 -0600 Subject: [PATCH 2/2] Increase contrast of cyan Cyan is commonly used to display moved sections of text when viewing a git diff on the command line: the moved-from section is magenta, and the moved-to section is cyan. This commit increases the contrast of Cyan in the Nord Light theme to better cover these use cases, while still maintaining it's distinguishability as Cyan. Signed-off-by: Alecto Irene Perez --- themes/nord-light.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/nord-light.sh b/themes/nord-light.sh index 472efb3..241013c 100755 --- a/themes/nord-light.sh +++ b/themes/nord-light.sh @@ -7,7 +7,7 @@ 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_07="#00B1BE" #cyan export COLOR_08="#B3B3B3" #white export COLOR_09="#3E89A1" #lightBlack