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

rukkit

v1.0.0

Published

One warm, editorial CSS library. Classless flavor — styles plain semantic HTML with zero JavaScript dependencies.

Downloads

114

Readme

Rukkit — Classless Flavor

One warm, editorial CSS library. Zero classes, just semantic HTML.

Rukkit Classless styles plain semantic HTML without any CSS classes. Drop a stylesheet, add data-rukkit to your body, and everything just works. ~18 KB gzipped, zero JavaScript, five complete design directions.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/rukkit@1/dist/rukkit.css">
<body data-rukkit>
  <h1>Hello, Rukkit</h1>
  <p>Pure semantic HTML. No classes needed.</p>
  <button>Click me</button>
</body>

Install

CDN (jsDelivr) — Recommended

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/rukkit@1/dist/rukkit.css">

unpkg

<link rel="stylesheet" href="https://unpkg.com/rukkit@1/dist/rukkit.css">

Pin to a specific version:

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/rukkit.css">

npm / yarn / pnpm

npm install rukkit
yarn add rukkit
pnpm add rukkit

Import in your bundler:

import 'rukkit';

If you're using a CSS loader, import the CSS directly:

import 'rukkit/dist/rukkit.css';

Download

curl -O https://unpkg.com/rukkit/dist/rukkit.css

Or grab dist/rukkit.css from the GitHub repository.


Two Flavors

Choose your flavor:

  • Rukkit (this package) — Classless. Style semantic HTML with zero classes.
  • Rukkit Classed — Explicit .rk-* utility classes.

Both versions use identical design tokens and visual language. Same look, your choice of methodology.


Quick Start

1. Link the stylesheet

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  
  <!-- Rukkit Classless -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/rukkit@1/dist/rukkit.css">
  
  <!-- Optional: Google Fonts (recommended for best typography) -->
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600&family=JetBrains+Mono:wght@400;500;600&family=Fraunces:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body data-rukkit>
  <main>
    <article>
      <h1>Welcome to Rukkit</h1>
      <p>Write semantic HTML. We handle the rest.</p>
    </article>
  </main>
</body>
</html>

2. Write semantic HTML

Rukkit styles standard HTML elements:

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<p>Paragraph with <strong>bold</strong>, <em>italic</em>, and <a href="#">links</a>.</p>

<button>Primary Button</button>
<button disabled>Disabled Button</button>

<form>
  <label>Email
    <input type="email" placeholder="[email protected]">
  </label>
  <button type="submit">Subscribe</button>
</form>

<code>const hello = "world";</code>
<pre><code>function greet() {
  console.log("Hello!");
}</code></pre>

3. No CSS classes required

That's it. Rukkit automatically styles all your semantic elements.


What's Included

  • ✅ Comprehensive semantic HTML styling
  • ✅ Beautiful typography (Inter, JetBrains Mono, Fraunces)
  • ✅ Form elements (inputs, buttons, textareas, selects)
  • ✅ Code blocks and syntax-friendly pre/code
  • ✅ Tables with clean, readable styling
  • ✅ Lists (ordered, unordered, definition)
  • ✅ Blockquotes and citations
  • ✅ Media queries for responsive design
  • ✅ Dark mode support via CSS custom properties
  • ✅ Five design directions (configurable via tokens)
  • ✅ Zero JavaScript dependencies

Theming with Tokens

Rukkit uses CSS custom properties for easy customization. Override in your own stylesheet:

:root {
  /* Color Palette */
  --rk-color-primary: #0066cc;
  --rk-color-text: #1a1a1a;
  --rk-color-background: #ffffff;
  --rk-color-border: #e0e0e0;
  
  /* Typography */
  --rk-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  --rk-font-heading: Fraunces, Georgia, serif;
  --rk-font-mono: "JetBrains Mono", "Courier New", monospace;
  
  /* Spacing */
  --rk-spacing-xs: 0.25rem;
  --rk-spacing-sm: 0.5rem;
  --rk-spacing-md: 1rem;
  --rk-spacing-lg: 1.5rem;
  --rk-spacing-xl: 2rem;
  
  /* Sizing */
  --rk-radius: 6px;
  --rk-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

Browser Support

  • Chrome/Edge (latest 2 versions)
  • Firefox (latest 2 versions)
  • Safari (latest 2 versions)
  • iOS Safari 12+
  • Android Chrome 60+

CSS Grid, Flexbox, and CSS custom properties required.


Project Structure

rukkit/
├── dist/
│   └── rukkit.css          # Compiled, minified stylesheet
├── src/
│   ├── _tokens.css         # Design tokens and variables
│   ├── _reset.css          # CSS reset
│   ├── _typography.css     # Font sizes, line heights, etc.
│   ├── _forms.css          # Form element styles
│   ├── _components.css     # Buttons, cards, etc.
│   ├── _utilities.css      # Helper classes
│   └── rukkit.css          # Main entry point
├── package.json
├── README.md
└── LICENSE

Development

Build from source

# Clone the repository
git clone https://github.com/yourusername/rukkit.git
cd rukkit/packages/rukkit

# Install dependencies (if any)
npm install

# Build CSS
npm run build

# Watch for changes
npm run watch

Contributing

Found a bug? Have a feature idea? Open an issue or PR on GitHub.


Fonts

Rukkit references three open-source type families for optimal typography. Add them to your <head>:

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600&family=JetBrains+Mono:wght@400;500;600&family=Fraunces:wght@400;500;600;700&display=swap" rel="stylesheet">

Rukkit provides system font fallbacks (Georgia, system-ui, ui-monospace) so the page renders beautifully even without the network.


Performance

  • Size: ~18 KB gzipped
  • Dependencies: Zero JavaScript
  • Load time: < 100ms on 4G
  • Browser rendering: No layout thrashing
  • Accessibility: WCAG 2.1 AA compliant

License

MIT


See Also