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 🙏

© 2025 – Pkg Stats / Ryan Hefner

fluid-typography

v2.0.1

Published

Fluid typography plugin for Tailwind CSS v3 and v4 with built-in tailwind-merge support

Downloads

675

Readme

Fluid Typography

npm Docs License: MIT

Fluid typography plugin for Tailwind CSS v3 & v4 — responsive, accessible, zero-config, and highly customizable. Uses CSS clamp() for smooth scaling across viewports. See full docs: https://fluid-typography.ayanghosh.in/

Responsive typography that scales smoothly between viewports using CSS clamp(). Works out-of-the-box with sensible defaults, or customize scales and viewport ranges to match your design system.

✨ Install → Add to config → Done

Quick Start

npm install fluid-typography

Tailwind v3

// tailwind.config.ts
import fluidTypography from 'fluid-typography'

export default {
  plugins: [fluidTypography],
}

Tailwind v4

/* app.css */
@import "tailwindcss";
@plugin "fluid-typography";

Use in Components

<h1 className="text-display-xl">Hero Title</h1>
<h2 className="text-h1">Main Heading</h2>
<h3 className="text-h2">Section Heading</h3>
<p className="text-body">Regular paragraph text</p>
<p className="text-body-sm">Smaller body text</p>
<span className="text-caption">Image caption</span>

That's it! No configuration needed.


Customization (Optional)

Add Custom Typography Scales

Extend the default scales with your own:

// tailwind.config.ts
import fluidTypography from 'fluid-typography'

export default {
  plugins: [
    fluidTypography({
      customScales: {
        'hero': {
          size: [50, 80],  // [minPx, maxPx]
          lineHeight: 1.1,  // Optional, defaults to 1.5
          fontWeight: '900',  // Optional, defaults to '400'
          letterSpacing: '-0.02em',  // Optional
          textTransform: 'uppercase'  // Optional: 'uppercase' | 'lowercase' | 'capitalize'
        },
        'mega': {
          size: [60, 120]  // Only size is required
        }
      }
    })
  ]
}

Use your custom scales:

<h1 className="text-hero">Custom Hero</h1>
<h1 className="text-mega">Mega Text</h1>

Customize Viewport Range

Change the min/max viewport widths (default: 375px → 1440px):

import fluidTypography from 'fluid-typography'

export default {
  plugins: [
    fluidTypography({
      minViewportWidth: 320,   // Scale from 320px
      maxViewportWidth: 1920   // Scale to 1920px
    })
  ]
}

Combine Both

import fluidTypography from 'fluid-typography'

export default {
  plugins: [
    fluidTypography({
      customScales: {
        'hero': {
          size: [50, 80],
          fontWeight: '900'
        }
      },
      minViewportWidth: 320,
      maxViewportWidth: 1920
    })
  ]
}

Tailwind v4 with Customization

// tailwind.config.js
import fluidTypography from 'fluid-typography';

export default {
  plugins: [
    fluidTypography({
      customScales: {
        'hero': {
          size: [50, 80],
          fontWeight: '900'
        }
      },
      minViewportWidth: 320,
      maxViewportWidth: 1920
    })
  ]
};
/* app.css */
@import "tailwindcss";
@config "./tailwind.config.js";

Typography Scale

All sizes scale fluidly between 375px (mobile) and 1440px (desktop) viewports.

Body variants match Tailwind's defaults on desktop for easy mental mapping:

  • text-body = text-base (16px) on desktop, scales down to 14px on mobile
  • text-body-sm = text-sm (14px) on desktop, scales down to 13px on mobile
  • text-body-xs = text-xs (12px) on desktop, scales down to 11px on mobile

| Class | Mobile → Desktop | Weight | Use Case | |-------|-----------------|--------|----------| | Display (Hero Sections) | | text-display-2xl | 48px → 72px | 800 | Massive hero titles | | text-display-xl | 40px → 60px | 800 | Large hero titles | | text-display-lg | 32px → 48px | 700 | Medium hero titles | | text-display | 28px → 36px | 700 | Small hero titles | | Headings | | text-h1 | 28px → 36px | 700 | Main page headings | | text-h2 | 24px → 30px | 700 | Section headings | | text-h3 | 20px → 24px | 600 | Subsection headings | | Body Text | | text-body | 14px → 16px | 400 | Regular paragraphs | | text-body-sm | 13px → 14px | 400 | Smaller body text | | text-body-xs | 11px → 12px | 400 | Extra small text | | Small Text | | text-caption | 10px → 11px | 400 | Image captions, footnotes | | text-overline | 10px → 11px | 600 | Labels (uppercase) |


