Built by Monir
Modular Scales & Fluid Clamp Engine

Fluid typography calibrated for production software.

Generate exact viewport clamp calculations, verify responsive bounds in real time, and export tokenized styling formulas.

Base: 16px Rem Target: 1rem Viewport Bounds: 375px โ€” 1440px
16px

Calibration Parameters

GLOBAL CSS ANCHORS
px
px
px
Presets:

Calculated Units

px
rem
em
px
pt

Live Specimen

The quick brown fox jumps
16px ยท 1rem ยท 12pt
Formula Rem: 16px รท 16px = 1rem
Formula Pt: 16px ร— 0.75 = 12pt

Fluid Limits

px
px
Viewport Scrubber Simulator 900px
Responsive Typography In Motion

Calculated Clamp Output

font-size: clamp(1rem, 0.86rem + 0.7vw, 2rem);
Computed Slope: โ€” vw per 100px
Active Boundaries: โ€”

Modular Ratios

Independently interpolated

Production Stylesheet Export

Implementation Recipes

Dynamic, production-calibrated code blocks reflecting your live settings above.

โ— Live Synced With Parameters
WP

WordPress

Appearance โ†’ Additional CSS or theme.json
style.css / Customizer
:root { --step-base: clamp(1rem, 0.86rem + 0.7vw, 2rem); }
๐Ÿ“ Paste directly into Customizer or assign to block theme typography variables.
TW

Tailwind CSS

tailwind.config.js โ†’ theme.extend
tailwind.config.js
module.exports = { theme: { extend: { fontSize: { 'step-base': 'clamp(1rem, 0.86rem + 0.7vw, 2rem)', } } } };
๐Ÿ“ Reference via utility classes like text-step-base without breakpoint prefixes.
Copied to clipboard