feat: palenight theme (#123)
Based on https://github.com/drewtempelmeyer/palenight.vim
This commit is contained in:
parent
d019c04afc
commit
8c8a489612
@ -117,6 +117,12 @@ All available themes are only best effort ports by myself/ other users. If you f
|
||||

|
||||

|
||||
|
||||
### palenight
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
### papercolor_dark
|
||||

|
||||

|
||||
|
44
lua/lualine/themes/palenight.lua
Normal file
44
lua/lualine/themes/palenight.lua
Normal file
@ -0,0 +1,44 @@
|
||||
local colors = {
|
||||
vertsplit = "#181A1F",
|
||||
special_grey = "#3B4048",
|
||||
menu_grey = "#3E4452",
|
||||
cursor_grey = "#2C323C",
|
||||
gutter_fg_grey = "#4B5263",
|
||||
blue = "#82b1ff",
|
||||
dark_red = "#BE5046",
|
||||
white = "#bfc7d5",
|
||||
green = "#C3E88D",
|
||||
purple = "#c792ea",
|
||||
yellow = "#ffcb6b",
|
||||
light_red = "#ff869a",
|
||||
red = "#ff5370",
|
||||
dark_yellow = "#F78C6C",
|
||||
cyan = "#89DDFF",
|
||||
comment_grey = "#697098",
|
||||
black = "#292D3E",
|
||||
}
|
||||
|
||||
return {
|
||||
normal = {
|
||||
a = { fg = colors.black, bg = colors.purple, "bold" },
|
||||
b = { fg = colors.purple, bg = colors.menu_grey },
|
||||
c = { fg = colors.comment_grey, bg = colors.black },
|
||||
},
|
||||
insert = {
|
||||
a = { fg = colors.black, bg = colors.blue, "bold" },
|
||||
b = { fg = colors.blue, bg = colors.menu_grey },
|
||||
},
|
||||
visual = {
|
||||
a = { fg = colors.black, bg = colors.cyan, "bold", },
|
||||
b = { fg = colors.cyan, bg = colors.menu_grey },
|
||||
},
|
||||
replace = {
|
||||
a = { fg = colors.black, bg = colors.green, "bold" },
|
||||
b = { fg = colors.green, bg = colors.menu_grey },
|
||||
},
|
||||
inactive = {
|
||||
a = { fg = colors.black, bg = colors.menu_grey, "bold" },
|
||||
b = { fg = colors.black, bg = colors.menu_grey },
|
||||
c = { fg = colors.black, bg = colors.menu_grey },
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user