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

neumo-ui

v1.0.0

Published

Neumorphism CSS toolkit with light/dark mode, utilities and theming.

Readme

Neumo UI

Neumorphism CSS toolkit with light/dark mode, utilities and theming.

Demo / Landing

The public demo (GitHub Pages) showcases features, themes, and native styles. It includes controls to switch theme, mode (auto/light/dark), and light direction, plus usage examples and code snippets.

Once published, the URL will look like https://jsanchez91.github.io/neumo-ui/.

Quick Start

  • Add the base CSS and one theme:
<link rel="stylesheet" href="/styles.css">
<link rel="stylesheet" href="/themes/default.css">
  • Force mode or light direction (optional):
<html data-nui-theme="dark" data-nui-light-direction="top-right">

Install

npm install neumo-ui
# or
pnpm add neumo-ui
# or
bun add neumo-ui

Usage

  • Vanilla HTML (serve/copy files from node_modules/neumo-ui/dist/):
<link rel="stylesheet" href="node_modules/neumo-ui/dist/styles.css">
  • Apply styles to native elements (optional):
<link rel="stylesheet" href="node_modules/neumo-ui/dist/native.css">
  • Load a theme (load after styles.css/native.css):
<link rel="stylesheet" href="node_modules/neumo-ui/dist/themes/default.css">
  • Bundlers (recommended): use package exports
import 'neumo-ui'; // dist/styles.css
import 'neumo-ui/native.css';
import 'neumo-ui/themes/ocean.css';

Features

  • Light/Dark mode via light-dark() and [data-nui-theme]
  • Directional light via [data-nui-light-direction]
  • Utilities: .nui-neuromorphic, .nui-neuromorphic-inset, optional .nui-clickable
  • Theming using CSS variables; one CSS per theme

Authoring a theme

Create a CSS file with the variables:

:root {
  --nui-light-bg-color: #ebecf0;
  --nui-dark-bg-color: #14130f;
  --nui-light-text-color: #8993a2;
  --nui-dark-text-color: #a0aec0;
  --nui-light-lights: #ffffff;
  --nui-dark-lights: #000000;
  --nui-light-shadows: #bebebe;
  --nui-dark-shadows: #414141;
  /* optional: */
  --nui-primary: #5e72e4;
  --nui-secondary: #8392ab;
}

Development

  • npm start: runs the full dev setup. Starts Vite for the demo site and watches/builds CSS to dist/ with live reload.
  • npm run dev: runs only the Vite dev server for the demo (expects CSS already built or watched).
  • npm run build: builds the demo site and all CSS assets.
  • npm run build:css: builds only CSS assets to dist/.

CSS outputs and purpose:

  • dist/styles.css: base Neumo UI styles (utilities, components, variables).
  • dist/native.css: optional styles applied to native HTML elements.
  • dist/themes/*.css: theme tokens (e.g., default.css, ocean.css, cloud.css). Load after styles.css/native.css to switch theme.

Dev server: http://localhost:5173 (default) Prerequisites for local dev: Node.js 18+

License

MIT