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

marlotheme-ui

v0.2.2

Published

Marlo UI: design tokens + shadcn primitives (Tailwind CSS v4)

Downloads

550

Readme

marlotheme-ui

Design tokens, theme CSS, and React UI primitives for apps using Tailwind CSS v4, shadcn/ui, and React.

Install

npm install marlotheme-ui

Peer dependencies

Install these in your app (versions should match what you use elsewhere):

| Required | Purpose | | --- | --- | | react, react-dom | Components | | tailwindcss ^4 | Theme + utilities | | radix-ui | Primitives | | class-variance-authority, clsx | Variants / classes | | lucide-react | Icons |

Some components need extra peers only if you import them:

| Import path | Extra peers | | --- | --- | | calendar | react-day-picker | | chart | recharts | | drawer | vaul | | carousel | embla-carousel-react |

You also need the shadcn package and @import "shadcn/tailwind.css" in your CSS (same as a typical shadcn + Tailwind v4 setup).


Theme & tokens (CSS)

Full theme (tokens + shadcn variable bridge + base styles):

@import "tailwindcss";
@import "shadcn/tailwind.css";
@import "marlotheme-ui/theme";

@custom-variant dark (&:is(.dark *));

Use .dark on an ancestor (e.g. <html class="dark">) for dark mode.

CSS-only entry points

| Import | Contents | | --- | --- | | marlotheme-ui / marlotheme-ui/theme | Full theme | | marlotheme-ui/design-tokens | Product tokens + typography utilities (no shadcn bridge) | | marlotheme-ui/shadcn | shadcn @theme variables | | marlotheme-ui/shadcn-base | Global base layer | | marlotheme-ui/tokens.json | Token definitions (JSON) |


Components

Import paths are stable and tree-shake friendly:

import { Button } from "marlotheme-ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "marlotheme-ui/card"

Exports: accordion, alert-dialog, alert, avatar, badge, button, calendar, card, carousel, chart, checkbox, dialog, drawer, input, label, pagination, popover, progress, radio-group, select, separator, slider, switch, table, tabs, textarea.


Fonts

Theme assumes Inter is loaded in your app (for example @fontsource-variable/inter). Load any heading/body fonts your design requires alongside the CSS imports above.


License

See package.json (license field).