From 9dfb55aa8f50bf1c0d82d3240007a63d5ca40d78 Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 18 Aug 2024 19:53:00 +0530 Subject: [PATCH] feat: add huefy integration --- lua/base46/integrations/huefy.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/base46/integrations/huefy.lua diff --git a/lua/base46/integrations/huefy.lua b/lua/base46/integrations/huefy.lua new file mode 100644 index 00000000..00c11395 --- /dev/null +++ b/lua/base46/integrations/huefy.lua @@ -0,0 +1,16 @@ +local colors = require("base46").get_theme_tb "base_30" + +return { + HuefyBorder = { bg = colors.darker_black, fg = colors.darker_black }, + HuefyWin = { bg = colors.darker_black }, + + HuefyIBorder = { bg = colors.one_bg3, fg = colors.one_bg3 }, + HuefyIWin = { bg = colors.one_bg3 }, + + HuefyBorder2 = { bg = colors.black2, fg = colors.black2 }, + HuefyWin2 = { bg = colors.black2 }, + + HuefySliderRed = { fg = colors.red }, + HuefySliderBlue = { fg = colors.blue }, + HuefySliderGreen = { fg = colors.green }, +}