diff options
| author | Ken Zhou <kendotzhou@gmail.com> | 2023-04-19 13:59:30 -0400 |
|---|---|---|
| committer | Ken Zhou <kendotzhou@gmail.com> | 2023-04-19 13:59:30 -0400 |
| commit | 9b142cf7ecef300d6e66f05ed8ae77f4e358bfcd (patch) | |
| tree | 0d7ff3d6832133a0dc71ae15dffe0f13d1feeddf /lua/everforest_light | |
| parent | update submodule (diff) | |
update submodule, include new nvchad themes
Diffstat (limited to 'lua/everforest_light')
| -rw-r--r-- | lua/everforest_light/init.lua | 2 | ||||
| -rw-r--r-- | lua/everforest_light/palette.lua | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/lua/everforest_light/init.lua b/lua/everforest_light/init.lua index 88dcfce..9cc597a 100644 --- a/lua/everforest_light/init.lua +++ b/lua/everforest_light/init.lua @@ -4,7 +4,7 @@ local theme = require('everforest_light.theme') M.setup = function() vim.cmd('hi clear') - vim.o.background = 'light' + vim.o.background = 'dark' if vim.fn.exists('syntax_on') then vim.cmd('syntax reset') end diff --git a/lua/everforest_light/palette.lua b/lua/everforest_light/palette.lua index 2868dce..81a3817 100644 --- a/lua/everforest_light/palette.lua +++ b/lua/everforest_light/palette.lua @@ -2,14 +2,14 @@ local colors = { white = "#272f35", darker_black = "#f5efde", black = "#fff9e8", - black2 = "#ebe5d4", - one_bg = "#c6c2aa", - one_bg2 = "#b6b29a", - one_bg3 = "#a6a28a", - grey = "#a6b0a0", - grey_fg = "#939f91", - grey_fg2 = "#829181", - light_grey = "#798878", + black2 = "#F0EAD9", + one_bg = "#E0DAC9", + one_bg2 = "#D1CBBA", + one_bg3 = "#C2BCAB", + grey = "#B3AD9C", + grey_fg = "#A39D8C", + grey_fg2 = "#948E7D", + light_grey = "#857F6E", red = "#c85552", baby_pink = "#ce8196", pink = "#ef6590", @@ -24,7 +24,7 @@ local colors = { dark_purple = "#966986", teal = "#69a59d", orange = "#F7954F", - cyan = "#7521e9", + cyan = "#89bfdc", statusline_bg = "#ede7d6", lightbg = "#d3cdbc", pmenu_bg = "#5f9b93", |