From 327c067fd24282107130a7171f7ebbdc59ac891b Mon Sep 17 00:00:00 2001 From: alternateved Date: Sun, 4 Jul 2021 16:19:46 +0200 Subject: [PATCH 1/3] Add tomorrow-night theme --- lua/themes/tomorrow-night.lua | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lua/themes/tomorrow-night.lua diff --git a/lua/themes/tomorrow-night.lua b/lua/themes/tomorrow-night.lua new file mode 100644 index 0000000..a80cf29 --- /dev/null +++ b/lua/themes/tomorrow-night.lua @@ -0,0 +1,34 @@ +local colors = { + white = "#c4c8c5", + darker_black = "#1b1f27", + black = "#1d1f21", -- nvim bg + black2 = "#252931", + one_bg = "#363a41", + one_bg2 = "#353b45", + one_bg3 = "#30343c", + grey = "#93979F", + grey_fg = "#545B68", + grey_fg2 = "#6F7581", + light_grey = "#6F7581", + red = "#cc6666", + baby_pink = "#FF6E79", + pink = "#ff9ca3", + line = "#2a2e36", -- for lines like vertsplit + green = "#b5bd68", + vibrant_green = "#d0f0a8", + nord_blue = "#557C9D", + blue = "#80a1bd", + yellow = "#f0c574", + sun = "#e6c446", + purple = "#b4bbc8", + dark_purple = "#b294ba", + teal = "#8abdb6", + orange = "#DE935F", + cyan = "#70c0b1", + + statusline_bg = "#212326", + lightbg = "#373B41", + lightbg2 = "#2D3035" +} + +return colors From 07d3192f6fc2abbed280daa53be5315d5530a370 Mon Sep 17 00:00:00 2001 From: alternateved <45176912+alternateved@users.noreply.github.com> Date: Mon, 5 Jul 2021 18:32:38 +0200 Subject: [PATCH 2/3] Remove blue-ish tint from darker_black --- lua/themes/tomorrow-night.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/themes/tomorrow-night.lua b/lua/themes/tomorrow-night.lua index a80cf29..d606b7d 100644 --- a/lua/themes/tomorrow-night.lua +++ b/lua/themes/tomorrow-night.lua @@ -1,6 +1,6 @@ local colors = { white = "#c4c8c5", - darker_black = "#1b1f27", + darker_black = "#141517", black = "#1d1f21", -- nvim bg black2 = "#252931", one_bg = "#363a41", From 20c3eca0b699800bc3fd288b56f8e6679625d4e4 Mon Sep 17 00:00:00 2001 From: alternateved <45176912+alternateved@users.noreply.github.com> Date: Mon, 5 Jul 2021 18:41:37 +0200 Subject: [PATCH 3/3] Make darker_black less dark --- lua/themes/tomorrow-night.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/themes/tomorrow-night.lua b/lua/themes/tomorrow-night.lua index d606b7d..9b26743 100644 --- a/lua/themes/tomorrow-night.lua +++ b/lua/themes/tomorrow-night.lua @@ -1,6 +1,6 @@ local colors = { white = "#c4c8c5", - darker_black = "#141517", + darker_black = "#131517", black = "#1d1f21", -- nvim bg black2 = "#252931", one_bg = "#363a41",