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

thrynd

v0.1.1

Published

A modern, opinionated CSS framework with beautiful pre-configured components, theme presets, and LLM-friendly documentation

Readme


Why Thrynd?

  • Pure CSS, zero runtime - No JavaScript dependencies, works with React, Vue, Svelte, or vanilla HTML
  • AI-native documentation - Structured metadata enables accurate code generation from ChatGPT, Claude, and other LLMs
  • 6 complete themes - Switch your entire design system with a single class change
  • Beautiful defaults - Components look great out of the box, no assembly required
  • Modern CSS - Built on CSS custom properties, Grid, and Flexbox

Installation

npm

npm install thrynd
import 'thrynd';

Or import in CSS:

@import 'thrynd';

CDN

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/thrynd@latest/dist/thrynd.min.css">

Quick Start

<body class="theme-modern">
  <div class="container py-8">
    <div class="card-elevated max-w-md mx-auto">
      <div class="card-body">
        <h2 class="text-2xl font-bold mb-4">Welcome</h2>
        <p class="text-muted mb-6">Get started with Thrynd in seconds.</p>
        <button class="btn-primary w-full">Get Started</button>
      </div>
    </div>
  </div>
</body>

Themes

Switch themes instantly with a single class:

| Theme | Class | Description | |-------|-------|-------------| | Modern | theme-modern | Clean, contemporary design | | Classic | theme-classic | Traditional elegance with serif fonts | | Minimal | theme-minimal | Brutalist, focused simplicity | | Neon | theme-neon | Cyberpunk vibes with electric colors | | Nature | theme-nature | Earthy, organic warmth | | Corporate | theme-corporate | Professional and trustworthy |

document.body.className = 'theme-neon';

Components

Buttons

<button class="btn-primary">Primary</button>
<button class="btn-secondary">Secondary</button>
<button class="btn-danger">Danger</button>
<button class="btn-ghost">Ghost</button>

<button class="btn-primary btn-sm">Small</button>
<button class="btn-primary btn-lg">Large</button>

Cards

<div class="card">
  <div class="card-body">
    <h3 class="card-title">Card Title</h3>
    <p>Card content goes here.</p>
  </div>
</div>

<div class="card-elevated">
  <div class="card-header">Header</div>
  <div class="card-body">Content</div>
  <div class="card-footer">
    <button class="btn-primary">Action</button>
  </div>
</div>

Forms

<form>
  <div class="form-group">
    <label for="email">Email</label>
    <input type="email" id="email" class="form-input" placeholder="[email protected]">
  </div>
  <div class="form-group">
    <label for="password">Password</label>
    <input type="password" id="password" class="form-input">
  </div>
  <button type="submit" class="btn-primary w-full">Sign In</button>
</form>

Alerts and Badges

<div class="alert alert-success">Operation completed successfully.</div>
<div class="alert alert-warning">Please review before continuing.</div>
<div class="alert alert-danger">An error occurred.</div>

<span class="badge badge-primary">New</span>
<span class="badge badge-success">Active</span>

Utilities

Comprehensive utility classes with responsive variants:

<!-- Spacing -->
<div class="m-4 p-6">Margin and padding</div>
<div class="mt-8 px-4">Directional spacing</div>

<!-- Flexbox -->
<div class="flex items-center justify-between gap-4">...</div>

<!-- Grid -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">...</div>

<!-- Typography -->
<h1 class="text-4xl font-bold">Heading</h1>
<p class="text-muted text-sm">Subtle text</p>

<!-- Sizing -->
<div class="w-full max-w-lg mx-auto">Centered container</div>

Responsive Prefixes

| Prefix | Breakpoint | |--------|------------| | sm: | 640px | | md: | 768px | | lg: | 1024px | | xl: | 1280px | | 2xl: | 1536px |

<div class="flex flex-col md:flex-row">
  <!-- Stacks vertically on mobile, horizontal on tablet+ -->
</div>

AI-Optimized Documentation

Thrynd documentation is structured for LLM code generation:

  • Structured JSON metadata for every component
  • Complete code examples with explanatory comments
  • Anti-pattern detection with severity levels
  • Decision trees for component selection
  • Accessibility requirements per component
Prompt: "Create a pricing card with Thrynd CSS"
Result: Working, accessible code on first attempt

Framework Integration

React

import 'thrynd';

function App() {
  return (
    <div className="theme-modern">
      <button className="btn-primary">Click me</button>
    </div>
  );
}

Vue

<script setup>
import 'thrynd';
</script>

<template>
  <div class="theme-modern">
    <button class="btn-primary">Click me</button>
  </div>
</template>

Svelte

<script>
  import 'thrynd';
</script>

<div class="theme-modern">
  <button class="btn-primary">Click me</button>
</div>

Bundle Size

| Build | Size | |-------|------| | Minified | 79 KB | | Gzipped | ~10 KB |

Includes 6 themes, 40+ components, and 1000+ utility classes.

Browser Support

  • Chrome and Edge
  • Firefox
  • Safari

Built on modern CSS features. IE is not supported.

Development

git clone https://github.com/Thrynd/Thrynd.git
cd Thrynd
npm install

npm run build       # Build CSS
npm run build:min   # Minified build
npm run dev         # Watch mode

Contributing

Contributions welcome. Please read our Contributing Guide before submitting PRs.

License

MIT