raito1chi69 downloadsAdds a soft cursor glow effect to Canvas, creating a subtle radial light that follows your mouse.
An Obsidian plugin that adds a soft cursor glow effect to Canvas, creating a subtle dot-grid spotlight that follows your mouse.
requestAnimationFrame, GPU-accelerated CSS transforms, and will-change hintsThe plugin replaces the default Canvas dot background with a dynamic spotlight:
main.js, manifest.json, and styles.css from the latest release.obsidian/plugins/hover-highlight/ folder| Setting | Description | Default |
|---|---|---|
| Enable glow | Toggle the dot glow effect | On |
| Glow radius | Size of the glow in pixels (50–500) | 120 |
| Dot brightness | How bright the lit dots appear (1–100%) | 50% |
| Smoothness | How smoothly the glow follows the cursor (lower = smoother) | 0.12 |
| Fade animation | Fade the glow out after cursor stops moving | On |
git clone https://github.com/raito1chi/hover-highlight.git
cd hover-highlight
npm install
npm run dev # watch mode
npm run build # production build
npm run lint # type check
src/
main.ts Plugin entry point, canvas detection, lifecycle
spotlight.ts Core dot-grid renderer with CSS mask animation
settings.ts Settings tab UI
styles.css Dot layer styles
MIT