enc: add config lualine eva-dark theme

This commit is contained in:
Pojok Code 2024-07-20 18:25:02 +07:00
parent 52b270121f
commit 224d29c616
3 changed files with 32 additions and 2 deletions

View file

@ -45,7 +45,7 @@
"nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" },
"nvim-scrollview": { "branch": "main", "commit": "30ca6e18265928eb4ea7402346b4dfddbd8ce41e" },
"nvim-tree.lua": { "branch": "master", "commit": "f9ff00bc06d7cb70548a3847d7a2a05e928bc988" },
"nvim-treesitter": { "branch": "master", "commit": "4e387dd47833c1bb8c8df6c3a7cab0d4c55583f3" },
"nvim-treesitter": { "branch": "master", "commit": "667b9dbbfa2d0071c5677c429ddcf89fb931b53f" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "34867c69838078df7d6919b130c0541c0b400c47" },
"nvim-ts-autotag": { "branch": "main", "commit": "1624866a1379fc1861797f0ed05899a9c1d2ff61" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "6b5f95aa4d24f2c629a74f2c935c702b08dbde62" },

View file

@ -33,6 +33,36 @@ return {
colors.cyan = clr.yellow
set_theme = "bubbles_theme"
end,
["Eva-Dark"] = function()
colors.skyblue_1 = "#56B7C3"
colors.grey = "#3b4261"
colors.blue = "#98C379"
colors.cyan = "#B0B7C3"
colors.yellow = "#EF973A"
colors.green1 = "#6495EE"
colors.red = "#E06C75"
set_theme = "bubbles_theme"
end,
["Eva-Dark-Italic"] = function()
colors.skyblue_1 = "#598DEF"
colors.grey = "#3b4261"
colors.blue = "#98C379"
colors.cyan = "#B0B7C3"
colors.yellow = "#EF973A"
colors.green1 = "#56B7C3"
colors.red = "#E06C75"
set_theme = "bubbles_theme"
end,
["Eva-Dark-Bold"] = function()
colors.skyblue_1 = "#598DEF"
colors.grey = "#3b4261"
colors.blue = "#98C379"
colors.cyan = "#B0B7C3"
colors.yellow = "#EF973A"
colors.green1 = "#56B7C3"
colors.red = "#E06C75"
set_theme = "bubbles_theme"
end,
default = function()
set_theme = "auto"
end,

View file

@ -329,7 +329,7 @@ return {
return {
normal = {
a = { fg = colors.black, bg = colors.skyblue_1 },
b = { fg = colors.white, bg = colors.grey },
b = { fg = colors.skyblue_1, bg = colors.grey },
c = { fg = colors.white, bg = colors.black_transparant },
},