forest_night -> everforest (#152)

https://github.com/sainnhe/everforest/issues/43
This commit is contained in:
Evan Travers 2021-03-30 20:35:38 -05:00 committed by GitHub
parent 3f1939d78f
commit e057def23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 14 deletions

View File

@ -41,11 +41,11 @@ lualine try to match your colorscheme.
![draculavisual_cropped](https://user-images.githubusercontent.com/41551030/108648606-f4d15d00-74bb-11eb-8327-a35e97533617.png) ![draculavisual_cropped](https://user-images.githubusercontent.com/41551030/108648606-f4d15d00-74bb-11eb-8327-a35e97533617.png)
![draculareplace_cropped](https://user-images.githubusercontent.com/41551030/108648619-fe5ac500-74bb-11eb-8952-cc5c81fd0b2b.png) ![draculareplace_cropped](https://user-images.githubusercontent.com/41551030/108648619-fe5ac500-74bb-11eb-8952-cc5c81fd0b2b.png)
### forest_night ### everforest
![forestnightnormal_cropped](https://user-images.githubusercontent.com/41551030/108648663-1cc0c080-74bc-11eb-8cc1-36266a0385e3.png) ![everforestnormal_cropped](https://user-images.githubusercontent.com/41551030/108648663-1cc0c080-74bc-11eb-8cc1-36266a0385e3.png)
![forestnightinsert_cropped](https://user-images.githubusercontent.com/41551030/108648667-1df1ed80-74bc-11eb-9ef8-dfd2e8401f0c.png) ![everforestinsert_cropped](https://user-images.githubusercontent.com/41551030/108648667-1df1ed80-74bc-11eb-9ef8-dfd2e8401f0c.png)
![forestnightvisual_cropped](https://user-images.githubusercontent.com/41551030/108648671-21857480-74bc-11eb-996e-a5cf212e98bd.png) ![everforestvisual_cropped](https://user-images.githubusercontent.com/41551030/108648671-21857480-74bc-11eb-996e-a5cf212e98bd.png)
![forestnightreplace_cropped](https://user-images.githubusercontent.com/41551030/108648675-22b6a180-74bc-11eb-9b8e-45e64a03e062.png) ![everforestreplace_cropped](https://user-images.githubusercontent.com/41551030/108648675-22b6a180-74bc-11eb-9b8e-45e64a03e062.png)
### gruvbox ### gruvbox
![gruvboxnormal_cropped](https://user-images.githubusercontent.com/41551030/108648685-2b0edc80-74bc-11eb-9ec9-9aac3677df43.png) ![gruvboxnormal_cropped](https://user-images.githubusercontent.com/41551030/108648685-2b0edc80-74bc-11eb-9ec9-9aac3677df43.png)

View File

@ -1,6 +1,6 @@
-- Copyright (c) 2020-2021 gnuyent -- Copyright (c) 2020-2021 gnuyent
-- MIT license, see LICENSE for more details. -- MIT license, see LICENSE for more details.
local forest_night = {} local everforest = {}
-- LuaFormatter off -- LuaFormatter off
local colors = { local colors = {
bg0 = '#323d43', bg0 = '#323d43',
@ -16,46 +16,46 @@ local colors = {
} }
-- LuaFormatter on -- LuaFormatter on
forest_night.normal = { everforest.normal = {
a = {bg = colors.green, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.green, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.insert = { everforest.insert = {
a = {bg = colors.fg, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.fg, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.visual = { everforest.visual = {
a = {bg = colors.red, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.red, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.replace = { everforest.replace = {
a = {bg = colors.orange, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.orange, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.command = { everforest.command = {
a = {bg = colors.aqua, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.aqua, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.terminal = { everforest.terminal = {
a = {bg = colors.purple, fg = colors.bg0, gui = 'bold'}, a = {bg = colors.purple, fg = colors.bg0, gui = 'bold'},
b = {bg = colors.bg3, fg = colors.fg}, b = {bg = colors.bg3, fg = colors.fg},
c = {bg = colors.bg1, fg = colors.fg} c = {bg = colors.bg1, fg = colors.fg}
} }
forest_night.inactive = { everforest.inactive = {
a = {bg = colors.bg1, fg = colors.grey1, gui = 'bold'}, a = {bg = colors.bg1, fg = colors.grey1, gui = 'bold'},
b = {bg = colors.bg1, fg = colors.grey1}, b = {bg = colors.bg1, fg = colors.grey1},
c = {bg = colors.bg1, fg = colors.grey1} c = {bg = colors.bg1, fg = colors.grey1}
} }
return forest_night return everforest