From 183e9cfb8e77499e5a72e6d75952e26fe571f7a3 Mon Sep 17 00:00:00 2001 From: rxyhn Date: Sun, 8 May 2022 15:48:33 +0700 Subject: [PATCH 1/2] feat: rxyhn's aesthetic themes --- lua/hl_themes/rxyhn.lua | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 lua/hl_themes/rxyhn.lua diff --git a/lua/hl_themes/rxyhn.lua b/lua/hl_themes/rxyhn.lua new file mode 100644 index 0000000..89d4680 --- /dev/null +++ b/lua/hl_themes/rxyhn.lua @@ -0,0 +1,58 @@ +local M = {} + +M.base_30 = { + white = "#D9D7D6", + darker_black = "#000B0F", + black = "#061115", -- nvim bg + black2 = "#0C171B", + 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 = "#DE8F78", + sun = "#E69780", + purple = "#C488EC", + dark_purple = "#BC83E3", + teal = "#7ACFE4", + orange = "#E89982", + cyan = "#67AFC1", + statusline_bg = "#0A1519", + lightbg = "#172226", + 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 = "#DF5B61", + base09 = "#DE8F78", + base0A = "#E9967E", + base0B = "#78B892", + base0C = "#6791C9", + base0D = "#79AAEB", + base0E = "#BC83E3", + base0F = "#F16269", +} + +M = require("base16").override_theme(M, "rxyhn") + +return M From 3924197708eb1e173504e17f2454d4872d90708e Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 8 May 2022 16:07:15 +0530 Subject: [PATCH 2/2] polish rxhn theme --- lua/hl_themes/rxyhn.lua | 94 ++++++++++++++++++++--------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/lua/hl_themes/rxyhn.lua b/lua/hl_themes/rxyhn.lua index 89d4680..9408d1f 100644 --- a/lua/hl_themes/rxyhn.lua +++ b/lua/hl_themes/rxyhn.lua @@ -1,56 +1,56 @@ local M = {} M.base_30 = { - white = "#D9D7D6", - darker_black = "#000B0F", - black = "#061115", -- nvim bg - black2 = "#0C171B", - 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 = "#DE8F78", - sun = "#E69780", - purple = "#C488EC", - dark_purple = "#BC83E3", - teal = "#7ACFE4", - orange = "#E89982", - cyan = "#67AFC1", - statusline_bg = "#0A1519", - lightbg = "#172226", - lightbg2 = "#111C20", - pmenu_bg = "#78B892", - folder_bg = "#6791C9", + 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 = "#DF5B61", - base09 = "#DE8F78", - base0A = "#E9967E", - base0B = "#78B892", - base0C = "#6791C9", - base0D = "#79AAEB", - base0E = "#BC83E3", - base0F = "#F16269", + 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")