From 745cb177518b0261c6caecfe92bc03d379074f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Mon, 4 Dec 2023 21:50:03 +0100 Subject: [PATCH] change base hue from 235 to 210 --- lua/lualine/themes/lupan.lua | 32 ++++++++++++++++---------------- lua/lupancolors/lupan.lua | 16 ++++++++-------- lua/lupancolors/lupanlight.lua | 10 +++++----- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/lua/lualine/themes/lupan.lua b/lua/lualine/themes/lupan.lua index daa038b..a16a4e0 100644 --- a/lua/lualine/themes/lupan.lua +++ b/lua/lualine/themes/lupan.lua @@ -5,31 +5,31 @@ local colors; if vim.o.background == "dark" then colors = { - bg = hsl(235, 15, 20).hex, - fg = hsl(235, 30, 85).hex, - linebg = hsl(235, 15, 40).hex, - linefg = hsl(235, 30, 85).hex, - black = hsl(235, 15, 5).hex, - normal = hsl(235, 50, 75).hex, + bg = hsl(210, 15, 20).hex, + fg = hsl(210, 30, 85).hex, + linebg = hsl(210, 15, 40).hex, + linefg = hsl(210, 30, 85).hex, + black = hsl(210, 15, 5).hex, + normal = hsl(210, 50, 75).hex, insert = hsl(130, 50, 75).hex, - visual = hsl(235, 30, 30).hex, + visual = hsl(210, 30, 30).hex, replace = hsl(10, 50, 75).hex, command = hsl(50, 50, 75).hex, - gray = hsl(235, 10, 60).hex, + gray = hsl(210, 10, 60).hex, } else colors = { - bg = hsl(235, 15, 20).hex, - fg = hsl(235, 30, 85).hex, - linebg = hsl(235, 15, 80).hex, - linefg = hsl(235, 15, 20).hex, - black = hsl(235, 15, 5).hex, - normal = hsl(235, 50, 75).hex, + bg = hsl(210, 15, 20).hex, + fg = hsl(210, 30, 85).hex, + linebg = hsl(210, 15, 80).hex, + linefg = hsl(210, 15, 20).hex, + black = hsl(210, 15, 5).hex, + normal = hsl(210, 50, 75).hex, insert = hsl(130, 50, 75).hex, - visual = hsl(235, 30, 30).hex, + visual = hsl(210, 30, 30).hex, replace = hsl(10, 50, 75).hex, command = hsl(50, 50, 75).hex, - gray = hsl(235, 10, 60).hex, + gray = hsl(210, 10, 60).hex, } end diff --git a/lua/lupancolors/lupan.lua b/lua/lupancolors/lupan.lua index 4793fcb..fdd09bb 100644 --- a/lua/lupancolors/lupan.lua +++ b/lua/lupancolors/lupan.lua @@ -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, 15, 20), fg = hsl(235, 30, 85) }, + Normal { bg = hsl(210, 15, 20), fg = hsl(210, 20, 75) }, CursorLine { bg = Normal.bg.li(10) }, - Visual { bg = hsl(235, 30, 30) }, - Comment { fg = hsl(235, 10, 60) }, + Visual { bg = hsl(210, 30, 30) }, + Comment { fg = hsl(210, 10, 60) }, CursorColumn { CursorLine }, LineNr { Comment, gui = "italic" }, - CursorLineNr { fg = hsl(235, 50, 75), bg = CursorLine.bg, gui = "italic" }, + CursorLineNr { fg = hsl(210, 50, 75), bg = CursorLine.bg, gui = "italic" }, Search { bg = hsl(50, 15, 60), fg = Normal.bg }, IncSearch { bg = hsl(130, 15, 60), fg = Normal.bg }, - String { fg = hsl(235, 50, 75) }, + String { fg = hsl(210, 50, 75) }, PreProc { fg = hsl(300, 50, 75) }, Statement { fg = hsl(10, 50, 75) }, Type { fg = hsl(50, 50, 75) }, @@ -22,7 +22,7 @@ local theme = lush(function() Function { fg = hsl(130, 50, 75) }, Operator { fg = hsl(270, 50, 75) }, Special { fg = hsl(325, 50, 75) }, - Constant { fg = hsl(195, 50, 75) }, + Constant { fg = hsl(185, 50, 75) }, NonText { fg = Normal.bg.li(10) }, DiffAdd { Function }, DiffDelete { Special }, @@ -32,7 +32,7 @@ local theme = lush(function() MoreMsg { Function, gui = "bold" }, Question { Function, gui = "bold" }, TelescopeSelection { CursorLine }, - WhichKeyFloat { bg = hsl(235, 15, 30) }, + WhichKeyFloat { bg = hsl(210, 15, 30) }, DiagnosticError { fg = hsl(0, 80, 75) }, DiagnosticWarn { fg = hsl(25, 80, 75) }, DiagnosticInfo { fg = hsl(195, 80, 75) }, @@ -47,7 +47,7 @@ local theme = lush(function() Conceal { bg = Normal.bg.li(40).de(30) }, SpellBad { fg = Special.fg, gui = "underline" }, SpellRare { fg = Type.fg, gui = "underline" }, - SpellLocal { fg = Constant.fg, gui = "underline" }, + SpellLocal { fg = DiagnosticInfo.fg, gui = "underline" }, SpellCap { fg = String.fg, gui = "underline" }, } end) diff --git a/lua/lupancolors/lupanlight.lua b/lua/lupancolors/lupanlight.lua index 49d71d3..494f7b2 100644 --- a/lua/lupancolors/lupanlight.lua +++ b/lua/lupancolors/lupanlight.lua @@ -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) },