diff options
| author | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:15:21 -0500 |
|---|---|---|
| committer | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:15:21 -0500 |
| commit | 699dc12b318722b0f29e4335dbb21ae66ae06bf4 (patch) | |
| tree | fce6934f1230bcc3e0c36374dac66aa75ed5de0e /lua/onedark | |
| parent | change cursorline (diff) | |
change cursorline and cursorcolumn to lighter
Diffstat (limited to 'lua/onedark')
| -rw-r--r-- | lua/onedark/theme.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/onedark/theme.lua b/lua/onedark/theme.lua index 39a0635..0aacb09 100644 --- a/lua/onedark/theme.lua +++ b/lua/onedark/theme.lua @@ -27,9 +27,9 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.black2 }) + hl(0, "CursorColumn", { fg = 'NONE', bg = c.black2 }) + hl(0, "ColorColumn", { fg = 'NONE', bg = c.black2 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) |