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

@ucdavis/gunrock-tailwind

v2.6.2

Published

Tailwind + DaisyUI preset for UC Davis branding

Readme

UC Davis CAES Tailwind + DaisyUI Branding

This is NPM gunrock tailwind for application development at CAES CRU

Features

  • Tailwind colors and fonts, including the complete Proxima Nova family
  • DaisyUI theme Gunrock

To use, add

@import "@ucdavis/gunrock-tailwind/imports.css";

In global.css underneath Tailwind and Daisy

To customize you can add tailwind and daisy themes like such:

@theme {
  --color-cru-border: oklch(0.283 0.0091 285.81);
}
@plugin "daisyui/theme" {
  name: "gunrock";
  --color-base-100: var(--color-dark-bg-100);
}

Add

data-theme="gunrock"

To the tag in the layout

Fonts

The package supplies Proxima Nova from the UC Davis CDN in WOFF2 format. It includes Thin (100), Light (300), Regular (400), Medium (500), Semibold (600), Bold (700), and ExtraBold (800), each with a matching italic face.

Recommended usage

Use Tailwind's font family, weight, and style utilities together. font-sans uses Proxima Nova and automatically selects the corresponding font file.

<p class="font-sans">Regular body text</p>
<h2 class="font-sans font-semibold">Semibold heading</h2>
<p class="font-sans italic">Regular italic text</p>
<strong class="font-sans font-bold italic">Bold italic text</strong>
<h1 class="font-display">Ryman display type</h1>

font-normal, font-medium, font-semibold, font-bold, and font-extrabold select weights 400, 500, 600, 700, and 800 respectively.

Existing applications

Existing applications do not need to change. The original family names remain available and map to their existing faces:

| Existing family | Face | | --- | --- | | proxima-nova-r | Proxima Nova Regular (400) | | proxima-nova-i | Proxima Nova Regular Italic (400) | | proxima-nova-b | Proxima Nova Bold (700) | | ryman | Ryman Eco |

New application code should prefer font-sans and standard Tailwind weight and style utilities. The legacy family names will remain supported until a future major package release.