From a38fff3172d202b2a84152e4c3cf90eaf93fba88 Mon Sep 17 00:00:00 2001 From: max397574 Date: Mon, 27 Dec 2021 15:54:10 +0100 Subject: [PATCH 1/2] feat(themes): added tokyodark --- lua/hl_themes/tokyodark.lua | 36 +++++++++++++++++++++++++++++++++ lua/themes/tokyodark-base16.lua | 18 +++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 lua/hl_themes/tokyodark.lua create mode 100644 lua/themes/tokyodark-base16.lua diff --git a/lua/hl_themes/tokyodark.lua b/lua/hl_themes/tokyodark.lua new file mode 100644 index 0000000..c2c716b --- /dev/null +++ b/lua/hl_themes/tokyodark.lua @@ -0,0 +1,36 @@ +local colors = { + white = "#abb2bf", + darker_black = "#1b1f27", + black = "#11121D", -- nvim bg + black2 = "#0b0c17", + one_bg = "#1b1c27", + one_bg2 = "#242530", + one_bg3 = "#2c2d38", + grey = "#393a45", + grey_fg = "#43444f", + grey_fg2 = "#4d4e59", + light_grey = "#555661", + red = "#EE6D85", + baby_pink = "#fd7c94", + pink = "#FE6D85", + line = "#20212c", + green = "#98C379", + vibrant_green = "#95C561", + nord_blue = "#648ce1", + blue = "#7199EE", + yellow = "#D7A65F", + sun = "#dfae67", + purple = "#A485DD", + dark_purple = "#9071c9", + teal = "#519ABA", + orange = "#F6955B", + cyan = "#38A89D", + statusline_bg = "#151621", + lightbg = "#22232e", + lightbg2 = "#1c1d28", + pmenu_bg = "#98C379", + folder_bg = "#354A77", +} + +return colors + diff --git a/lua/themes/tokyodark-base16.lua b/lua/themes/tokyodark-base16.lua new file mode 100644 index 0000000..67787f9 --- /dev/null +++ b/lua/themes/tokyodark-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "11121D", + base01 = "151621", + base02 = "43444f", + base03 = "393a45", + base04 = "1b1c27", + base05 = "abb2bf", + base06 = "555661", + base07 = "2c2d38", + base08 = "A485DD", + base09 = "A485DD", + base0A = "7199EE", + base0B = "D7A65F", + base0C = "A485DD", + base0D = "95C561", + base0E = "EE6D85", + base0F = "773440", +} From 391877f2e82c3724496e7662ff972c4b8dcc2879 Mon Sep 17 00:00:00 2001 From: max397574 Date: Mon, 27 Dec 2021 15:59:41 +0100 Subject: [PATCH 2/2] fix(themes): use same case for all colors --- lua/hl_themes/tokyodark.lua | 22 +++++++++++----------- lua/themes/tokyodark-base16.lua | 16 ++++++++-------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/lua/hl_themes/tokyodark.lua b/lua/hl_themes/tokyodark.lua index c2c716b..0d9a8fb 100644 --- a/lua/hl_themes/tokyodark.lua +++ b/lua/hl_themes/tokyodark.lua @@ -10,26 +10,26 @@ local colors = { grey_fg = "#43444f", grey_fg2 = "#4d4e59", light_grey = "#555661", - red = "#EE6D85", + red = "#ee6d85", baby_pink = "#fd7c94", - pink = "#FE6D85", + pink = "#fe6D85", line = "#20212c", - green = "#98C379", - vibrant_green = "#95C561", + green = "#98c379", + vibrant_green = "#95c561", nord_blue = "#648ce1", - blue = "#7199EE", - yellow = "#D7A65F", + blue = "#7199ee", + yellow = "#d7a65f", sun = "#dfae67", - purple = "#A485DD", + purple = "#a485dd", dark_purple = "#9071c9", - teal = "#519ABA", - orange = "#F6955B", - cyan = "#38A89D", + teal = "#519aba", + orange = "#f6955b", + cyan = "#38a89d", statusline_bg = "#151621", lightbg = "#22232e", lightbg2 = "#1c1d28", pmenu_bg = "#98C379", - folder_bg = "#354A77", + folder_bg = "#354a77", } return colors diff --git a/lua/themes/tokyodark-base16.lua b/lua/themes/tokyodark-base16.lua index 67787f9..3774b7c 100644 --- a/lua/themes/tokyodark-base16.lua +++ b/lua/themes/tokyodark-base16.lua @@ -1,5 +1,5 @@ return { - base00 = "11121D", + base00 = "11121d", base01 = "151621", base02 = "43444f", base03 = "393a45", @@ -7,12 +7,12 @@ return { base05 = "abb2bf", base06 = "555661", base07 = "2c2d38", - base08 = "A485DD", - base09 = "A485DD", - base0A = "7199EE", - base0B = "D7A65F", - base0C = "A485DD", - base0D = "95C561", - base0E = "EE6D85", + base08 = "a485dd", + base09 = "a485dd", + base0A = "7199ee", + base0B = "d7A65f", + base0C = "a485dd", + base0D = "95c561", + base0E = "ee6d85", base0F = "773440", }