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

scss-typography

v1.0.1

Published

SCSS port of the Tailwind CSS Typography plugin

Readme

SCSS Typography

A port of Tailwind CSS Typography (@tailwindcss/typography) in pure SCSS/CSS, with no dependencies on Tailwind or PostCSS.

npm npm downloads jsDelivr hits CSS gzip size MIT License

Table of Contents

Quick Start

npm install scss-typography

pnpm add scss-typography

yarn add scss-typography

bun add scss-typography

CDN

https://www.jsdelivr.com/package/npm/scss-typography

What's Included

The package includes compiled and minified variants, along with their source maps.

css/
├── min/
│   ├── typography-colors-responsive.min.css
│   ├── typography-colors.min.css
│   ├── typography-core.min.css
│   ├── typography-reset.min.css
│   ├── typography-sizes-responsive.min.css
│   ├── typography-sizes.min.css
│   └── typography.min.css
├── typography-colors-responsive.css
├── typography-colors-responsive.css.map
├── typography-colors.css
├── typography-colors.css.map
├── typography-core.css
├── typography-core.css.map
├── typography-reset.css
├── typography-reset.css.map
├── typography-sizes-responsive.css
├── typography-sizes-responsive.css.map
├── typography-sizes.css
├── typography-sizes.css.map
├── typography.css
└── typography.css.map

Each variant is available in standard (.css) and minified (.min.css) form, with their respective source maps (.css.map).

Differences from Tailwind Typography

✅ What is supported

| Feature | Description | | ------------------- | ----------------------------------------------- | | prose | Base class with all typographic styles | | Sizes | prose-sm, prose-lg, prose-xl, prose-2xl | | Responsive variants | sm:prose-lg, lg:prose-xl, etc. | | Color themes | prose-red, prose-blue, prose-green… | | Dark mode | prose-invert |

❌ What is not supported

  • Element modifiers: prose-headings:{utility}, prose-p:{utility}, prose-a:{utility}, etc.
  • Plugin-generated utilities: advanced classes that Tailwind generates dynamically at compile time are not included.
  • dark:prose-invert: there is no reactive dark mode variant; use prose-invert directly as a static class.

If your project uses these features, you still need @tailwindcss/typography directly. For all other cases, this port is a drop-in replacement with no need for Tailwind in your stack.

Usage

In HTML

Usage is identical to @tailwindcss/typography. See the official documentation for a full reference. Everything marked ✅ in the table above works the same way here.

<!-- Basic usage -->
<article class="prose">...</article>

<!-- With size and responsive -->
<article class="prose md:prose-lg lg:prose-xl">...</article>

<!-- With color theme -->
<article class="prose prose-slate">...</article>

<!-- Dark mode (static, not reactive) -->
<article class="prose prose-invert">...</article>

<!-- Exclude a block from prose styles -->
<article class="prose">
  <p>...</p>
  <div class="not-prose">
    <!-- This block does not inherit prose styles -->
  </div>
</article>

In CSS/SCSS

Full bundle: includes colors, sizes, reset, and base styles:

@import "scss-typography/css/typography.css";

Individual variants: import only what you need:

@import "scss-typography/css/typography-reset.css"; /* Tailwind Preflight */
@import "scss-typography/css/typography-core.css"; /* Base structure and default size (prose) */
@import "scss-typography/css/typography-sizes.css"; /* Extra sizes: prose-sm, prose-lg, prose-xl, prose-2xl */
@import "scss-typography/css/typography-sizes-responsive.css"; /* Responsive size variants: md:prose-lg, etc. */
@import "scss-typography/css/typography-colors.css"; /* prose-invert and color themes: prose-slate, prose-zinc… */
@import "scss-typography/css/typography-colors-responsive.css"; /* Responsive color variants: md:prose-slate, etc. */

Copyright and License

Code licensed under MIT. Copyright 2026 marlen42.

Based on tailwindcss-typography by Tailwind Labs, also under the MIT license.