mirror of
https://github.com/gbprod/nord.nvim.git
synced 2026-08-28 18:24:13 -05:00
16 lines
427 B
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
|