Adding material theme (#65)
* Adding material theme Co-authored-by: hoob3rt <41551030+hoob3rt@users.noreply.github.com>
This commit is contained in:
parent
0a7b9ff0cb
commit
4456e5ff4a
@ -21,6 +21,12 @@ All available themes are only best effort ports by myself/ other users. If you f
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
### material
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
### molokai
|
### molokai
|
||||||

|

|
||||||

|

|
||||||
|
51
lua/lualine/themes/material.lua
Normal file
51
lua/lualine/themes/material.lua
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
-- =============================================================================
|
||||||
|
-- Filename: lua/lightline/themes/material.lua
|
||||||
|
-- Author: shadman
|
||||||
|
-- Credit: Lokesh Krishna(lightline)
|
||||||
|
-- License: MIT License
|
||||||
|
-- =============================================================================
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
local colors = {
|
||||||
|
fg = '#eeffff',
|
||||||
|
bg = '#263238',
|
||||||
|
blue = '#82aaff',
|
||||||
|
green = '#c3e88d',
|
||||||
|
purple = '#c792ea',
|
||||||
|
red1 = '#f07178',
|
||||||
|
red2 = '#ff5370',
|
||||||
|
yellow = '#ffcb6b',
|
||||||
|
gray1 = '#314549',
|
||||||
|
gray2 = '#2E3C43',
|
||||||
|
gray3 = '#515559',
|
||||||
|
}
|
||||||
|
|
||||||
|
M.normal = {
|
||||||
|
a = { fg = colors.bg, bg = colors.blue , gui = 'bold', },
|
||||||
|
b = { fg = colors.fg, bg = colors.gray3 , },
|
||||||
|
c = { fg = colors.fg, bg = colors.gray2 , }
|
||||||
|
}
|
||||||
|
|
||||||
|
M.insert = {
|
||||||
|
a = { fg = colors.bg, bg = colors.green, 'bold' , gui = 'bold', },
|
||||||
|
b = { fg = colors.fg, bg = colors.gray3 , },
|
||||||
|
}
|
||||||
|
|
||||||
|
M.visual = {
|
||||||
|
a = { fg = colors.bg, bg = colors.purple, 'bold' , gui = 'bold', },
|
||||||
|
b = { fg = colors.fg, bg = colors.gray3 , },
|
||||||
|
}
|
||||||
|
|
||||||
|
M.replace = {
|
||||||
|
a = { fg = colors.bg, bg = colors.red1 , gui = 'bold', },
|
||||||
|
b = { fg = colors.fg, bg = colors.gray3 , },
|
||||||
|
}
|
||||||
|
|
||||||
|
M.inactive = {
|
||||||
|
a = { fg = colors.fg, bg = colors.bg , gui = 'bold', },
|
||||||
|
b = { fg = colors.fg, bg = colors.bg , },
|
||||||
|
c = { fg = colors.fg, bg = colors.gray2 , },
|
||||||
|
}
|
||||||
|
|
||||||
|
return M
|
Loading…
x
Reference in New Issue
Block a user