···104104function utils.reverse_hl(hl)
105105 if type(hl) == "string" then
106106 ---@diagnostic disable-next-line: cast-local-type
107107- hl = vim.api.nvim_get_hl(0, { name = hl })
107107+ hl = vim.api.nvim_get_hl(0, { name = hl, link = false })
108108 end
109109110110 if vim.tbl_isempty(hl) or (not hl.fg and not hl.bg and not hl.link) then