Skip to content

Commit 4a508d6

Browse files
committed
ref(winbar): use more common highlighting groups, fixes #290
1 parent ffa3ce1 commit 4a508d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/rest-nvim/result/winbar.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ end
7272
---Set the results window winbar highlighting groups
7373
function winbar.set_hl()
7474
-- Set highlighting for the winbar panes name
75-
local textinfo_fg = get_hl_group_fg("TextInfo")
75+
local textinfo_fg = get_hl_group_fg("Statement")
7676
for i, pane in ipairs(winbar.pane_map) do
7777
---@diagnostic disable-next-line undefined-field
7878
vim.api.nvim_set_hl(0, pane.name .. "Highlight", {
@@ -83,7 +83,7 @@ function winbar.set_hl()
8383
end
8484

8585
-- Set highlighting for the winbar text
86-
local textmuted_fg = get_hl_group_fg("TextMuted")
86+
local textmuted_fg = get_hl_group_fg("Comment")
8787
vim.api.nvim_set_hl(0, "RestText", { fg = textmuted_fg })
8888
end
8989

0 commit comments

Comments
 (0)