From f6989b89af28b3b9a809fc3ea8d17c5fcfc904d7 Mon Sep 17 00:00:00 2001 From: Elia <75450597+vequve@users.noreply.github.com> Date: Sun, 5 Mar 2023 13:19:18 +0000 Subject: Add everforest Theme (#21) * Added Everforest theme * Updated README * Added Preview --------- Co-authored-by: vequve --- README.md | 2 +- colors/everforest.lua | 29 +++++++++++++++++++++++++++++ previews/everforest.svg | 16 ++++++++++++++++ 3 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 colors/everforest.lua create mode 100644 previews/everforest.svg diff --git a/README.md b/README.md index 67b6aa7..8863e1e 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Theme | Preview [`vscode-dark`](colors/vscode-dark.lua?raw=1) | ![vscode-dark_preview](previews/vscode-dark.svg) [`winter`](colors/winter.lua?raw=1) | ![winter_preview](previews/winter.svg) [`zenburn`](colors/zenburn.lua?raw=1) | ![zenburn_preview](previews/zenburn.svg) - +[`everforest`](colors/everforest.lua?raw=1) | ![everforest_preview](previews/everforest.svg) ## Light Theme | Preview diff --git a/colors/everforest.lua b/colors/everforest.lua new file mode 100644 index 0000000..2a99d46 --- /dev/null +++ b/colors/everforest.lua @@ -0,0 +1,29 @@ +local style = require "core.style" +local common = require "core.common" + +style.background = { common.color "#1E2326"} +style.background2 = { common.color "#1E2326"} +style.background3 = { common.color "#1E2326"} +style.text = { common.color "#D3C6AA"} +style.caret = { common.color "#A7C080"} +style.accent = { common.color "#A7C080"} +style.dim = { common.color "#859289"} +style.divider = { common.color "#272E33"} +style.selection = { common.color "#272E30"} +style.line_number = {common.color "#2E383C"} +style.line_number2 = {common.color "#374145"} +style.line_highlight = {common.color "#272E33"} +style.scrollbar = { common.color "#272E33"} +style.scrollbar2 = { common.color "#272E33"} + +style.syntax["normal"] = { common.color "#D3C6AA"} +style.syntax["symbol"] = { common.color "#D3C6AA"} +style.syntax["comment"] = {common.color "#4F5B58"} +style.syntax["keyword"] = {common.color "#E67E80"} +style.syntax["keyword2"] = {common.color "#E67E80"} +style.syntax["number"] = {common.color "#D699B6"} +style.syntax["literal"] = {common.color "#7FBBB3"} +style.syntax["string"] = {common.color "#83C092"} +style.syntax["operator"] = {common.color "#DBBC7F"} +style.syntax["function"] = {common.color "#A7C080"} + diff --git a/previews/everforest.svg b/previews/everforest.svg new file mode 100644 index 0000000..dbe79cc --- /dev/null +++ b/previews/everforest.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3