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

@deck9/tailwindcss-recursive-font-helper

v1.0.1

Published

This plugin adds utilities to control the different styling axes of the variable font Recursive

Readme

@deck9/tailwindcss-recursive-font-helper

This is a plugin for TailwindCSS. It provides new utilities to control the different styling axes of the Recursive font.

Example of usage of recursive font utility classes

Setup Font

I recommend downloading the font from the Recursive Font website and host it in your project.

Use the @font-face rule to include the font into your project.

@font-face {
  font-family: 'Recursive var';
  font-weight: 300 1000;
  font-style: oblique 0deg 15deg;
  font-display: swap;
  src: url("./fonts/Recursive_VF.woff2") format("woff2");
}

Also make sure, that you extend your tailwind.config.js file, to use the loaded font in the right places.

// tailwind.config.js
const defaultTheme = require("tailwindcss/defaultTheme");

module.exports = {
  theme: {
    extend: {
      fontFamily: {
        sans: ["Recursive var", ...defaultTheme.fontFamily.sans],
      },
    }
  },
}

Install

Install the plugin from npm:

# Using npm
npm install --save @deck9/tailwindcss-recursive-font-helper

# Using yarn
yarn add @deck9/tailwindcss-recursive-font-helper

Then add the plugin to your tailind.config.js file

// tailwind.config.js
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require('@deck9/tailwindcss-recursive-font-helper'),
  ],
}

Usage

You can use the added utilities like any other utility in tailwindCSS. Just use the classes where the Recursive font is active.

<div class="font-sans">
  <span class="italic-intense mono-10 casual-25">This is italic text</span>
</div>

| utility | effect | |------------------|------------------| | italic-mild | "slnt"-5; | | italic | "slnt"-10; | | italic-intense | "slnt"-15; | | cursive-off | "CRSV"0 | | cursive-auto | "CRSV"0.5 | | cursive-on | "CRSV"1 | | mono|casual-0 | "MONO|CASL"0 | | mono|casual-10 | "MONO|CASL"0.1 | | mono|casual-20 | "MONO|CASL"0.2 | | mono|casual-25 | "MONO|CASL"0.25 | | mono|casual-30 | "MONO|CASL"0.4 | | mono|casual-40 | "MONO|CASL"0.4 | | mono|casual-50 | "MONO|CASL"0.5 | | mono|casual-60 | "MONO|CASL"0.6 | | mono|casual-70 | "MONO|CASL"0.7 | | mono|casual-75 | "MONO|CASL"0.75 | | mono|casual-80 | "MONO|CASL"0.8 | | mono|casual-90 | "MONO|CASL"0.9 | | mono|casual-100 | "MONO|CASL"1 |

Configuration

You can configure which values and variants are generated by this plugin under the recursiveFontHelper key in your tailwind.config.js file.

The values do affect the .mono-{val} and .casual-{val} classes. The .italic and .cursive utilities are not configurable right now.

// tailwind.config.js
module.exports = {
  theme: {
    recursiveFontHelper: {
      0: '0',
      5: '5',
      10: '10',
      15: '15',
    }
  },
  variants: {
    recursiveFontHelper: ['responsive', 'hover']
  }
}