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/ayu_light | |
| parent | update submodule (diff) | |
update submodule, include new nvchad themes
Diffstat (limited to 'lua/ayu_light')
| -rw-r--r-- | lua/ayu_light/init.lua | 2 | ||||
| -rw-r--r-- | lua/ayu_light/palette.lua | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lua/ayu_light/init.lua b/lua/ayu_light/init.lua index 8ffbec0..68a34ea 100644 --- a/lua/ayu_light/init.lua +++ b/lua/ayu_light/init.lua @@ -4,7 +4,7 @@ local theme = require('ayu_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/ayu_light/palette.lua b/lua/ayu_light/palette.lua index 2e5ff8f..b2912e7 100644 --- a/lua/ayu_light/palette.lua +++ b/lua/ayu_light/palette.lua @@ -1,8 +1,8 @@ local colors = { white = "#26292f", - darker_black = "#ededed", + darker_black = "#f3f3f3", black = "#fafafa", - black2 = "#e3e3e3", + black2 = "#efefef", one_bg = "#ebebeb", one_bg2 = "#e1e1e1", one_bg3 = "#d7d7d7", @@ -31,8 +31,8 @@ local colors = { folder_bg = "#5C6166", base00 = "#fafafa", base01 = "#f0f0f0", - base02 = "#e6e6e6", - base03 = "#dcdcdc", + base02 = "#eeeeee", + base03 = "#dfdfdf", base04 = "#d2d2d2", base05 = "#5C6166", base06 = "#52575c", |