Added nord theme (#24)
* Added nord theme Credit : Ported from lightline nord theme * Added nord to THEMES.md * Checked nord theme in README.md
This commit is contained in:
parent
39dc034335
commit
3a82c3b345
@ -259,4 +259,4 @@ Please create an issue/ pr if you want to see more functionality implemented
|
|||||||
- [ ] [dense-analysis/ale](https://github.com/dense-analysis/ale)
|
- [ ] [dense-analysis/ale](https://github.com/dense-analysis/ale)
|
||||||
- Themes
|
- Themes
|
||||||
- [ ] support for `notermguicolors`
|
- [ ] support for `notermguicolors`
|
||||||
- [ ] nord theme
|
- [x] nord theme
|
||||||
|
@ -15,6 +15,12 @@ All available themes are only best effort ports by myself/ other users. If you f
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
### nord
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
### onedark
|
### onedark
|
||||||

|

|
||||||

|

|
||||||
|
76
lua/lualine/themes/nord.lua
Normal file
76
lua/lualine/themes/nord.lua
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
local M = { }
|
||||||
|
|
||||||
|
local colors = {
|
||||||
|
nord1 = "#3B4252",
|
||||||
|
nord3 = "#4C566A",
|
||||||
|
nord5 = "#E5E9F0",
|
||||||
|
nord6 = "#ECEFF4",
|
||||||
|
nord7 = "#8FBCBB",
|
||||||
|
nord8 = "#88C0D0",
|
||||||
|
nord13 = "#EBCB8B",
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
M.normal = {
|
||||||
|
a = {
|
||||||
|
fg = colors.nord1,
|
||||||
|
bg = colors.nord8,
|
||||||
|
},
|
||||||
|
b = {
|
||||||
|
fg = colors.nord5,
|
||||||
|
bg = colors.nord1,
|
||||||
|
},
|
||||||
|
c = {
|
||||||
|
fg = colors.nord5,
|
||||||
|
bg = colors.nord3,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
M.insert = {
|
||||||
|
a = {
|
||||||
|
fg = colors.nord1,
|
||||||
|
bg = colors.nord6,
|
||||||
|
},
|
||||||
|
b = M.normal.b,
|
||||||
|
c = M.normal.c,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
M.visual = {
|
||||||
|
a = {
|
||||||
|
fg = colors.nord1,
|
||||||
|
bg = colors.nord7,
|
||||||
|
},
|
||||||
|
b = M.normal.b,
|
||||||
|
c = M.normal.c,
|
||||||
|
}
|
||||||
|
|
||||||
|
M.replace = {
|
||||||
|
a = {
|
||||||
|
fg = colors.nord1,
|
||||||
|
bg = colors.nord13,
|
||||||
|
},
|
||||||
|
b = M.normal.b,
|
||||||
|
c = M.normal.c,
|
||||||
|
}
|
||||||
|
|
||||||
|
M.command = M.normal
|
||||||
|
|
||||||
|
M.terminal = M.normal
|
||||||
|
|
||||||
|
M.inactive = {
|
||||||
|
a = {
|
||||||
|
fg = colors.nord1,
|
||||||
|
bg = colors.nord8,
|
||||||
|
},
|
||||||
|
b = {
|
||||||
|
fg = colors.nord5,
|
||||||
|
bg = colors.nord1,
|
||||||
|
},
|
||||||
|
c = {
|
||||||
|
fg = colors.nord5,
|
||||||
|
bg = colors.nord1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return M
|
Loading…
x
Reference in New Issue
Block a user