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

dolphincss

v1.2.6

Published

DolphinCSS - World-class TailwindCSS + React component library

Readme


🧩 More Components: Card, Input, Nav, Sidenav

Card Example

<div className="card filled primary">Primary Card</div>
<div className="card outlined success">Success Outlined Card</div>
<div className="card glass warning">Glass Warning Card</div>
<div className="card gradient danger">Gradient Danger Card</div>

Input Example

<div className="floatinglabel">
	<input className="floatinglabel-input" placeholder=" " />
	<label className="floatinglabel-label">Floating Label</label>
</div>
<input className="standardlabel-input" placeholder="Standard Label" />
<select className="select primary">
	<option>Option 1</option>
	<option>Option 2</option>
</select>
<div className="radio-group horizontal">
	<label className="radio-item">
		<input type="radio" name="r" className="primary" />
		<span className="radio-label">Radio 1</span>
	</label>
	<label className="radio-item">
		<input type="radio" name="r" className="success" />
		<span className="radio-label">Radio 2</span>
	</label>
</div>
<input type="checkbox" className="primary" />
<input type="checkbox" className="success" />

Nav Example

<nav className="nav-container">
	<div className="nav-brand">Brand</div>
	<ul className="nav-ul nav-ul-right">
		<li className="nav-li active"><a href="#">Home</a></li>
		<li className="nav-li"><a href="#">About</a></li>
		<li className="nav-li"><a href="#">Contact</a></li>
	</ul>
</nav>

Sidenav Example

<aside className="admin-nav glass-wave">
	<div className="admin-nav-header">Sidenav Header</div>
	<ul>
		<li>Dashboard</li>
		<li>Settings</li>
		<li>Logout</li>
	</ul>
</aside>

🏆 All Global Classes

  • Button: .filled, .outlined, .plain, .primary, .secondary, .success, .warning, .danger, .info, .gradient, .glass, .glow
  • Card: .card, .filled, .outlined, .glass, .gradient, color variants
  • Input: .floatinglabel, .standardlabel, .select, .radio-group, .radio-item, .checkbox, color variants
  • Nav: .nav-container, .nav-brand, .nav-ul, .nav-li, .nav-dropdown, .nav-toggle, .nav-search-container, etc.
  • Sidenav: .admin-nav, .glass-wave, .neon-flow, .crystal-glass, .aqua-depth, .admin-nav-header

See src/App.jsx for a full working demo of all these classes and effects.

🇳🇵 DolphinCSS + React + Vite

यो template ले minimal setup दिन्छ React को लागि Vite, HMR, TailwindCSS, र DolphinCSS theme सँग काम गर्न।

DolphinCSS एक lightweight, world-class CSS library हो जसमा ready-to-use components र Tailwind-friendly utilities छन्।


Features

  • Prebuilt Dolphin theme colors र utilities
  • React-ready components (buttons, inputs, tables, etc.)
  • TailwindCSS v4+ compatible
  • Optimized for Vite + React + HMR
  • Fully TypeScript compatible

Installation

Install TailwindCSS & DolphinCSS:

npm install tailwindcss dolphincss
import 'dolphincss/dolphin-css.css';

---

## 🚀 DolphinCSS Tutorial & Demo

### 1. GitHub Link

[View on GitHub](https://github.com/Phuyalshankar/dolphincss)

---

### 2. All Button & Global Classes

#### Button Variants

```jsx
<button className="filled primary md">Primary</button>
<button className="outlined primary md">Primary Outlined</button>
<button className="plain primary md">Primary Plain</button>
<button className="filled secondary md">Secondary</button>
<button className="outlined danger md">Danger Outlined</button>
<button className="filled success glow md">Success Glow</button>
<button className="gradient primary md">Gradient Primary</button>
<button className="gradient outlined primary md">Gradient Outlined</button>
<button className="gradient plain primary md">Gradient Text</button>
<button className="glass primary md">Glass Primary</button>
<button className="glass primary glow md">Glass + Glow</button>
<button className="glass primary gradient glow md">Glass + Gradient + Glow</button>

Global Classes

  • .filled, .outlined, .plain (from varient.css)
  • .primary, .secondary, .success, .warning, .danger, .info
  • .glow (from glow.css)
  • .gradient (from gradient.css)
  • .glass (from glass.css)

3. Demo: All Effects in One Component

You can see all global classes in action in the main demo component:

// src/App.jsx
import React from 'react';

export default function Demo() {
	return (
		<div>
			<button className="filled primary md">Primary</button>
			<button className="outlined primary md">Primary Outlined</button>
			<button className="plain primary md">Primary Plain</button>
			<button className="filled success glow md">Success Glow</button>
			<button className="gradient primary md">Gradient Primary</button>
			<button className="gradient outlined primary md">Gradient Outlined</button>
			<button className="gradient plain primary md">Gradient Text</button>
			<button className="glass primary md">Glass Primary</button>
			<button className="glass primary glow md">Glass + Glow</button>
			<button className="glass primary gradient glow md">Glass + Gradient + Glow</button>
		</div>
	);
}

4. Try All Effects

All global classes from glow.css, gradient.css, and varient.css are already used in the main demo (src/App.jsx).

To test:

  1. Run the project:
    npm install
    npm run dev
  2. Open http://localhost:5173 in your browser.
  3. You will see all button variants, glow, gradient, and glass effects in one place.

For more, see the GitHub repo and explore src/App.jsx for all global class usage.