tailwind-merge Integration

Basic Setup

If you use tailwind-merge, extend it to support fluid typography classes:

// lib/utils.ts
import { clsx, type ClassValue } from "clsx";
import { extendTailwindMerge } from "tailwind-merge";
import { getFluidTypographyMergeConfig } from "fluid-typography/merge";

// Create extended merge
const twMerge = extendTailwindMerge(getFluidTypographyMergeConfig());

export function cn(...inputs: ClassValue[]) {
    return twMerge(clsx(inputs));
}

With Custom Scales

If you're using custom scales, pass the same options:

// lib/utils.ts
import { extendTailwindMerge } from "tailwind-merge";
import { getFluidTypographyMergeConfig } from "fluid-typography/merge";

const twMerge = extendTailwindMerge(
  getFluidTypographyMergeConfig({
    customScales: {
      'hero': { size: [50, 80] }
    }
  })
);

export function cn(...inputs: ClassValue[]) {
    return twMerge(clsx(inputs));
}

Now your custom classes merge properly:

cn('text-hero text-h1') // => 'text-h1' ✅
cn('text-display-xl font-bold text-body') // => 'text-body font-bold' ✅

FAQ

Do I need to configure anything?

No. Just install, add to your Tailwind config, and use the classes. Configuration is optional.

Can I customize the typography scale?

Yes! Add custom scales alongside the defaults:

fluidTypography({
  customScales: {
    'hero': {
      size: [50, 80],  // [minPx, maxPx]
      fontWeight: '900'  // lineHeight and fontWeight are optional
    }
  }
})

Your custom scales are added to the defaults, so you get both text-hero (custom) and text-h1 (default).

Can I change the viewport range?

Yes! Customize min/max viewport widths:

fluidTypography({
  minViewportWidth: 320,   // Default: 375
  maxViewportWidth: 1920   // Default: 1440
})

Do I need tailwind-merge integration?

Only if you're already using tailwind-merge in your project (via cn() utility or similar). Otherwise, skip it.

Does it work with Tailwind v4?

Can I override the font-weight?

Yes! Font weights are included by default for convenience, but you can override:

<h1 className="text-h1 font-normal">Light heading</h1>
<p className="text-body font-semibold">Bold paragraph</p>

Why do body variants match Tailwind defaults?

For easy mental mapping! On desktop:

  • text-body = text-base (16px)
  • text-body-sm = text-sm (14px)
  • text-body-xs = text-xs (12px)

The difference? These scale down on mobile for better readability.

Yes! Use @plugin "fluid-typography" in your CSS file (see Quick Start above).

What if I use conditional classes?

Add the safelist to your config:

import fluidTypography, { getTypographySafelist } from 'fluid-typography'

const options = {
  customScales: {
    'hero': { size: [50, 80] }
  }
}

export default {
  plugins: [fluidTypography(options)],
  safelist: getTypographySafelist(options)  // Pass same options
}

How does the fluid scaling work?

Uses CSS clamp() to scale smoothly between viewports (default: 375px mobile → 1440px desktop):

font-size: clamp(1.75rem, 1.5739rem + 0.7512vw, 2.25rem);

The formula automatically adjusts based on your minViewportWidth and maxViewportWidth settings.


TypeScript

Full TypeScript support included:

import fluidTypography, { DEFAULT_SCALE, getTypographySafelist } from 'fluid-typography'
import type { ScaleTuple, PluginOptions, ScaleConfig } from 'fluid-typography'

// Reference scale values
const displayXL: ScaleTuple = DEFAULT_SCALE['display-xl'] // [40, 60]

// Type-safe options
const options: PluginOptions = {
  customScales: {
    'hero': {
      size: [50, 80],
      fontWeight: '900'
    }
  },
  minViewportWidth: 320,
  maxViewportWidth: 1920
}

License

MIT © Ayan Ghosh


Questions? Open an issue