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