From 6e85328e8e2af15eee34d360c5ced5b0e46cc002 Mon Sep 17 00:00:00 2001 From: CatThingy Date: Sun, 20 Feb 2022 13:34:34 -0800 Subject: [PATCH] Re-add legacy uwu theme --- lua/hl_themes/uwu.lua | 36 ++++++++++++++++++++++++++++++++++++ lua/themes/uwu-base16.lua | 19 +++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 lua/hl_themes/uwu.lua create mode 100644 lua/themes/uwu-base16.lua diff --git a/lua/hl_themes/uwu.lua b/lua/hl_themes/uwu.lua new file mode 100644 index 0000000..bee5384 --- /dev/null +++ b/lua/hl_themes/uwu.lua @@ -0,0 +1,36 @@ +local colors = { + white = "#d6d6d6", + darker_black = "#0d1416", + black = "#131a1c", -- nvim bg + black2 = "#192022", + one_bg = "#1d2426", + one_bg2 = "#262d2f", + one_bg3 = "#2e3537", + grey = "#3b4244", + grey_fg = "#454c4e", + grey_fg2 = "#4f5658", + light_grey = "#575e60", + red = "#e74c4c", + baby_pink = "#fe8bca", + pink = "#ef7cbb", + line = "#22292b", -- for lines like vertsplit + green = "#6bb05d", + vibrant_green = "#8dc776", + nord_blue = "#5fadc4", + blue = "#66a3b4", + yellow = "#f0a972", + sun = "#eda66f", + purple = "#b4bbc8", + dark_purple = "#946fa8", + teal = "#5b98a9", + orange = "#eaa36c", + cyan = "#74b1c2", + statusline_bg = "#171e20", + lightbg = "#242b2d", + lightbg2 = "#1e2527", + pmenu_bg = "#6bb05d", + folder_bg = "#5b98a9", +} + +return colors + diff --git a/lua/themes/uwu-base16.lua b/lua/themes/uwu-base16.lua new file mode 100644 index 0000000..0c49903 --- /dev/null +++ b/lua/themes/uwu-base16.lua @@ -0,0 +1,19 @@ +return { + base00 = "131A1C", + base01 = "1b2224", + base02 = "232a2c", + base03 = "3c3e3e", + base04 = "868888", + base05 = "d6d6d6", + base06 = "1f2123", + base07 = "161819", + base08 = "ef7cbb", + base09 = "e59e67", + base0A = "e7ac7e", + base0B = "6bb05d", + base0C = "5b98a9", + base0D = "7ab3c3", + base0E = "e74c4c", + base0F = "e74c4c", +} +