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

@inova.dev/jelly-ui

v0.1.0

Published

A glowing 3D-jelly + liquid-glass icon-button material for React. One accent colour drives an emissive core, subsurface shade, bloom, gloss and rim light — with frosted-glass and colourless variants.

Downloads

43

Readme

@inova.dev/jelly-ui

A glowing 3D-jelly + liquid-glass icon-button material for React. Each button is driven by a single accent colour (color → CSS --c); everything else — the emissive core, the deep subsurface shade, the bloom, the gloss, the rim light — is derived from it. Includes frosted-glass (clear), holographic (holo), and colourless white-glass (neutral) variants, plus a cursor-tracking specular highlight and a springy press bounce.

Install

npm i @inova.dev/jelly-ui react

React 17+ is a peer dependency.

Quick start

import { Jelly, JellyPill } from '@inova.dev/jelly-ui';
import { JellyGlyph, iconColor } from '@inova.dev/jelly-ui/icons';
import '@inova.dev/jelly-ui/styles.css'; // once, anywhere in your app

export function Toolbar() {
  return (
    <div data-theme="dark">
      <Jelly color="#15c39a" aria-label="Helpful links">
        <JellyGlyph name="links" />
      </Jelly>

      <JellyPill color={iconColor('blog')} icon={<JellyGlyph name="blog" />}>
        Write a post
      </JellyPill>
    </div>
  );
}

Next.js / RSC: the components use refs and pointer handlers, so render them inside a Client Component (a file with 'use client').

Components

<Jelly> — icon-only "chicklet"

Pass an <svg viewBox="0 0 24 24"> as children (use <JellyGlyph> or your own lucide-style glyph). Always give it an aria-label.

<Jelly color="#d65bff" size={56} aria-label="Dashboard">
  <JellyGlyph name="dashboard" />
</Jelly>

<JellyPill> — labelled button

<JellyPill color="#4f86f7" shape="rect" icon={<JellyGlyph name="files" />}>
  Files & media
</JellyPill>

Props

Both components accept all native <button> attributes plus the material knobs below (each maps to a CSS custom property, so anything not listed can still be set via style):

| Prop | Type | CSS var | Notes | | --------------- | ----------------------- | --------------------- | ----- | | color | string | --c | The one knob the whole look derives from. | | color2 | string | --c2 | Second gradient stop (turns the gradient on). | | gradient | boolean | --grad | Force gradient on/off (default: on when color2 is set). | | gradientAngle | number (deg) | --grad-angle | Default 120. | | size | number \| string | --jelly-size | A number means pixels. | | radius | number \| string | --jelly-radius | Chicklet only (pill/rect keep their shape). | | bloom | number | --jelly-bloom | Outer glow strength. | | gloss | number | --jelly-gloss | Surface gloss strength. | | iconScale | number | --jelly-icon-scale | 0–1. | | holo | boolean | .jelly--holo | Iridescent conic sheen. | | clear | boolean | .jelly--clear | Transparent liquid glass. | | neutral | boolean | .jelly--neutral | Colourless white glass (ignores color). | | active | boolean | .is-active | Selected state — pumped glow. | | interactive | boolean | — | Cursor-light + release bounce. Default true. | | shape | 'pill' \| 'rect' | — | <JellyPill> only. |

Theming

Put data-theme="light" or data-theme="dark" on any ancestor:

  • dark — neon, lit-from-within (the studio look)
  • light — soft frosted candy (for light dashboards)
<div data-theme="light">{/* jelly buttons … */}</div>

Hovering an ancestor with the class jelly-host lights its jelly children too (useful for nav rows).

Variants & extras

<Jelly color="#9b7cf0" holo aria-label="Brand">…</Jelly>       {/* holographic  */}
<Jelly color="#22b8d6" clear aria-label="Glass">…</Jelly>      {/* liquid glass */}
<Jelly neutral aria-label="Plain glass">…</Jelly>             {/* colourless    */}
<Jelly color="#f43f6e" color2="#f5a524" aria-label="Gradient">…</Jelly> {/* gradient */}

useJellyInteractions(enabled?) is exported if you want to wire the cursor-light

  • bounce handlers onto your own element. tintFor() / hueOf() expose the temperature-matched shadow-ink helper.

Icons (@inova.dev/jelly-ui/icons)

A small lucide-style registry, exported separately so the core stays lean:

import { ICONS, iconNames, iconColor, JellyGlyph, type IconName } from '@inova.dev/jelly-ui/icons';

<JellyGlyph name="…" /> renders the glyph as an <svg>; ICONS is the raw data ({ id, label, color, section, path }). You are not limited to these — <Jelly> accepts any SVG.

Browser support

Pure CSS, no runtime style deps. Uses modern color-mix(), relative colour syntax and @property (current Chrome, Safari, Edge, Firefox). Honours prefers-reduced-motion.

Development (the lab)

This repo also contains a vanilla showcase/playground used to design the material — index.html + css/lab.css + js/*.js. The canonical stylesheet (css/jelly.css) is shared by both the lab and the published package.

python3 -m http.server 5180   # → http://localhost:5180  (the lab)
npm install && npm run build  # → dist/ (the publishable package)

npm run build runs tsup (ESM + CJS + .d.ts) and copies/minifies the CSS into dist/.

License

MIT