summaryrefslogtreecommitdiff
path: root/lua/lualine/themes/onedarker.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-03-19 13:55:34 +0100
committerGitHub <[email protected]>2022-03-19 16:25:34 +0330
commit1488deebc714d66427fe0b55e6b9df0a0db97df4 (patch)
tree7bcdfee15d1bfeaf335fb6321d53ac43ed88307d /lua/lualine/themes/onedarker.lua
parent5a8ccd9fcb3b7be2a07d92246e7bc764409ed537 (diff)
refactor: load onedarker theme externally (#2359)
Diffstat (limited to 'lua/lualine/themes/onedarker.lua')
-rw-r--r--lua/lualine/themes/onedarker.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/lua/lualine/themes/onedarker.lua b/lua/lualine/themes/onedarker.lua
deleted file mode 100644
index 85904eeb..00000000
--- a/lua/lualine/themes/onedarker.lua
+++ /dev/null
@@ -1,35 +0,0 @@
--- Copyright (c) 2020-2021 shadmansaleh
--- MIT license, see LICENSE for more details.
--- Credit: Zoltan Dalmadi(lightline)
--- LuaFormatter off
-local colors = {
- blue = "#61afef",
- green = "#98c379",
- purple = "#c678dd",
- red1 = "#e06c75",
- red2 = "#be5046",
- yellow = "#e5c07b",
- orange = "#D19A66",
- fg = "#abb2bf",
- bg = "#282c34",
- gray1 = "#5c6370",
- gray2 = "#2c323d",
- gray3 = "#3e4452",
-}
--- LuaFormatter on
-return {
- normal = {
- a = { fg = colors.gray2, bg = colors.blue, gui = "bold" },
- b = { fg = colors.fg, bg = colors.bg },
- c = { fg = colors.fg, bg = colors.bg },
- },
- insert = { a = { fg = colors.gray2, bg = colors.green, gui = "bold" } },
- visual = { a = { fg = colors.gray2, bg = colors.purple, gui = "bold" } },
- command = { a = { fg = colors.gray2, bg = colors.yellow, gui = "bold" } },
- replace = { a = { fg = colors.gray2, bg = colors.red1, 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 },
- },
-}