diff --git a/lua/hl_themes/kanagawa.lua b/lua/hl_themes/kanagawa.lua new file mode 100644 index 0000000..676c79f --- /dev/null +++ b/lua/hl_themes/kanagawa.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#DCD7BA", + darker_black = "#16161D", + black = "#1F1F28", -- nvim bg + black2 = "#2A2A37", + one_bg = "#1F1F28", + one_bg2 = "#2A2A37", + one_bg3 = "#363646", + grey = "#54546D", + grey_fg = "#54546D", + grey_fg2 = "#56566f", + light_grey = "#5e5e77", + red = "#FF5D62", + baby_pink = "#D27E99", + pink = "#c8748f", + line = "#252535", -- for lines like vertsplit + green = "#76946A", + vibrant_green = "#98BB6C", + nord_blue = "#2D4F67", + blue = "#658594", + yellow = "#FF9E3B", + sun = "#FFA066", + purple = "#957FB8", + dark_purple = "#8b75ae", + teal = "#7AA89F", + orange = "#fa9b61", + cyan = "#A3D4D5", + statusline_bg = "#C8C093", + lightbg = "#2A2A37", + lightbg2 = "#363646", + pmenu_bg = "#223249", + folder_bg = "#354A77", +} + +return colors diff --git a/lua/themes/kanagawa-base16.lua b/lua/themes/kanagawa-base16.lua new file mode 100644 index 0000000..8d8ec24 --- /dev/null +++ b/lua/themes/kanagawa-base16.lua @@ -0,0 +1,19 @@ +-- "Originally by rebelot(https://github.com/rebelot), ported by montdor (https://github.com/montdor)" +return { + base00 = "1F1F28" + base01 = "2A2A37" + base02 = "223249" + base03 = "727169" + base04 = "C8C093" + base05 = "DCD7BA" + base06 = "938AA9" + base07 = "363646" + base08 = "C34043" + base09 = "FFA066" + base0A = "DCA561" + base0B = "98BB6C" + base0C = "7FB4CA" + base0D = "7E9CD8" + base0E = "957FB8" + base0F = "D27E99" +}