From 8a1fc10aa7b52a2528c6baf2caf32613b8a75155 Mon Sep 17 00:00:00 2001 From: pagankeymaster <80379926+pagankeymaster@users.noreply.github.com> Date: Sat, 7 May 2022 17:39:58 +0530 Subject: [PATCH 1/2] feat: added radium[OC] theme. --- lua/hl_themes/radium.lua | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 lua/hl_themes/radium.lua diff --git a/lua/hl_themes/radium.lua b/lua/hl_themes/radium.lua new file mode 100644 index 0000000..756891f --- /dev/null +++ b/lua/hl_themes/radium.lua @@ -0,0 +1,58 @@ +local M = {} + +M.base_30 = { + white = "#d4d4d5", + darker_black = "#11161b", + black = "#101317", -- nvim bg + black2 = "#171b20", + one_bg = "#1a1f24", + one_bg2 = "#2a2f34", + one_bg3 = "#32373c", + grey = "#262d33", + grey_fg = "#333c44", + grey_fg2 = "#3f4449", + light_grey = "#585862", + red = "#f87070", + baby_pink = "#ff8e8e", + pink = "#ffa7a7", + line = "#292933", -- for lines like vertsplit + green = "#36c692", + vibrant_green = "#79dcaa", + blue = "#7ab0df", + nord_blue = "#87bdec", + yellow = "#ffe59e", + sun = "#ffeda6", + purple = "#c397d8", + dark_purple = "#b77ee0", + teal = "#54ced6", + orange = "#E8CCA7", + cyan = "#70c0ba", + statusline_bg = "#171b20", + lightbg = "#282d32", + lightbg2 = "#22272c", + pmenu_bg = "#3bdda2", + folder_bg = "#5fb0fc", +} + +M.base_16 = { + base00 = "#101317", + base01 = "#171C21", + base02 = "#1c2026", + base03 = "#20252b", + base04 = "#3d464e", + base05 = "#ced4df", + base06 = "#333c44", + base07 = "#3a434b", + base08 = "#56c69d", + base09 = "#ffe59e", + base0A = "#ffeda6", + base0B = "#79dcaa", + base0C = "#7ab0df", + base0D = "#87bdec", + base0E = "#f87070", + base0F = "#f78888", +} + +M = require("base16").override_theme(M, "radium") + +return M From aeb6efe7d00dedc8aaf31e2dc8b7724746831b8a Mon Sep 17 00:00:00 2001 From: pagankeymaster <80379926+pagankeymaster@users.noreply.github.com> Date: Sat, 7 May 2022 18:04:09 +0530 Subject: [PATCH 2/2] tweak orange --- lua/hl_themes/radium.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/hl_themes/radium.lua b/lua/hl_themes/radium.lua index 756891f..4574bbb 100644 --- a/lua/hl_themes/radium.lua +++ b/lua/hl_themes/radium.lua @@ -25,7 +25,7 @@ M.base_30 = { purple = "#c397d8", dark_purple = "#b77ee0", teal = "#54ced6", - orange = "#E8CCA7", + orange = "#e5d487", cyan = "#70c0ba", statusline_bg = "#171b20", lightbg = "#282d32",