npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

neon-icons-library

v1.0.0

Published

Una colección premium de iconos SVG con efectos neón para interfaces dark mode

Readme

🌟 Neon Icons Library

Una colección premium de +80 iconos SVG con efectos neón diseñados especialmente para interfaces en modo oscuro (dark mode).

Neon Icons Dark Mode SVG License

🔗 Demo en Vivo

👉 Ver Demo


📦 Instalación

Método 1: CDN (Recomendado - Más fácil)

Simplemente agrega estas líneas en tu HTML:

<!-- CSS - Estilos de los iconos neón -->
<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/gh/yefferking/IconsNeon@main/neon-icons.css"
/>

<!-- JavaScript - Definiciones de iconos (opcional) -->
<script src="https://cdn.jsdelivr.net/gh/yefferking/IconsNeon@main/icons.js"></script>

Método 2: NPM (Próximamente)

npm install neon-icons-library
// En tu archivo JavaScript
import "neon-icons-library/neon-icons.css";
import neonIcons from "neon-icons-library";

Método 3: Descarga Directa

  1. Descargar ZIP
  2. Extrae los archivos
  3. Incluye neon-icons.css y icons.js en tu proyecto
<link rel="stylesheet" href="path/to/neon-icons.css" />
<script src="path/to/icons.js"></script>

✨ Características

  • 🎨 7 Colores Neón: Cyan, Magenta, Verde, Naranja, Púrpura, Amarillo y Rojo
  • 💫 Efectos de Brillo: Resplandor intenso optimizado para fondos oscuros
  • 📐 SVG Escalable: Se ven perfectos en cualquier tamaño
  • 🎭 5 Animaciones: Pulso, brillo, parpadeo, giro y rebote
  • 📱 Responsive: Adaptados para cualquier dispositivo
  • 🚀 Ligero: Solo CSS y SVG, sin dependencias
  • 🌙 Dark Mode: Optimizado para interfaces oscuras

🎨 Paleta de Colores Neón

| Color | Código Hex | Clase CSS | | ----------- | ---------- | --------------- | | 🔵 Cyan | #00f5ff | .neon-cyan | | 🔴 Magenta | #ff00ff | .neon-magenta | | 🟢 Verde | #39ff14 | .neon-green | | 🟠 Naranja | #ff6600 | .neon-orange | | 🟣 Púrpura | #bf00ff | .neon-purple | | 🟡 Amarillo | #ffff00 | .neon-yellow | | ❤️ Rojo | #ff0040 | .neon-red |


🚀 Uso Rápido

Icono Básico

<span class="neon-icon neon-cyan md">
  <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
    <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
    <polyline points="9 22 9 12 15 12 15 22" />
  </svg>
</span>

Tamaños Disponibles

<span class="neon-icon neon-magenta xs">...</span>
<!-- 16px -->
<span class="neon-icon neon-magenta sm">...</span>
<!-- 24px -->
<span class="neon-icon neon-magenta md">...</span>
<!-- 32px -->
<span class="neon-icon neon-magenta lg">...</span>
<!-- 48px -->
<span class="neon-icon neon-magenta xl">...</span>
<!-- 64px -->
<span class="neon-icon neon-magenta xxl">...</span>
<!-- 96px -->

Animaciones

<!-- Pulso -->
<span class="neon-icon neon-green md pulse">...</span>

<!-- Brillo intensificado -->
<span class="neon-icon neon-orange md glow">...</span>

<!-- Parpadeo neón -->
<span class="neon-icon neon-purple md flicker">...</span>

<!-- Rotación -->
<span class="neon-icon neon-yellow md spin">...</span>

<!-- Rebote -->
<span class="neon-icon neon-red md bounce">...</span>

💡 Uso con JavaScript

Si incluyes icons.js, puedes acceder a todos los iconos programáticamente:

// Ver todos los iconos disponibles
console.log(neonIcons);

// Buscar un icono específico
const homeIcon = neonIcons.find((icon) => icon.name === "home");

// Insertar icono dinámicamente
document.getElementById("my-icon").innerHTML = `
  <span class="neon-icon neon-${homeIcon.color} md">
    ${homeIcon.svg}
  </span>
`;

// Filtrar por color
const cyanIcons = neonIcons.filter((icon) => icon.color === "cyan");

🎯 Categorías de Iconos

| Categoría | Iconos | Color Principal | | ----------------- | ------------------------------------------ | --------------- | | UI/Navegación | home, user, settings, search, menu, arrows | Cyan | | Comunicación | mail, message, phone, bell, send | Magenta | | Acciones | check, plus, download, upload, save | Verde | | Media | play, pause, volume, camera, image | Naranja | | Social | heart, star, share, bookmark, thumbs-up | Púrpura | | Alertas | alert, info, help, lightbulb, zap | Amarillo | | Peligro | x, trash, lock, shield, ban | Rojo | | Tech | code, terminal, database, server, cpu | Cyan/Magenta | | E-commerce | shopping-cart, credit-card, dollar, tag | Verde | | Transporte | truck, car, plane, map-pin | Varios |


🌙 Optimizado para Dark Mode

Todos los iconos están diseñados para brillar en fondos oscuros. Fondos recomendados:

body {
  background: #0a0a0f;
}

/* O con gradiente */
body {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

📁 Estructura del Proyecto

IconsNeon/
├── index.html       # Página de demostración
├── styles.css       # Estilos de la demo
├── neon-icons.css   # ⭐ CSS standalone (incluir en tu proyecto)
├── icons.js         # ⭐ Definiciones de iconos
├── app.js           # Lógica de la demo
├── package.json     # Configuración npm
└── README.md        # Documentación

🤝 Contribuir

¿Quieres agregar más iconos? ¡Las contribuciones son bienvenidas!

  1. Fork el repositorio
  2. Crea una rama (git checkout -b feature/nuevo-icono)
  3. Agrega tu icono en icons.js
  4. Commit (git commit -m 'Agregar icono X')
  5. Push (git push origin feature/nuevo-icono)
  6. Abre un Pull Request

📝 Licencia

MIT License - Úsalos libremente en tus proyectos personales y comerciales.


⭐ Apoya el Proyecto

Si te gusta Neon Icons, ¡dale una estrella al repositorio! ⭐

GitHub stars


Hecho con 💜 por YefferKing para el modo oscuro