diff --git a/doc/zenbones.md b/doc/zenbones.md index 62b3fe6..4ff19d2 100644 --- a/doc/zenbones.md +++ b/doc/zenbones.md @@ -84,12 +84,12 @@ Default: 38. Percentage to lighten comments relative to Normal bg. See also #### g:zenbones_darken_non_text -Default: 22. Percentage to darken |hl-NonText| relative to Normal bg. See also +Default: 25. Percentage to darken |hl-NonText| relative to Normal bg. See also |lush-color-darken|. #### g:zenflesh_lighten_none_text -Default: 26. Percentage to lighten |hl-NonText| relative to Normal bg. See also +Default: 30. Percentage to lighten |hl-NonText| relative to Normal bg. See also |lush-color-darken|. #### g:zenbones_darken_line_nr diff --git a/lua/zenbones/specs/dark.lua b/lua/zenbones/specs/dark.lua index 7a56cc4..4140c0a 100644 --- a/lua/zenbones/specs/dark.lua +++ b/lua/zenbones/specs/dark.lua @@ -102,7 +102,7 @@ local function generate(p, opt) Visual { bg = p.fg.de(18).lightness(Normal.bg.l + 18) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection". - NonText { fg = Normal.bg.li(opt.lighten_non_text or 26) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. + NonText { fg = Normal.bg.li(opt.lighten_non_text or 30) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. SpecialKey { NonText, gui = "italic" }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace| Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars' EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|. diff --git a/lua/zenbones/specs/light.lua b/lua/zenbones/specs/light.lua index c800147..5cb7bee 100644 --- a/lua/zenbones/specs/light.lua +++ b/lua/zenbones/specs/light.lua @@ -102,7 +102,7 @@ local function generate(p, opt) Visual { bg = p.fg.lightness(Normal.bg.l - 8) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection". - NonText { fg = Normal.bg.da(opt.darken_non_text or 22) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. + NonText { fg = Normal.bg.da(opt.darken_non_text or 25) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. SpecialKey { NonText, gui = "italic" }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace| Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars' EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.