diff --git a/lua/hl_themes/chadtain.lua b/lua/hl_themes/chadtain.lua new file mode 100644 index 0000000..9bf5989 --- /dev/null +++ b/lua/hl_themes/chadtain.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#b0b0b0", + darker_black = "#171d23", + black = "#1a2026", -- nvim bg + black2 = "#20262c", + one_bg = "#242a30", + one_bg2 = "#292f35", + one_bg3 = "#2e343a", + grey = "#42484e", + grey_fg = "#474d53", + grey_fg2 = "#50565c", + light_grey = "#565c62", + red = "#ac8a8c", + baby_pink = "#de878f", + pink = "#e89199", + line = "#2d3339", -- for lines like vertsplit + green = "#8aac8b", + vibrant_green = "#9ec49f", + blue = "#6b8bab", + nord_blue = "#7797b7", + yellow = "#c4c19e", + sun = "#aca98a", + purple = "#a39ec4", + dark_purple = "#8f8aac", + teal = "#7c9cbc", + orange = "#e39a83", + cyan = "#9aafe6", + statusline_bg = "#1e242a", + lightbg = "#2d3339", + lightbg2 = "#252b31", + pmenu_bg = "#8aac8b", + folder_bg = "#6b8bab", +} + +return colors diff --git a/lua/hl_themes/mountain.lua b/lua/hl_themes/mountain.lua index 9bf5989..c73168f 100644 --- a/lua/hl_themes/mountain.lua +++ b/lua/hl_themes/mountain.lua @@ -1,35 +1,35 @@ local colors = { - white = "#b0b0b0", - darker_black = "#171d23", - black = "#1a2026", -- nvim bg - black2 = "#20262c", - one_bg = "#242a30", - one_bg2 = "#292f35", - one_bg3 = "#2e343a", - grey = "#42484e", - grey_fg = "#474d53", - grey_fg2 = "#50565c", - light_grey = "#565c62", + white = "#F0f0f0", + darker_black = "#090909", + black = "#0f0f0f", -- nvim bg + black2 = "#151515", + one_bg = "#191919", + one_bg2 = "#222222", + one_bg3 = "#2a2a2a", + grey = "#373737", + grey_fg = "#414141", + grey_fg2 = "#4b4b4b", + light_grey = "#535353", red = "#ac8a8c", - baby_pink = "#de878f", + baby_pink = "#bb999b", pink = "#e89199", - line = "#2d3339", -- for lines like vertsplit + line = "#191919", -- for lines like vertsplit green = "#8aac8b", - vibrant_green = "#9ec49f", - blue = "#6b8bab", - nord_blue = "#7797b7", - yellow = "#c4c19e", - sun = "#aca98a", - purple = "#a39ec4", - dark_purple = "#8f8aac", - teal = "#7c9cbc", - orange = "#e39a83", - cyan = "#9aafe6", - statusline_bg = "#1e242a", - lightbg = "#2d3339", - lightbg2 = "#252b31", + vibrant_green = "#99bb9a", + blue = "#A39EC4", + nord_blue = "#b2add3", + yellow = "#ACA98A", + sun = "#d3d0ad", + purple = "#C49EC4", + dark_purple = "#b58fb5", + teal = "#8fb4b5", + orange = "#9d9a7b", + cyan = "#9EC3C4", + statusline_bg = "#131313", + lightbg = "#292929", + lightbg2 = "#232323", pmenu_bg = "#8aac8b", - folder_bg = "#6b8bab", + folder_bg = "#A39EC4", } return colors diff --git a/lua/themes/chadtain-base16.lua b/lua/themes/chadtain-base16.lua new file mode 100644 index 0000000..287eb37 --- /dev/null +++ b/lua/themes/chadtain-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "1a2026", + base01 = "242a30", + base02 = "292f35", + base03 = "2e343a", + base04 = "42484e", + base05 = "d3d3d3", + base06 = "d8d8d8", + base07 = "b0b0b0", + base08 = "c49ea0", + base09 = "b89294", + base0A = "ccc9aa", + base0B = "8aac8b", + base0C = "8aabac", + base0D = "6b8bab", + base0E = "8f8aac", + base0F = "8b6567", +} diff --git a/lua/themes/mountain-base16.lua b/lua/themes/mountain-base16.lua index 287eb37..89f7555 100644 --- a/lua/themes/mountain-base16.lua +++ b/lua/themes/mountain-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "1a2026", - base01 = "242a30", - base02 = "292f35", - base03 = "2e343a", - base04 = "42484e", - base05 = "d3d3d3", + base00 = "0f0f0f", + base01 = "151515", + base02 = "191919", + base03 = "222222", + base04 = "535353", + base05 = "f0f0f0", base06 = "d8d8d8", - base07 = "b0b0b0", - base08 = "c49ea0", - base09 = "b89294", - base0A = "ccc9aa", + base07 = "414141", + base08 = "ac8a8c", + base09 = "d3d0ad", + base0A = "ACA98A", base0B = "8aac8b", - base0C = "8aabac", - base0D = "6b8bab", - base0E = "8f8aac", - base0F = "8b6567", + base0C = "9EC3C4", + base0D = "8fb4b5", + base0E = "C49EC4", + base0F = "9d9a7b", }