From 0f458a04688d71d194fc104351f8cda5aff936af Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Mon, 30 Aug 2021 00:59:23 -0400 Subject: onedarker colorscheme --- lua/onedarker/palette.lua | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 lua/onedarker/palette.lua (limited to 'lua/onedarker/palette.lua') diff --git a/lua/onedarker/palette.lua b/lua/onedarker/palette.lua new file mode 100644 index 00000000..c3116b1e --- /dev/null +++ b/lua/onedarker/palette.lua @@ -0,0 +1,39 @@ +local colors = { + fg = "#abb2bf", + bg = "#1f2227", + alt_bg = "#282c34", + dark = "#282c34", + accent = "#BBBBBB", + dark_gray = "#2a2f3e", + context = "#4b5263", + popup_back = "#282c34", + search_orange = "#613214", + search_blue = "#5e81ac", + gray = "#5c6370", + light_gray = "#abb2bf", + blue = "#61AFEF", + dark_blue = "#223E55", + green = "#98C379", + cyan = "#56B6C2", + red = "#e06c75", + orange = "#D19A66", + light_red = "#be5046", + yellow = "#E5C07B", + yellow_orange = "#D7BA7D", + purple = "#C678DD", + magenta = "#D16D9E", + cursor_fg = "#515052", + cursor_bg = "#AEAFAD", + sign_add = "#587c0c", + sign_change = "#0c7d9d", + sign_delete = "#94151b", + error_red = "#F44747", + warning_orange = "#ff8800", + info_yellow = "#FFCC66", + hint_blue = "#4FC1FF", + purple_test = "#ff007c", + cyan_test = "#00dfff", + ui_blue = "#264F78", +} + +return colors -- cgit v1.2.3 From 61b56a7bb19771247fc2c40b453d0f905581125e Mon Sep 17 00:00:00 2001 From: Subho Banerjee Date: Sun, 26 Sep 2021 02:20:50 -0500 Subject: fix: Adding `Diff*` highlight groups in onedarker (#1594) Fixes #1576 --- lua/onedarker/palette.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lua/onedarker/palette.lua') diff --git a/lua/onedarker/palette.lua b/lua/onedarker/palette.lua index c3116b1e..ab15d392 100644 --- a/lua/onedarker/palette.lua +++ b/lua/onedarker/palette.lua @@ -1,4 +1,5 @@ local colors = { + none = "NONE", fg = "#abb2bf", bg = "#1f2227", alt_bg = "#282c34", @@ -34,6 +35,10 @@ local colors = { purple_test = "#ff007c", cyan_test = "#00dfff", ui_blue = "#264F78", + diff_add = "#303d27", + diff_delete = "#6e3b40", + diff_change = "#18344c", + diff_text = "#265478", } return colors -- cgit v1.2.3 From 1e0d0181d55abe1e4248b3aeaded94cbf3308168 Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Sat, 2 Oct 2021 18:04:38 +0330 Subject: feat: make lsp highlight color configurable (#1659) --- lua/onedarker/palette.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'lua/onedarker/palette.lua') diff --git a/lua/onedarker/palette.lua b/lua/onedarker/palette.lua index ab15d392..81ea3af3 100644 --- a/lua/onedarker/palette.lua +++ b/lua/onedarker/palette.lua @@ -6,6 +6,7 @@ local colors = { dark = "#282c34", accent = "#BBBBBB", dark_gray = "#2a2f3e", + fg_gutter = "#353d46", context = "#4b5263", popup_back = "#282c34", search_orange = "#613214", -- cgit v1.2.3