Files
nord.nvim/lua/nord/plugins/picker.lua

16 lines
427 B
Lua

local picker = {}
local c = require("nord.colors").palette
local utils = require("nord.utils")
function picker.highlights()
return {
TelescopeBorder = { fg = c.polar_night.light, bg = utils.make_global_bg(true) },
TelescopeTitle = { fg = c.snow_storm.origin, bold = true },
TelescopePromptCounter = { fg = c.polar_night.light },
TelescopeMatching = { fg = c.frost.ice, bold = true },
}
end
return picker