# Highlight

> Visual outlining helpers that highlight matching elements and clear applied outlines.

- Skill: `ivalsaraj/highlight` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add ivalsaraj/highlight`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ivalsaraj/highlight/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ivalsaraj (https://skillmd.com/u/ivalsaraj)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ivalsaraj/highlight

---


## hl__highlight(selector, color?)
Visually highlight matching elements with a colored outline. Default color: red.
Returns the number of elements highlighted.

Example: `await hl__highlight('button.submit', 'blue')`

## hl__clearHighlights()
Remove all outlines added by `hl__highlight()`. Returns count of elements cleared.

Backward-compatible aliases:
- `highlight()` -> `hl__highlight()`
- `clearHighlights()` -> `hl__clearHighlights()`

