mirror of
https://github.com/gbprod/nord.nvim.git
synced 2026-08-29 10:20:53 -05:00
19 lines
799 B
Lua
19 lines
799 B
Lua
local motion = {}
|
|
|
|
local c = require("nord.colors").palette
|
|
|
|
function motion.highlights()
|
|
return {
|
|
LeapMatch = { fg = c.polar_night.bright, bg = c.frost.polar_water, bold = true, nocombine = true },
|
|
LeapLabelPrimary = { fg = c.polar_night.bright, bg = c.aurora.green, bold = true, nocombine = true },
|
|
LeapLabelSecondary = { fg = c.polar_night.bright, bg = c.aurora.purple, bold = true, nocombine = true },
|
|
LeapLabelSelected = { fg = c.polar_night.bright, bg = c.aurora.yellow, bold = true, nocombine = true },
|
|
|
|
FlashMatch = { bg = c.polar_night.bright, fg = c.snow_storm.origin },
|
|
FlashCurrent = { bg = c.polar_night.brighter, fg = c.snow_storm.origin, bold = true },
|
|
FlashLabel = { bg = c.aurora.green, fg = c.polar_night.origin, bold = true },
|
|
}
|
|
end
|
|
|
|
return motion
|