From 8c649922fada82c11cab3b3c165282c272487459 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 5 Jan 2026 19:25:59 +0100 Subject: [PATCH] fix(onedark): update highlights --- lua/plugins/onedark.lua | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/lua/plugins/onedark.lua b/lua/plugins/onedark.lua index 82c7fa9..edddca3 100644 --- a/lua/plugins/onedark.lua +++ b/lua/plugins/onedark.lua @@ -9,23 +9,22 @@ return { local highlights = { ["@string.special.url"] = { fg = "NONE", fmt = "NONE" }, Cursor = { fg = c.bg, bg = c.fg, fmt = "NONE" }, - NormalFloat = { bg = c.bg0 }, - FloatBorder = { bg = c.bg0 }, - TabLineSel = { fg = c.fg, bg = c.bg0 }, + FloatTitle = { fg = c.orange, bg = c.bg_d }, + NormalFloat = { bg = c.bg_d }, + 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" }, NvimTreeIndentMarker = { fg = c.bg3 }, - TelescopeBorder = { fg = c.orange }, - TelescopePromptBorder = { fg = c.grey }, - TelescopeResultsBorder = { fg = c.grey }, - TelescopePreviewBorder = { fg = c.grey }, - TreesitterContextBottom = { fmt = "underline", sp = c.bg3 }, - TreesitterContextLineNumberBottom = { - fmt = "underline", - sp = c.bg3, - }, - DiffAdd = { bg = "#1e3a2a" }, + TelescopeNormal = { bg = c.bg_d }, + TelescopeTitle = { fg = c.orange, bg = c.bg_d }, + TelescopePromptBorder = { fg = c.grey, bg = c.bg_d }, + TelescopeResultsBorder = { fg = c.grey, bg = c.bg_d }, + TelescopePreviewBorder = { fg = c.grey, bg = c.bg_d }, + DiffAdd = { bg = "#1a2f22" }, DiffChange = { bg = "#15304a" }, - DiffDelete = { bg = "#3d2224" }, + DiffDelete = { bg = "#311c1e" }, } require("onedark").set_options("highlights", highlights) require("onedark").load()