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

@nevv-ui/themes

v2.0.0

Published

Theme system and presets for Nevv UI - customize colors and styles

Readme

@nevv-ui/themes

Theme presets and builders for Nevv UI - customize colors and appearance.

Installation

npm install @nevv-ui/themes @nevv-ui/styles
# or
pnpm add @nevv-ui/themes @nevv-ui/styles

What are Themes?

Themes provide preset color palettes and configuration builders for consistent design:

  • Presets - Ready-to-use color schemes
  • Customizable - Build your own themes
  • CSS Variables - Semantic color tokens
  • Dark Mode - Built-in dark theme support

Built-in Presets

Default Theme

Modern, professional light theme (default)

<link rel="stylesheet" href="@nevv-ui/themes/presets/default.css">

Dark Theme

Professional dark color scheme

<link rel="stylesheet" href="@nevv-ui/styles/base/theme-dark.css">

Ocean Blue

Cool blue color palette

<link rel="stylesheet" href="@nevv-ui/themes/presets/oceanblue.css">

Forest

Natural green color palette

<link rel="stylesheet" href="@nevv-ui/themes/presets/forest.css">

Using Themes

Global Theme

<html data-theme="light">
  <head>
    <link rel="stylesheet" href="@nevv-ui/styles">
    <link rel="stylesheet" href="@nevv-ui/themes/presets/default.css">
  </head>
  <body>...</body>
</html>

Component-level Theme

<div data-theme="dark">
  <!-- Components inside will use dark theme -->
</div>

Runtime Theme Switching

document.documentElement.dataset.theme = 'dark'

Building Custom Themes

Use the theme builder to create custom themes:

import { createTheme } from '@nevv-ui/themes/builder'

const myTheme = createTheme({
  primary: '#007AFF',
  success: '#34C759',
  warning: '#FF9500',
  error: '#FF3B30',
  info: '#00B0FF'
})

CSS Variables

All colors use --nv- prefix CSS variables:

:root[data-theme="light"] {
  --nv-primary-color: #007AFF;
  --nv-primary-color-hover: #0051D5;
  --nv-primary-color-pressed: #003D99;
  --nv-primary-color-disabled: rgba(0, 122, 255, 0.5);
}

License

MIT © ESTENX LTD