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

@zeynui/react

v1.1.9

Published

Zeynui | A React-based UI library with free and premium components

Downloads

27

Readme

🎨 ZeynUI - Guía de Instalación Completa

📋 Requisitos previos

  • Tailwind CSS 4.1+ instalado
  • React 18+ o Next.js 13+

🛠️ Configuración Completa (Copiar y Pegar)

1. Instala la librería:

npm install @zeynui/react@latest

2. Configura tailwind.config.js

// tailwind.config.js module.exports = { content: [ "./src//*.{js,ts,jsx,tsx}", "./node_modules/@zeynui/react/dist//*.{js,ts,jsx,tsx}" ], plugins: [] // Opcional: añade plugins aquí si necesitas }

3. Configura tu archivo CSS principal (globals.css o similar):

@import "tailwindcss"; @config "../../tailwind.config.js";

@theme { /_ COLORS _/ --color-primary: #714fd3; --color-secondary: #71717a; --color-danger: #f31260; --color-warning: #f5a524; --color-success: #17c964; --color-info: #7ee7fc; --color-black: #141414; --color-whatsapp: #128c7e;

/_ KEYFRAMES _/ @keyframes ripple { 0% { opacity: 1; transform: translate(-50%, -50%) scale(0); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); } }

/_ ANIMATION _/ --animate-ripple: ripple 0.5s ease-out forwards;

/_ SHADOWS _/ --shadow-none: 0 0 0 0 rgba(0, 0, 0, 0); --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);

/_ BORDER RADIUS _/ --rounded-none: 0; --rounded-sm: 0.125rem; --rounded-md: 0.375rem; --rounded-lg: 0.75rem; --rounded-xl: 1.5rem; --rounded-full: 9999px; }

@tailwind base; @tailwind components; @tailwind utilities;

🔄 ¿Cómo personalizar?

Edita las variables dentro del bloque @theme en tu CSS

@theme { --color-primary: #8b5cf6; /_ Cambia el color primario / --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.2); / Ajusta sombras _/ }

⚠️ Notas importantes

  1. El orden de las directivas (@import, @config, @theme) es CRUCIAL
  2. Asegúrate que la ruta en @config apunte correctamente a tu tailwind.config.js
  3. Todos los componentes deben importarse DESPUÉS de la configuración del tema

🏗️ Estructura de proyecto recomendada

tu-proyecto/ ├── tailwind.config.js ├── src/ │ ├── globals.css (con la configuración anterior) │ ├── App.jsx │ └── main.jsx

¡Listo! Ahora todos los componentes de ZeynUI funcionarán con sus estilos y animaciones completas.