diff options
Diffstat (limited to 'lua/lualine')
-rw-r--r-- | lua/lualine/themes/darkplus.lua | 31 | ||||
-rw-r--r-- | lua/lualine/themes/onedarker.lua | 6 |
2 files changed, 32 insertions, 5 deletions
diff --git a/lua/lualine/themes/darkplus.lua b/lua/lualine/themes/darkplus.lua new file mode 100644 index 00000000..8e710d1f --- /dev/null +++ b/lua/lualine/themes/darkplus.lua @@ -0,0 +1,31 @@ +local colors = { + blue = "#569cd6", + green = "#6a9955", + purple = "#c586c0", + red = "#d16969", + yellow = "#dcdcaa", + yellow_orange = "#d7ba7d", + orange = "#ce9178", + fg = "#b4b4b4", + bg = "#252525", + gray1 = "#252525", + gray2 = "#252525", + gray3 = "#252525", +} + +return { + normal = { + a = { fg = colors.fg, bg = colors.blue, gui = "bold" }, + b = { fg = colors.fg, bg = colors.bg }, + c = { fg = colors.fg, bg = colors.bg }, + }, + insert = { a = { fg = colors.fg, bg = colors.green, gui = "bold" } }, + visual = { a = { fg = colors.fg, bg = colors.purple, gui = "bold" } }, + command = { a = { fg = colors.fg, bg = colors.cyan, gui = "bold" } }, + replace = { a = { fg = colors.fg, bg = colors.red, gui = "bold" } }, + inactive = { + a = { fg = colors.gray1, bg = colors.bg, gui = "bold" }, + b = { fg = colors.gray1, bg = colors.bg }, + c = { fg = colors.gray1, bg = colors.bg }, + }, +} diff --git a/lua/lualine/themes/onedarker.lua b/lua/lualine/themes/onedarker.lua index 396657bb..da99017a 100644 --- a/lua/lualine/themes/onedarker.lua +++ b/lua/lualine/themes/onedarker.lua @@ -1,7 +1,3 @@ --- Copyright (c) 2020-2021 shadmansaleh --- MIT license, see LICENSE for more details. --- Credit: Zoltan Dalmadi(lightline) --- LuaFormatter off local colors = { blue = "#61afef", green = "#98c379", @@ -16,7 +12,7 @@ local colors = { gray2 = "#2c323d", gray3 = "#3e4452", } --- LuaFormatter on + return { normal = { a = { fg = colors.fg, bg = colors.blue, gui = "bold" }, |