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

@octaviaflow/fonts

v3.0.18

Published

OctaviaFlow Design System typeface family — Lufga, Outfit, JetBrains Mono, RTL United Text

Readme

@octaviaflow/fonts

Octaviaflow Design System typeface family

Overview

The @octaviaflow/fonts package provides the Octaviaflow Design System typeface family, including:

  • Lufga - Modern geometric sans-serif (18 styles: Thin to Black, with italics)
  • RTL United Text - Right-to-left language support (6 styles: Light to Bold, with italics)
  • JetBrains Mono - Monospace font for code (16 styles: Thin to Extra Bold, with italics)

Installation

npm install @octaviaflow/fonts

Or with Bun:

bun add @octaviaflow/fonts

Usage

CSS Import (Recommended)

Import the compiled CSS file in your application:

@import "@octaviaflow/fonts/css/octaviaflow-fonts.css";

Or use the minified version:

@import "@octaviaflow/fonts/css/octaviaflow-fonts.min.css";

SCSS Import

For more control, import the SCSS files:

// Import all fonts
@import "@octaviaflow/fonts/scss/octaviaflow-fonts";

// Or import individually
@import "@octaviaflow/fonts/scss/lufga";
@import "@octaviaflow/fonts/scss/rtl-united-text";
@import "@octaviaflow/fonts/scss/jetbrains-mono";

Custom Font Path

If you need to customize the font file path:

$font-prefix: "./custom/path/to/fonts";
@import "@octaviaflow/fonts/scss/octaviaflow-fonts";

Font Family Usage

Once imported, use the fonts in your CSS:

/* Lufga - Primary typeface */
body {
  font-family:
    "Lufga",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* RTL United Text - For RTL languages */
[dir="rtl"] {
  font-family: "RTL United Text", "Lufga", sans-serif;
}

/* JetBrains Mono - For code */
code,
pre,
.code {
  font-family: "JetBrains Mono", "Menlo", "Monaco", "Courier New", monospace;
}

Font Weights

Lufga

  • 100 - Thin
  • 200 - Extra Light
  • 300 - Light
  • 400 - Regular (default)
  • 500 - Medium
  • 600 - Semi Bold
  • 700 - Bold
  • 800 - Extra Bold
  • 900 - Black

All weights include italic variants.

RTL United Text

  • 300 - Light
  • 400 - Regular (default)
  • 700 - Bold

All weights include italic variants.

JetBrains Mono

  • 100 - Thin
  • 200 - Extra Light
  • 300 - Light
  • 400 - Regular (default)
  • 500 - Medium
  • 600 - Semi Bold
  • 700 - Bold
  • 800 - Extra Bold

All weights include italic variants.

Storybook Integration

To use Octaviaflow fonts globally in Storybook, add to .storybook/preview-head.html:

<link
  rel="stylesheet"
  href="../node_modules/@octaviaflow/fonts/css/octaviaflow-fonts.css"
/>

Or import in .storybook/preview.js:

import "@octaviaflow/fonts/css/octaviaflow-fonts.css";

Next.js Integration

In your _app.tsx or layout.tsx:

import "@octaviaflow/fonts/css/octaviaflow-fonts.css";

export default function App({ Component, pageProps }) {
  return <Component {...pageProps} />;
}

React Integration

In your main entry file (e.g., index.tsx):

import "@octaviaflow/fonts/css/octaviaflow-fonts.css";
import ReactDOM from "react-dom/client";
import App from "./App";

ReactDOM.createRoot(document.getElementById("root")!).render(<App />);

File Structure

@octaviaflow/fonts/
├── css/
│   ├── octaviaflow-fonts.css
│   └── octaviaflow-fonts.min.css
├── scss/
│   ├── _lufga.scss
│   ├── _rtl-united-text.scss
│   └── octaviaflow-fonts.scss
├── fonts/
│   ├── lufga/
│   │   └── *.woff
│   └── rtl-united-text/
│       └── *.ttf
└── package.json

Performance Tips

  1. Use CSS import - Precompiled CSS is faster than SCSS compilation
  2. Minified version - Use .min.css in production
  3. Subset fonts - Only import the fonts you need (Lufga, RTL United Text, or JetBrains Mono)
  4. font-display: swap - All fonts use font-display: swap for better performance

License

Apache-2.0

Support

For issues and questions, visit: https://github.com/octaviaflow-design-system/issues