Skip to content

Commit

Permalink
Everforest improvements + Everforest light (#41)
Browse files Browse the repository at this point in the history
* everforest: Fix scrollbar color

Make scrollbar light on dark instead of dark on light

* everforest_light: Add theme
  • Loading branch information
kra-mo authored and jgmdev committed May 16, 2024
1 parent 3d06b01 commit c8a16c7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 3 deletions.
5 changes: 3 additions & 2 deletions colors/everforest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
31 changes: 31 additions & 0 deletions colors/everforest_light.lua
Original file line number Diff line number Diff line change
@@ -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"}

13 changes: 12 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,18 @@
"dark"
],
"type" : "color",
"version" : "0.2"
"version" : "0.3"
},
{
"id" : "everforest_light",
"mod_version" : "3.0.0",
"name" : "everforest_light",
"path" : "colors/everforest_light.lua",
"tags" : [
"light"
],
"type" : "color",
"version" : "0.1"
},
{
"id" : "flexoki_dark",
Expand Down

0 comments on commit c8a16c7

Please sign in to comment.