From eaaefc236d1c0f3b0c6309bbb86a29067b5c515f Mon Sep 17 00:00:00 2001 From: siduck76 Date: Mon, 16 Aug 2021 19:04:09 +0530 Subject: [PATCH] add one-light (#243) --- lua/highlights.lua | 11 +++++------ lua/themes/chadracula.lua | 2 ++ lua/themes/everforest.lua | 2 ++ lua/themes/gruvchad.lua | 2 ++ lua/themes/javacafe.lua | 2 ++ lua/themes/mountaineer.lua | 2 ++ lua/themes/norchad.lua | 2 ++ lua/themes/one-light.lua | 35 +++++++++++++++++++++++++++++++++++ lua/themes/onedark.lua | 2 ++ lua/themes/tokyonight.lua | 2 ++ lua/themes/tomorrow-night.lua | 2 ++ 11 files changed, 58 insertions(+), 6 deletions(-) create mode 100644 lua/themes/one-light.lua diff --git a/lua/highlights.lua b/lua/highlights.lua index 02e70c2b..3b6499b2 100644 --- a/lua/highlights.lua +++ b/lua/highlights.lua @@ -9,11 +9,8 @@ local black = colors.black local black2 = colors.black2 local one_bg = colors.one_bg local one_bg2 = colors.one_bg2 -local one_bg3 = colors.one_bg3 -local light_grey = colors.light_grey local grey = colors.grey local grey_fg = colors.grey_fg -local grey_fg2 = colors.grey_fg2 local red = colors.red local line = colors.line local green = colors.green @@ -21,6 +18,8 @@ local nord_blue = colors.nord_blue local blue = colors.blue local yellow = colors.yellow local purple = colors.purple +local pmenu_bg = colors.pmenu_bg +local folder_bg = colors.folder_bg -- for guifg , bg @@ -51,7 +50,7 @@ fg("EndOfBuffer", black) -- Pmenu bg("Pmenu", one_bg) bg("PmenuSbar", one_bg2) -bg("PmenuSel", green) +bg("PmenuSel", pmenu_bg) bg("PmenuThumb", nord_blue) -- inactive statuslines as thin splitlines @@ -67,8 +66,8 @@ fg_bg("DiffChange", grey_fg, "none") fg_bg("DiffModified", nord_blue, "none") -- NvimTree -fg("NvimTreeFolderIcon", blue) -fg("NvimTreeFolderName", blue) +fg("NvimTreeFolderIcon", folder_bg) +fg("NvimTreeFolderName", folder_bg) fg("NvimTreeGitDirty", red) fg("NvimTreeOpenedFolderName", blue) fg("NvimTreeEmptyFolderName", blue) diff --git a/lua/themes/chadracula.lua b/lua/themes/chadracula.lua index 63af4941..236de877 100644 --- a/lua/themes/chadracula.lua +++ b/lua/themes/chadracula.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#2b2d39", lightbg = "#343642", lightbg2 = "#2f313d", + pmenu_bg = "#b389ef", + folder_bg = "#BD93F9" } return colors diff --git a/lua/themes/everforest.lua b/lua/themes/everforest.lua index 37ba4b61..baa715a9 100644 --- a/lua/themes/everforest.lua +++ b/lua/themes/everforest.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#2e363c", lightbg = "#3d454b", lightbg2 = "#333b41", + pmenu_bg = "#83c092", + folder_bg = "#7fbbb3" } return colors diff --git a/lua/themes/gruvchad.lua b/lua/themes/gruvchad.lua index 4c1ee5a4..37a88fda 100644 --- a/lua/themes/gruvchad.lua +++ b/lua/themes/gruvchad.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#252829", lightbg = "#2d3139", lightbg2 = "#262a32", + pmenu_bg = "#89b482", + folder_bg = "#6d8dad" } return colors diff --git a/lua/themes/javacafe.lua b/lua/themes/javacafe.lua index 227b9a44..6633653b 100644 --- a/lua/themes/javacafe.lua +++ b/lua/themes/javacafe.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#181f26", lightbg = "#222930", lightbg2 = "#1d242b", + pmenu_bg = "#ef8891", + folder_bg = "#99aee5", } return colors diff --git a/lua/themes/mountaineer.lua b/lua/themes/mountaineer.lua index af858736..f26d227d 100644 --- a/lua/themes/mountaineer.lua +++ b/lua/themes/mountaineer.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#1e242a", lightbg = "#2d3339", lightbg2 = "#252b31", + pmenu_bg = "#8aac8b", + folder_bg = "#6b8bab" } return colors diff --git a/lua/themes/norchad.lua b/lua/themes/norchad.lua index 47d723aa..a1a6a539 100644 --- a/lua/themes/norchad.lua +++ b/lua/themes/norchad.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#333945", lightbg = "#3f4551", lightbg2 = "#393f4b", + pmenu_bg = "#A3BE8C", + folder_bg = "#7797b7" } return colors diff --git a/lua/themes/one-light.lua b/lua/themes/one-light.lua new file mode 100644 index 00000000..d287dfdb --- /dev/null +++ b/lua/themes/one-light.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#54555b", + darker_black = "#f5f5f5", + black = "#fafafa", -- nvim bg + black2 = "#f1f1f1", + one_bg = "#f0f0f0", -- real bg of onedark + one_bg2 = "#ececec", + one_bg3 = "#e7e7e7", + grey = "#cbcbcb", + grey_fg = "#c6c6c6", + grey_fg2 = "#b7b7b7", + light_grey = "#b7b7b7", + red = "#e6676e", + baby_pink = "#F07178", + pink = "#ff75a0", + line = "#e9e9e9", -- for lines like vertsplit + green = "#7b90c7", + vibrant_green = "#7eca9c", + nord_blue = "#5e5f65", + blue = "#28a2f4", + yellow = "#7e7e7e", + sun = "#dea95f", + purple = "#a28dcd", + dark_purple = "#8e79b9", + teal = "#519ABA", + orange = "#FF6A00", + cyan = "#a3b8ef", + statusline_bg = "#f0f0f0", + lightbg = "#d6d6d6", + lightbg2 = "#5e5f65", + pmenu_bg = "#5e5f65", + folder_bg = "#6C6C6C" +} + +return colors diff --git a/lua/themes/onedark.lua b/lua/themes/onedark.lua index c9f24321..ec8980d1 100644 --- a/lua/themes/onedark.lua +++ b/lua/themes/onedark.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#22262e", lightbg = "#2d3139", lightbg2 = "#262a32", + pmenu_bg = "#A3BE8C", + folder_bg = "#61afef" } return colors diff --git a/lua/themes/tokyonight.lua b/lua/themes/tokyonight.lua index b241eb51..5296414a 100644 --- a/lua/themes/tokyonight.lua +++ b/lua/themes/tokyonight.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#1d1e29", lightbg = "#252631", lightbg2 = "#22232e", + pmenu_bg = "#7aa2f7", + folder_bg = "#7aa2f7" } return colors diff --git a/lua/themes/tomorrow-night.lua b/lua/themes/tomorrow-night.lua index be646566..25985332 100644 --- a/lua/themes/tomorrow-night.lua +++ b/lua/themes/tomorrow-night.lua @@ -28,6 +28,8 @@ local colors = { statusline_bg = "#212326", lightbg = "#373B41", lightbg2 = "#2D3035", + pmenu_bg = "#a4b595", + folder_bg = "#6f8dab" } return colors