diff --git a/lua/hl_themes/doom-chad.lua b/lua/hl_themes/doom-chad.lua new file mode 100644 index 0000000..228ec30 --- /dev/null +++ b/lua/hl_themes/doom-chad.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#bbc2cf", + darker_black = "#22262e", + black = "#282c34", -- nvim bg + black2 = "#2e323a", + one_bg = "#32363e", -- real bg of onedark + one_bg2 = "#3c4048", + one_bg3 = "#41454d", + grey = "#494d55", + grey_fg = "#53575f", + grey_fg2 = "#5d6169", + light_grey = "#676b73", + red = "#ff6b5a", + baby_pink = "#ff7665", + pink = "#ff75a0", + line = "#2f333b", -- for lines like vertsplit + green = "#98be65", + vibrant_green = "#a9cf76", + nord_blue = "#47a5e5", + blue = "#51afef", + yellow = "#ECBE7B", + sun = "#f2c481", + purple = "#afa7e7", + dark_purple = "#c678dd", + teal = "#4db5bd", + orange = "#ea9558", + cyan = "#46D9FF", + statusline_bg = "#2d3139", + lightbg = "#3a3e46", + lightbg2 = "#32363e", + pmenu_bg = "#98be65", + folder_bg = "#51afef", +} + +return colors diff --git a/lua/themes/doom-chad-base16.lua b/lua/themes/doom-chad-base16.lua new file mode 100644 index 0000000..cfbe896 --- /dev/null +++ b/lua/themes/doom-chad-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "282c34", + base01 = "32363e", + base02 = "3c4048", + base03 = "4e525a", + base04 = "5a5e66", + base05 = "a7aebb", + base06 = "b3bac7", + base07 = "bbc2cf", + base08 = "ff6c6b", + base09 = "da8548", + base0A = "ECBE7B", + base0B = "98be65", + base0C = "66c4ff", + base0D = "48a6e6", + base0E = "9c94d4", + base0F = "c85a50", +} diff --git a/lua/themes/onedark-base16.lua b/lua/themes/onedark-base16.lua index bde3b78..a22c6b1 100644 --- a/lua/themes/onedark-base16.lua +++ b/lua/themes/onedark-base16.lua @@ -1,18 +1,18 @@ return { - base0A = "e5c07b", - base04 = "565c64", - base07 = "c8ccd4", - base05 = "abb2bf", - base0E = "c678dd", - base0D = "61afef", - base0C = "56b6c2", - base0B = "98c379", - base02 = "3e4451", - base0F = "be5046", - base03 = "545862", - base08 = "e06c75", - base01 = "353b45", - base00 = "1e222a", - base09 = "d19a66", - base06 = "b6bdca" + base00 = "1e222a", + base01 = "353b45", + base02 = "3e4451", + base03 = "545862", + base04 = "565c64", + base05 = "abb2bf", + base06 = "b6bdca", + base07 = "c8ccd4", + base08 = "e06c75", + base09 = "d19a66", + base0A = "e5c07b", + base0B = "98c379", + base0C = "56b6c2", + base0D = "61afef", + base0E = "c678dd", + base0F = "be5046", }