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

@anjunar/ui

v1.0.1

Published

CSS-first design foundation for Anjunar projects.

Readme

@anjunar/ui

CSS-first design foundation for Anjunar projects.

@anjunar/ui has no dependency on consuming libraries or applications. Consumers may depend on this package, but this package must never depend on, import, or name its consumers.

Layers

  • theme.css defines the Tailwind theme and runtime CSS variables.
  • base.css defines global document defaults.
  • utilities.css defines low-level reusable visual utilities.
  • components.css defines generic aj-* primitives.
  • index.css imports all Anjunar UI layers.

Usage

@import "tailwindcss";
@import "@anjunar/ui";

Set the active theme on the document root:

<html data-theme="light">

or:

<html data-theme="dark">

Language

Use Tailwind for composition and aj-* classes for repeated Anjunar primitives:

<section class="aj-card-glass aj-stack">
  <p class="aj-label">Context</p>
  <h1 class="aj-heading">A clear surface</h1>
  <p class="aj-copy">Project-specific layout can stay local while shared structure remains reusable.</p>
</section>

Core primitives:

  • aj-glass, aj-glass-soft, aj-glass-dense, aj-card-glass
  • aj-card, aj-card-quiet, aj-panel, aj-panel-muted
  • aj-toolbar, aj-floating, aj-menu, aj-menu-item
  • aj-tabs, aj-tab, aj-tab-active
  • aj-button, aj-button-primary, aj-button-quiet, aj-button-ghost
  • aj-input, aj-chip, aj-badge, aj-empty, aj-table-shell

Page primitives:

  • aj-page, aj-page-layout, aj-page-shell
  • aj-page-hero, aj-page-panel, aj-page-panel-shell
  • aj-kicker, aj-page-title, aj-page-copy
  • aj-action-pill, aj-action-pill-primary, aj-action-pill-ghost
  • aj-icon-badge, aj-quick-row, aj-quick-icon, aj-quick-copy

Shared recipe tokens:

  • --aj-floating-* for menus, popovers, dropdowns, and small detached controls.
  • --aj-overlay-* for larger elevated surfaces, notifications, dialogs, and transient panels.
  • --aj-chrome-* for bars, headers, footers, and application frame seams.
  • --aj-control-* for compact interactive controls and active/hover states.

Boundary

This package is the visual root. It may expose generic names like aj-panel, aj-button, and aj-shell. It must not expose consumer-specific names.