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

phoenix-glow

v1.2.0

Published

Phoenix Glow UI Kit — a multi-color neon CSS system plus matching React components (animated glows, buttons, navbar, cards, badges, avatars, forms).

Readme

🐦‍🔥 Phoenix Glow

A multi-color neon UI kit: pure-CSS glow effects, gradient text, layout, and forms — plus 16 matching React components. Use the CSS on its own, or use the components (which use the same CSS). No Tailwind, no Radix, no external UI dependencies — just React.

© Skyler J. Jones (sj-master) · MIT licensed

View Demo Live

https://phoenix-glow.netlify.app/


Install

npm install phoenix-glow

React is optional — only needed if you use the components.


Pure CSS

import "phoenix-glow/css";
<button class="phoenix-btn phoenix-btn-phoenix">Launch</button>
<div class="phoenix-card phoenix-glow-purple"><div class="phoenix-card-inner">Glowing panel</div></div>

React components

import { Button, Card, Modal, Tabs, Switch, Alert } from "phoenix-glow";
import "phoenix-glow/css";

function App() {
  const [open, setOpen] = React.useState(false);
  return (
    <Card title="Phoenix" description="A neon UI kit that glows." glow="purple">
      <Switch label="Neon mode" defaultChecked color="cyan" />
      <Button variant="phoenix" onClick={() => setOpen(true)}>Open modal</Button>
      <Modal open={open} onClose={() => setOpen(false)} title="Hello">
        <Alert variant="success" title="Nice">It works.</Alert>
      </Modal>
    </Card>
  );
}

Components (16)

| Component | Purpose | Key props | |-----------|---------|-----------| | Button | Solid neon button | variant, isLoading | | GlowButton | Pulsing animated button | variant | | Badge | Status pill | variant, size | | Avatar | Image or initials avatar | src, initials, size, gradient | | Card | Content surface w/ optional glow | title, description, image, glow, action | | GridSection | Responsive feature grid | items, columns | | Alert | Inline callout banner | variant, title | | Spinner | Neon loading ring | size, color | | Skeleton | Shimmer loading placeholder | width, height, radius | | Progress | Neon progress bar | value, color, showLabel | | Modal | Dialog with backdrop + ESC close | open, onClose, title, footer | | Tooltip | Hover tooltip (4 sides) | content, side | | Tabs | Tab switcher | items, defaultIndex, color | | Accordion | Collapsible sections | items, allowMultiple | | Input | Text field w/ label + help | label, help, status | | Switch | Neon toggle | checked, onChange, color, label |

All components accept native HTML attributes and respect prefers-reduced-motion.

Color options throughout: phoenix · cyan · purple · green (and glows add orange · pink · blue).


CSS classes

Glows phoenix-glow-{orange|pink|purple|blue|cyan|green} · text phoenix-gradient-text, phoenix-title-glow · layout phoenix-page/-container/-section/-grid-2/-3 · buttons phoenix-btn + -phoenix/-purple/-blue/-green/-outline · navbar phoenix-navbar* · forms phoenix-input/-select/-label. Retheme via the :root custom properties.


License

MIT © Skyler J. Jones. See LICENSE.