change base hue from 235 to 210
This commit is contained in:
@ -5,16 +5,16 @@ local hsl = lush.hsl -- We'll use hsl a lot so its nice to bind it separately
|
||||
local theme = lush(function()
|
||||
return {
|
||||
-- See: h highlight-groups
|
||||
Normal { bg = hsl(235, 25, 97), fg = hsl(235, 30, 20) },
|
||||
Normal { bg = hsl(210, 25, 97), fg = hsl(210, 30, 20) },
|
||||
CursorLine { bg = Normal.bg.da(4) },
|
||||
Visual { bg = hsl(235, 30, 75) },
|
||||
Comment { fg = hsl(235, 10, 50) },
|
||||
Visual { bg = hsl(210, 30, 75) },
|
||||
Comment { fg = hsl(210, 10, 50) },
|
||||
CursorColumn { CursorLine },
|
||||
LineNr { Comment, gui = "italic" },
|
||||
CursorLineNr { fg = hsl(235, 50, 30), bg = CursorLine.bg, gui = "italic" },
|
||||
CursorLineNr { fg = hsl(210, 50, 30), bg = CursorLine.bg, gui = "italic" },
|
||||
Search { bg = hsl(50, 15, 60), fg = Normal.fg },
|
||||
IncSearch { bg = hsl(130, 15, 60), fg = Normal.fg },
|
||||
String { fg = hsl(235, 50, 35) },
|
||||
String { fg = hsl(210, 50, 35) },
|
||||
PreProc { fg = hsl(300, 50, 35) },
|
||||
Statement { fg = hsl(10, 50, 35) },
|
||||
Type { fg = hsl(50, 50, 35) },
|
||||
|
Reference in New Issue
Block a user