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

starlight-theme-exquisitus

v1.1.1

Published

An Astro Starlight theme where readability and beauty are the same discipline.

Readme

starlight-theme-exquisitus

Exquisitus is an Astro Starlight theme where readability and beauty are the same discipline.

This theme was built with LLM assistance.

Features

  • Self-hosted type: Literata for the reading column, Alegreya Sans for headings and chrome, JetBrains Mono for code, all bundled via @fontsource.
  • A perceptually-uniform WCAG-AA OKLCH color system mapped onto Starlight's --sl-color-* contract, so built-in components inherit the theme automatically.
  • Header, sidebar, TOC, search, cards, asides, and tabs restyled with a consistent depth and register language.
  • Expressive Code theming with a letterpress code panel, caption-above frames, and accessible (WCAG 1.4.1) diff markers.
  • A serif Hero treatment (drop-in override) and an alternative front page layout.
  • Editorial end marks on documentation pages.
  • A design system generated with the Impeccable agent skill system.

Installation

  1. In an existing Astro Starlight site, run this command:
pnpm add starlight-theme-exquisitus
# or: npm install
  1. Add the plugin to your Starlight config:
// astro.config.mjs
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightThemeExquisitus from 'starlight-theme-exquisitus';

export default defineConfig({
  integrations: [
    starlight({
      title: 'My Docs',
      plugins: [starlightThemeExquisitus()],
    }),
  ],
});

Added components

FeatureGrid

An editorial splash layout for Starlight <Card>s. The first child carries the emphasis.

---
import { Card } from '@astrojs/starlight/components';
import FeatureGrid from 'starlight-theme-exquisitus/components/FeatureGrid.astro';
---

<FeatureGrid layout="lead">
  <Card title="…">This card leads the row.</Card>
  <Card title="…">A supporting point.</Card>
  <Card title="…">Another.</Card>
</FeatureGrid>
  • layout="lead" (default): a full-width thesis card above a row of supporting peers.
  • layout="alternating": an editorial zigzag where the wider card flips side each row.

Hero

The serif masthead treatment is applied automatically via a component override, no import needed. If you already override Hero yourself, your override wins (the plugin warns on the collision).

Configuration notes

  • Expressive Code: the theme sets sensible defaults but merges over your existing expressiveCode config rather than replacing it. Set expressiveCode: false in your Starlight config to opt out entirely.
  • All theme CSS lives in an @layer exquisitus that is declared after Starlight's, so it wins on order rather than specificity.

License

This theme is MIT-licensed. Bundled typefaces are licensed separately under the SIL Open Font License.