fix(onedark): update highlights

This commit is contained in:
2026-01-05 19:25:59 +01:00
parent 8c78104d7a
commit 8c649922fa
+13 -14
View File
@@ -9,23 +9,22 @@ return {
local highlights = { local highlights = {
["@string.special.url"] = { fg = "NONE", fmt = "NONE" }, ["@string.special.url"] = { fg = "NONE", fmt = "NONE" },
Cursor = { fg = c.bg, bg = c.fg, fmt = "NONE" }, Cursor = { fg = c.bg, bg = c.fg, fmt = "NONE" },
NormalFloat = { bg = c.bg0 }, FloatTitle = { fg = c.orange, bg = c.bg_d },
FloatBorder = { bg = c.bg0 }, NormalFloat = { bg = c.bg_d },
TabLineSel = { fg = c.fg, bg = c.bg0 }, FloatBorder = { bg = c.bg_d },
TabLine = { fg = c.grey, bg = c.bg1 },
TabLineSel = { fg = c.fg, bg = c.bg2 },
TabLineFill = { bg = c.bg1 },
EndOfBuffer = { fg = "NONE", bg = "NONE" }, EndOfBuffer = { fg = "NONE", bg = "NONE" },
NvimTreeIndentMarker = { fg = c.bg3 }, NvimTreeIndentMarker = { fg = c.bg3 },
TelescopeBorder = { fg = c.orange }, TelescopeNormal = { bg = c.bg_d },
TelescopePromptBorder = { fg = c.grey }, TelescopeTitle = { fg = c.orange, bg = c.bg_d },
TelescopeResultsBorder = { fg = c.grey }, TelescopePromptBorder = { fg = c.grey, bg = c.bg_d },
TelescopePreviewBorder = { fg = c.grey }, TelescopeResultsBorder = { fg = c.grey, bg = c.bg_d },
TreesitterContextBottom = { fmt = "underline", sp = c.bg3 }, TelescopePreviewBorder = { fg = c.grey, bg = c.bg_d },
TreesitterContextLineNumberBottom = { DiffAdd = { bg = "#1a2f22" },
fmt = "underline",
sp = c.bg3,
},
DiffAdd = { bg = "#1e3a2a" },
DiffChange = { bg = "#15304a" }, DiffChange = { bg = "#15304a" },
DiffDelete = { bg = "#3d2224" }, DiffDelete = { bg = "#311c1e" },
} }
require("onedark").set_options("highlights", highlights) require("onedark").set_options("highlights", highlights)
require("onedark").load() require("onedark").load()