diff options
author | kramo <93832451+kra-mo@users.noreply.github.com> | 2024-03-29 13:47:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-29 13:47:33 +0100 |
commit | 8930121fb0569fca814c8f42649cb51afffb30f3 (patch) | |
tree | c3dce7b80d0b72258f54c1182295fa59492907ad | |
parent | 794f72744457e072f6a53e2fa928c47acdec5e55 (diff) | |
download | lite-xl-colors-8930121fb0569fca814c8f42649cb51afffb30f3.tar.gz lite-xl-colors-8930121fb0569fca814c8f42649cb51afffb30f3.zip |
everforest: Fix selection color (#35)
* Fix selection color
It was set to a color that is not even part of the Everforest theme and is only barely different from the line highlight color, so it was not actually visible on the line you had your cursor on.
* Update Everforest version
-rw-r--r-- | colors/everforest.lua | 2 | ||||
-rw-r--r-- | manifest.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/colors/everforest.lua b/colors/everforest.lua index 2a99d46..6dca9b9 100644 --- a/colors/everforest.lua +++ b/colors/everforest.lua @@ -9,7 +9,7 @@ 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.selection = { common.color "#2E383C"} style.line_number = {common.color "#2E383C"} style.line_number2 = {common.color "#374145"} style.line_highlight = {common.color "#272E33"} diff --git a/manifest.json b/manifest.json index c93c637..520ccb1 100644 --- a/manifest.json +++ b/manifest.json @@ -165,7 +165,7 @@ "dark" ], "type" : "color", - "version" : "0.1" + "version" : "0.2" }, { "id" : "flexoki_dark", |