aboutsummaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorkramo <93832451+kra-mo@users.noreply.github.com>2024-05-14 21:39:06 +0200
committerGitHub <noreply@github.com>2024-05-14 21:39:06 +0200
commit9e954b0eec8d193305c0e3b8e0f1440959dfd95b (patch)
treecc011a3cdbd814ad880b7a5ff4601c9544500494 /colors
parent586a8e581d6e37474ebdb5cc0b3bf0a8700ede86 (diff)
downloadlite-xl-colors-9e954b0eec8d193305c0e3b8e0f1440959dfd95b.tar.gz
lite-xl-colors-9e954b0eec8d193305c0e3b8e0f1440959dfd95b.zip
Everforest improvements + Everforest light (#41)
* everforest: Fix scrollbar color Make scrollbar light on dark instead of dark on light * everforest_light: Add theme
Diffstat (limited to 'colors')
-rw-r--r--colors/everforest.lua5
-rw-r--r--colors/everforest_light.lua31
2 files changed, 34 insertions, 2 deletions
diff --git a/colors/everforest.lua b/colors/everforest.lua
index 6dca9b9..4eb0466 100644
--- a/colors/everforest.lua
+++ b/colors/everforest.lua
@@ -13,8 +13,9 @@ style.selection = { common.color "#2E383C"}
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.scrollbar = { common.color "#4F5B58"}
+style.scrollbar2 = { common.color "#4F5B58"}
+style.scrollbar_track = { common.color "#272E33"}
style.syntax["normal"] = { common.color "#D3C6AA"}
style.syntax["symbol"] = { common.color "#D3C6AA"}
diff --git a/colors/everforest_light.lua b/colors/everforest_light.lua
new file mode 100644
index 0000000..8dee963
--- /dev/null
+++ b/colors/everforest_light.lua
@@ -0,0 +1,31 @@
+local style = require "core.style"
+local common = require "core.common"
+
+style.background = { common.color "#FFFBEF"}
+style.background2 = { common.color "#FFFBEF"}
+style.background3 = { common.color "#FFFBEF"}
+style.text = { common.color "#5C6A72"}
+style.caret = { common.color "#93B259"}
+style.accent = { common.color "#93B259"}
+style.dim = { common.color "#939F91"}
+style.divider = { common.color "#E8E5D5"}
+style.selection = { common.color "#E8E5D5"}
+style.line_number = {common.color "#BEC5B2"}
+style.line_number2 = {common.color "#829181"}
+style.line_highlight = {common.color "#F8F5E4"}
+style.scrollbar = { common.color "#BEC5B2"}
+style.scrollbar2 = { common.color "#BEC5B2"}
+style.scrollbar_track = { common.color "#EDEADA"}
+style.drag_overlay = { common.color "#BEC5B233"}
+
+style.syntax["normal"] = { common.color "#5C6A72"}
+style.syntax["symbol"] = { common.color "#5C6A72"}
+style.syntax["comment"] = {common.color "#A6B0A0"}
+style.syntax["keyword"] = {common.color "#F85552"}
+style.syntax["keyword2"] = {common.color "#F85552"}
+style.syntax["number"] = {common.color "#DF69BA"}
+style.syntax["literal"] = {common.color "#3A94C5"}
+style.syntax["string"] = {common.color "#35A77C"}
+style.syntax["operator"] = {common.color "#DFA000"}
+style.syntax["function"] = {common.color "#8DA101"}
+