From a8d0237e41a9f124608ea111b901352fdff189d3 Mon Sep 17 00:00:00 2001 From: collatz124 Date: Sun, 12 Dec 2021 11:14:00 +0100 Subject: [PATCH 1/4] Created the one-monokai colorscheme --- lua/hl_themes/onemonokai.lua | 35 +++++++++++++++++++++++++++++++++++ lua/themes/one-monokai.lua | 18 ++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 lua/hl_themes/onemonokai.lua create mode 100644 lua/themes/one-monokai.lua diff --git a/lua/hl_themes/onemonokai.lua b/lua/hl_themes/onemonokai.lua new file mode 100644 index 0000000..2ff66aa --- /dev/null +++ b/lua/hl_themes/onemonokai.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#abb2bf", + darker_black = "#1b1f27", + black = "#1e222a", -- nvim bg + black2 = "#252931", + one_bg = "#282c34", -- real bg of onedark + one_bg2 = "#353b45", + one_bg3 = "#30343c", + grey = "#42464e", + grey_fg = "#565c64", + grey_fg2 = "#6f737b", + light_grey = "#6f737b", + red = "#d47d85", + baby_pink = "#DE8C92", + pink = "#ff75a0", + line = "#2a2e36", -- for lines like vertsplit + green = "#A3BE8C", + vibrant_green = "#7eca9c", + nord_blue = "#81A1C1", + blue = "#61afef", + yellow = "#e7c787", + sun = "#EBCB8B", + purple = "#b4bbc8", + dark_purple = "#c882e7", + teal = "#519ABA", + orange = "#fca2aa", + cyan = "#a3b8ef", + statusline_bg = "#22262e", + lightbg = "#2d3139", + lightbg2 = "#262a32", + pmenu_bg = "#A3BE8C", + folder_bg = "#61afef", +} + +return colors diff --git a/lua/themes/one-monokai.lua b/lua/themes/one-monokai.lua new file mode 100644 index 0000000..d251b72 --- /dev/null +++ b/lua/themes/one-monokai.lua @@ -0,0 +1,18 @@ +return { + base00 = "242730", + base01 = "2a2e38", + base02 = "484854", + base03 = "545862", + base04 = "9ca0a4", + base05 = "bbc2cf", + base06 = "5d656b", + base07 = "4d5550", + base08 = "e06c75", + base09 = "e18ef3", + base0A = "51afef", + base0B = "e6c181", + base0C = "5ac9d6", + base0D = "5ac9d6", + base0E = "e36d76", + base0F = "be5046", +} From 5a89e08b92e08b68fc2018ddd0593fab819022d3 Mon Sep 17 00:00:00 2001 From: collatz124 Date: Sun, 12 Dec 2021 12:24:28 +0100 Subject: [PATCH 2/4] Implemented the hl theme for one monokai, and tweaked the base16 theme --- lua/hl_themes/onemonokai.lua | 4 ++-- lua/themes/{one-monokai.lua => one-monokai-base16.lua} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename lua/themes/{one-monokai.lua => one-monokai-base16.lua} (100%) diff --git a/lua/hl_themes/onemonokai.lua b/lua/hl_themes/onemonokai.lua index 2ff66aa..36f237f 100644 --- a/lua/hl_themes/onemonokai.lua +++ b/lua/hl_themes/onemonokai.lua @@ -1,9 +1,9 @@ local colors = { white = "#abb2bf", darker_black = "#1b1f27", - black = "#1e222a", -- nvim bg + black = "#2a2e38", -- nvim bg black2 = "#252931", - one_bg = "#282c34", -- real bg of onedark + one_bg = "#242730", -- real bg of onedark one_bg2 = "#353b45", one_bg3 = "#30343c", grey = "#42464e", diff --git a/lua/themes/one-monokai.lua b/lua/themes/one-monokai-base16.lua similarity index 100% rename from lua/themes/one-monokai.lua rename to lua/themes/one-monokai-base16.lua From bf0b338e3cbbba2e08b9127cf566f9ec3fa246d0 Mon Sep 17 00:00:00 2001 From: Collatz124 <60628290+Collatz124@users.noreply.github.com> Date: Sun, 12 Dec 2021 14:49:42 +0100 Subject: [PATCH 3/4] Rename onemonokai.lua to monekai.lua --- lua/hl_themes/{onemonokai.lua => monekai.lua} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename lua/hl_themes/{onemonokai.lua => monekai.lua} (100%) diff --git a/lua/hl_themes/onemonokai.lua b/lua/hl_themes/monekai.lua similarity index 100% rename from lua/hl_themes/onemonokai.lua rename to lua/hl_themes/monekai.lua From 35390821161162b9aae9db89f4a5510cbafc21ed Mon Sep 17 00:00:00 2001 From: Collatz124 <60628290+Collatz124@users.noreply.github.com> Date: Sun, 12 Dec 2021 14:50:24 +0100 Subject: [PATCH 4/4] Rename one-monokai-base16.lua to monekai-base16.lua --- lua/themes/{one-monokai-base16.lua => monekai-base16.lua} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename lua/themes/{one-monokai-base16.lua => monekai-base16.lua} (100%) diff --git a/lua/themes/one-monokai-base16.lua b/lua/themes/monekai-base16.lua similarity index 100% rename from lua/themes/one-monokai-base16.lua rename to lua/themes/monekai-base16.lua