diff --git a/lua/hl_themes/rxyhn.lua b/lua/hl_themes/rxyhn.lua new file mode 100644 index 0000000..9408d1f --- /dev/null +++ b/lua/hl_themes/rxyhn.lua @@ -0,0 +1,58 @@ +local M = {} + +M.base_30 = { + white = "#D9D7D6", + darker_black = "#000a0e", + black = "#061115", -- nvim bg + black2 = "#0d181c", + one_bg = "#101B1F", + one_bg2 = "#192428", + one_bg3 = "#212C30", + grey = "#2E393D", + grey_fg = "#384347", + grey_fg2 = "#424D51", + light_grey = "#4A5559", + red = "#DF5B61", + baby_pink = "#EE6A70", + pink = "#F16269", + line = "#152024", -- for lines like vertsplit + green = "#78B892", + vibrant_green = "#8CD7AA", + nord_blue = "#5A84BC", + blue = "#6791C9", + yellow = "#ecd28b", + sun = "#f6dc95", + purple = "#C488EC", + dark_purple = "#BC83E3", + teal = "#7ACFE4", + orange = "#E89982", + cyan = "#67AFC1", + statusline_bg = "#0A1519", + lightbg = "#1a2529", + lightbg2 = "#111C20", + pmenu_bg = "#78B892", + folder_bg = "#6791C9", +} + +M.base_16 = { + base00 = "#061115", + base01 = "#0C171B", + base02 = "#101B1F", + base03 = "#192428", + base04 = "#212C30", + base05 = "#D9D7D6", + base06 = "#E3E1E0", + base07 = "#EDEBEA", + base08 = "#f26e74", + base09 = "#ecd28b", + base0A = "#E9967E", + base0B = "#82c29c", + base0C = "#6791C9", + base0D = "#79AAEB", + base0E = "#C488EC", + base0F = "#F16269", +} + +M = require("base16").override_theme(M, "rxyhn") + +return M