aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/syntax.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 1c7ba0ce23..613c9e6d63 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -5980,6 +5980,7 @@ static const char *highlight_init_both[] = {
NULL
};
+// Default colors only used with a light background.
static const char *highlight_init_light[] = {
"ColorColumn ctermbg=LightRed guibg=LightRed",
"CursorColumn ctermbg=LightGrey guibg=Grey90",
@@ -6013,6 +6014,7 @@ static const char *highlight_init_light[] = {
NULL
};
+// Default colors only used with a dark background.
static const char *highlight_init_dark[] = {
"ColorColumn ctermbg=DarkRed guibg=DarkRed",
"CursorColumn ctermbg=DarkGrey guibg=Grey40",