From 64276b55e5be654078be1d71d6e1a19e10bfaf56 Mon Sep 17 00:00:00 2001 From: Phan Long Date: Mon, 7 Mar 2022 23:27:24 +0700 Subject: [PATCH 1/5] add material theme --- lua/hl_themes/material.lua | 36 ++++++++++++++++++++++++++++++++++ lua/themes/material-base16.lua | 18 +++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 lua/hl_themes/material.lua create mode 100644 lua/themes/material-base16.lua diff --git a/lua/hl_themes/material.lua b/lua/hl_themes/material.lua new file mode 100644 index 0000000..56dee80 --- /dev/null +++ b/lua/hl_themes/material.lua @@ -0,0 +1,36 @@ +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 + \ No newline at end of file diff --git a/lua/themes/material-base16.lua b/lua/themes/material-base16.lua new file mode 100644 index 0000000..8b10a3a --- /dev/null +++ b/lua/themes/material-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "1e222a", + base01 = "353b45", + base02 = "3e4451", + base03 = "4a4a4a", + base04 = "b2ccd6", + base05 = "eeffff", + base06 = "eeffff", + base07 = "ffffff", + base08 = "f07178", + base09 = "f78c6c", + base0A = "ffcb6b", + base0B = "c3e88d", + base0C = "89ddff", + base0D = "82aaff", + base0E = "c792ea", + base0F = "ff5370" +} \ No newline at end of file From 23ac909f75db6317dcb4603a7ddf8864aed08661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phan=20Th=C3=A0nh=20Long?= <44520002+phanlong2811@users.noreply.github.com> Date: Tue, 8 Mar 2022 02:02:46 +0700 Subject: [PATCH 2/5] add hl of material --- lua/hl_themes/material.lua | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/lua/hl_themes/material.lua b/lua/hl_themes/material.lua index 56dee80..a1107e6 100644 --- a/lua/hl_themes/material.lua +++ b/lua/hl_themes/material.lua @@ -1,23 +1,23 @@ local colors = { - white = "#abb2bf", + white = "#eeffff", darker_black = "#1b1f27", - black = "#1e222a", -- nvim bg + black = "#1e222a", black2 = "#252931", - one_bg = "#282c34", -- real bg of onedark + one_bg = "#282c34", one_bg2 = "#353b45", one_bg3 = "#30343c", grey = "#42464e", - grey_fg = "#565c64", + grey_fg = "#b2ccd6", grey_fg2 = "#6f737b", light_grey = "#6f737b", red = "#d47d85", baby_pink = "#DE8C92", pink = "#ff75a0", - line = "#2a2e36", -- for lines like vertsplit + line = "#2a2e36", green = "#A3BE8C", vibrant_green = "#7eca9c", nord_blue = "#81A1C1", - blue = "#61afef", + blue = "#82aaff", yellow = "#e7c787", sun = "#EBCB8B", purple = "#b4bbc8", @@ -29,8 +29,7 @@ local colors = { lightbg = "#2d3139", lightbg2 = "#262a32", pmenu_bg = "#A3BE8C", - folder_bg = "#61afef", + folder_bg = "#82aaff", } return colors - \ No newline at end of file From 5a57f091ef4e6002356d17b5082c9f7c50cea74d Mon Sep 17 00:00:00 2001 From: Phan Long Date: Tue, 8 Mar 2022 02:05:49 +0700 Subject: [PATCH 3/5] update material hl --- lua/hl_themes/material.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lua/hl_themes/material.lua b/lua/hl_themes/material.lua index 56dee80..abc1007 100644 --- a/lua/hl_themes/material.lua +++ b/lua/hl_themes/material.lua @@ -1,23 +1,23 @@ local colors = { - white = "#abb2bf", + white = "#eeffff", darker_black = "#1b1f27", - black = "#1e222a", -- nvim bg + black = "#1e222a", black2 = "#252931", - one_bg = "#282c34", -- real bg of onedark + one_bg = "#282c34", one_bg2 = "#353b45", one_bg3 = "#30343c", grey = "#42464e", - grey_fg = "#565c64", + grey_fg = "#b2ccd6", grey_fg2 = "#6f737b", light_grey = "#6f737b", red = "#d47d85", baby_pink = "#DE8C92", pink = "#ff75a0", - line = "#2a2e36", -- for lines like vertsplit + line = "#2a2e36", green = "#A3BE8C", vibrant_green = "#7eca9c", nord_blue = "#81A1C1", - blue = "#61afef", + blue = "#82aaff", yellow = "#e7c787", sun = "#EBCB8B", purple = "#b4bbc8", @@ -29,7 +29,7 @@ local colors = { lightbg = "#2d3139", lightbg2 = "#262a32", pmenu_bg = "#A3BE8C", - folder_bg = "#61afef", + folder_bg = "#82aaff", } return colors From d27cb07609daae408af8d9b581b89eab73f54ea5 Mon Sep 17 00:00:00 2001 From: Phan Long Date: Tue, 8 Mar 2022 10:07:32 +0700 Subject: [PATCH 4/5] Change name's theme to onedark-brighter --- lua/hl_themes/{material.lua => onedark-brighter.lua} | 0 lua/themes/{material-base16.lua => onedark-brighter-base16.lua} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename lua/hl_themes/{material.lua => onedark-brighter.lua} (100%) rename lua/themes/{material-base16.lua => onedark-brighter-base16.lua} (100%) diff --git a/lua/hl_themes/material.lua b/lua/hl_themes/onedark-brighter.lua similarity index 100% rename from lua/hl_themes/material.lua rename to lua/hl_themes/onedark-brighter.lua diff --git a/lua/themes/material-base16.lua b/lua/themes/onedark-brighter-base16.lua similarity index 100% rename from lua/themes/material-base16.lua rename to lua/themes/onedark-brighter-base16.lua From 3732b14a4a1c440c228402647fcce327c46d7c84 Mon Sep 17 00:00:00 2001 From: Phan Long Date: Tue, 8 Mar 2022 14:09:18 +0700 Subject: [PATCH 5/5] Renamed to onebright --- lua/hl_themes/{onedark-brighter.lua => onebright.lua} | 0 lua/themes/{onedark-brighter-base16.lua => onebright-base16.lua} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename lua/hl_themes/{onedark-brighter.lua => onebright.lua} (100%) rename lua/themes/{onedark-brighter-base16.lua => onebright-base16.lua} (100%) diff --git a/lua/hl_themes/onedark-brighter.lua b/lua/hl_themes/onebright.lua similarity index 100% rename from lua/hl_themes/onedark-brighter.lua rename to lua/hl_themes/onebright.lua diff --git a/lua/themes/onedark-brighter-base16.lua b/lua/themes/onebright-base16.lua similarity index 100% rename from lua/themes/onedark-brighter-base16.lua rename to lua/themes/onebright-base16.lua