From 42cb2e8e42b188506ba3f96b116e63ec883ecb4a Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 21 Oct 2021 09:34:13 -0500 Subject: [PATCH 1/3] Add onedark-deep theme --- lua/hl_themes/onedark-deep.lua | 35 ++++++++++++++++++++++++++++++ lua/themes/onedark-deep-base16.lua | 18 +++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 lua/hl_themes/onedark-deep.lua create mode 100644 lua/themes/onedark-deep-base16.lua diff --git a/lua/hl_themes/onedark-deep.lua b/lua/hl_themes/onedark-deep.lua new file mode 100644 index 0000000..7d3bc26 --- /dev/null +++ b/lua/hl_themes/onedark-deep.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#6c7d9c", + darker_black = "#141b28", + black = "#1a212e", -- nvim bg + black2 = "#202734", + one_bg = "#242b38", -- real bg of onedark + one_bg2 = "#2d3441", + one_bg3 = "#353c49", + grey = "#455574", + grey_fg = "#4f5f7e", + grey_fg2 = "#596988", + light_grey = "#617190", + red = "#f65866", + baby_pink = "#e06c75", + pink = "#ff75a0", + line = "#29303d", -- for lines like vertsplit + green = "#8bcd5b", + vibrant_green = "#98c379", + nord_blue = "#52a0e0", + blue = "#41a7fc", + yellow = "#ebc275", + sun = "#e5c07b", + purple = "#c678dd", + dark_purple = "#c678dd", + teal = "#34bfd0", + orange = "#ea8912", + cyan = "#56b6c2", + statusline_bg = "#1e2532", + lightbg = "#2f333b", + lightbg2 = "#292d35", + pmenu_bg = "#98c379", + folder_bg = "#41a7fc", +} + +return colors diff --git a/lua/themes/onedark-deep-base16.lua b/lua/themes/onedark-deep-base16.lua new file mode 100644 index 0000000..c1ce19e --- /dev/null +++ b/lua/themes/onedark-deep-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "1a212e", + base01 = "1e2532", + base02 = "21283b", + base03 = "4f5f7e", + base04 = "596988", + base05 = "6c7d9c", + base06 = "b6bdca", + base07 = "c8ccd4", + base08 = "f65866", + base09 = "ea8912", + base0A = "ebc275", + base0B = "8bcd5b", + base0C = "52a0e0", + base0D = "41a7fc", + base0E = "c678dd", + base0F = "f65866", +} From 04bae5c8f7be7ac71a305ecf0bc9454ef6813bc5 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 21 Oct 2021 10:14:11 -0500 Subject: [PATCH 2/3] Add xterm theme --- lua/hl_themes/xterm.lua | 35 +++++++++++++++++++++++++++++++++++ lua/themes/xterm-base16.lua | 18 ++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 lua/hl_themes/xterm.lua create mode 100644 lua/themes/xterm-base16.lua diff --git a/lua/hl_themes/xterm.lua b/lua/hl_themes/xterm.lua new file mode 100644 index 0000000..af686bf --- /dev/null +++ b/lua/hl_themes/xterm.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#ffffff", + darker_black = "#000000", + black = "#060606", -- nvim bg + black2 = "#0c0c0c", + one_bg = "#101010", -- real bg of onedark + one_bg2 = "#191919", + one_bg3 = "#212121", + grey = "#808080", + grey_fg = "#8e8e8e", + grey_fg2 = "#a7a7a7", + light_grey = "#c0c0c0", + red = "#ff0000", + baby_pink = "#e06c75", -- TODO + pink = "#ff00ff", + line = "#151515", -- for lines like vertsplit + green = "#008000", + vibrant_green = "#00ff00", + nord_blue = "#000080", + blue = "#0000ff", + yellow = "#ffff00", + sun = "#d7d7af", + purple = "#800080", + dark_purple = "#620062", + teal = "#008080", + orange = "#ffaf00", + cyan = "#00ffff", + statusline_bg = "#0a0a0a", + lightbg = "#171717", + lightbg2 = "#111111", + pmenu_bg = "#00ff00", + folder_bg = "#0000ff", +} + +return colors diff --git a/lua/themes/xterm-base16.lua b/lua/themes/xterm-base16.lua new file mode 100644 index 0000000..87b9553 --- /dev/null +++ b/lua/themes/xterm-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "#060606", + base01 = "#222222", + base02 = "#444444", + base03 = "#666666", + base04 = "#888888", + base05 = "#aaaaaa", + base06 = "#cccccc", + base07 = "#ffffff", + base08 = "#ff0000", + base09 = "#ffaf00", + base0A = "#ffff00", + base0B = "#00ff00", + base0C = "#800080", + base0D = "#0000ff", + base0E = "#ff00ff", + base0F = "#800000", +} From 58368a6628569afa6d88811c364ed6750001152f Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 21 Oct 2021 10:24:06 -0500 Subject: [PATCH 3/3] Update xterm colors --- lua/hl_themes/xterm.lua | 6 +++--- lua/themes/xterm-base16.lua | 32 ++++++++++++++++---------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/lua/hl_themes/xterm.lua b/lua/hl_themes/xterm.lua index af686bf..a723ea8 100644 --- a/lua/hl_themes/xterm.lua +++ b/lua/hl_themes/xterm.lua @@ -1,8 +1,8 @@ local colors = { white = "#ffffff", darker_black = "#000000", - black = "#060606", -- nvim bg - black2 = "#0c0c0c", + black = "#111111", -- nvim bg + black2 = "#161616", one_bg = "#101010", -- real bg of onedark one_bg2 = "#191919", one_bg3 = "#212121", @@ -11,7 +11,7 @@ local colors = { grey_fg2 = "#a7a7a7", light_grey = "#c0c0c0", red = "#ff0000", - baby_pink = "#e06c75", -- TODO + baby_pink = "#ff5fd7", pink = "#ff00ff", line = "#151515", -- for lines like vertsplit green = "#008000", diff --git a/lua/themes/xterm-base16.lua b/lua/themes/xterm-base16.lua index 87b9553..6960f58 100644 --- a/lua/themes/xterm-base16.lua +++ b/lua/themes/xterm-base16.lua @@ -1,18 +1,18 @@ return { - base00 = "#060606", - base01 = "#222222", - base02 = "#444444", - base03 = "#666666", - base04 = "#888888", - base05 = "#aaaaaa", - base06 = "#cccccc", - base07 = "#ffffff", - base08 = "#ff0000", - base09 = "#ffaf00", - base0A = "#ffff00", - base0B = "#00ff00", - base0C = "#800080", - base0D = "#0000ff", - base0E = "#ff00ff", - base0F = "#800000", + base00 = "111111", + base01 = "333333", + base02 = "555555", + base03 = "777777", + base04 = "999999", + base05 = "bbbbbb", + base06 = "dddddd", + base07 = "ffffff", + base08 = "ff0000", + base09 = "ffaf00", + base0A = "ffff00", + base0B = "00ff00", + base0C = "800080", + base0D = "0000ff", + base0E = "ff00ff", + base0F = "800000", }