diff --git a/lua/hl_themes/ayu-dark.lua b/lua/hl_themes/ayu-dark.lua new file mode 100644 index 0000000..137d422 --- /dev/null +++ b/lua/hl_themes/ayu-dark.lua @@ -0,0 +1,86 @@ +local M = {} + +M.base_30 = { + white = "#ced4df", + darker_black = "#05080e", + black = "#0B0E14", -- nvim bg + black2 = "#14171d", + one_bg = "#1c1f25", + one_bg2 = "#24272d", + one_bg3 = "#2b2e34", + grey = "#33363c", + grey_fg = "#3d4046", + grey_fg2 = "#46494f", + light_grey = "#4e5157", + red = "#F07178", + baby_pink = "#ff949b", + pink = "#ff8087", + line = "#24272d", -- for lines like vertsplit + green = "#AAD84C", + vibrant_green = "#b9e75b", + blue = "#36A3D9", + nord_blue = "#43b0e6", + yellow = "#E7C547", + sun = "#f0df8a", + purple = "#c79bf4", + dark_purple = "#A37ACC", + teal = "#74c5aa", + orange = "#ffa455", + cyan = "#95E6CB", + statusline_bg = "#12151b", + lightbg = "#24272d", + pmenu_bg = "#ff9445", + folder_bg = "#98a3af", +} + +M.base_16 = { + base00 = "#0B0E14", + base01 = "#1c1f25", + base02 = "#24272d", + base03 = "#2b2e34", + base04 = "#33363c", + base05 = "#c9c7be", + base06 = "#E6E1CF", + base07 = "#D9D7CE", + base08 = "#c9c7be", + base09 = "#FFEE99", + base0A = "#56c3f9", + base0B = "#AAD84C", + base0C = "#FFB454", + base0D = "#F07174", + base0E = "#FFB454", + base0F = "#CBA6F7", +} + +M.polish_hl = { + + TSTagDelimiter = { + fg = M.base_30.cyan, + }, + + TSFunction = { + fg = M.base_30.orange, + }, + + luaTSField = { + fg = M.base_16.base0D, + }, + + TSParameter = { + fg = M.base_16.base0F, + }, + + TSConstructor = { + fg = M.base_16.base0A, + }, + + TSTagAttribute = { + fg = M.base_30.orange, + }, +} + +M = require("base46").override_theme(M, "ayu-dark") + +M.type = "dark" + +return M diff --git a/lua/hl_themes/rosepine.lua b/lua/hl_themes/rosepine.lua new file mode 100644 index 0000000..6fdd931 --- /dev/null +++ b/lua/hl_themes/rosepine.lua @@ -0,0 +1,59 @@ +local M = {} + +M.base_30 = { + black = "#191724", -- nvim bg + darker_black = "#13111e", + white = "#e0def4", + black2 = "#1f1d2a", + one_bg = "#262431", -- real bg of onedark + one_bg2 = "#2d2b38", + one_bg3 = "#353340", + grey = "#3f3d4a", + grey_fg = "#474552", + grey_fg2 = "#514f5c", + light_grey = "#5d5b68", + red = "#eb6f92", + baby_pink = "#f5799c", + pink = "#ff83a6", + line = "#2e2c39", -- for lines like vertsplit + green = "#ABE9B3", + vibrant_green = "#b5f3bd", + nord_blue = "#86b9c2", + blue = "#8bbec7", + yellow = "#f6c177", + sun = "#fec97f", + purple = "#c4a7e7", + dark_purple = "#bb9ede", + teal = "#6aadc8", + orange = "#f6c177", + cyan = "#a3d6df", + statusline_bg = "#201e2b", + lightbg = "#2d2b38", + pmenu_bg = "#c4a7e7", + folder_bg = "#6aadc8", +} + +M.base_16 = { + base00 = "#191724", + base01 = "#1f1d2e", + base02 = "#403d52", + base03 = "#6e6a86", + base04 = "#908caa", + base05 = "#e0def4", + base06 = "#cecacd", + base07 = "#fffaf3", + base08 = "#e2e1e7", + base09 = "#eb6f92", + base0A = "#f6c177", + base0B = "#ebbcba", + base0C = "#4d90ab", + base0D = "#93c6cf", + base0E = "#c4a7e7", + base0F = "#e5e5e5", +} + +M = require("base46").override_theme(M, "rosepine") + +M.type = "dark" + +return M