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

@obvia/fonts

v1.3.0

Published

Obvia Fonts - A newly designed font family crafted for designers, developers, and storytellers who demand clarity and impact

Readme

Obvia Font Family

Obvia is a contemporary type system envisioned by Selçuk Çukur in collaboration with Obvia. It is built on clarity, rhythm, and versatility — designed to serve both functional and expressive needs across digital and print environments.

  • Obvia Sans - A geometric sans-serif crafted for precision and readability. Rooted in Swiss modernist principles, it balances simplicity with strength, making it suitable for body text, headlines, branding, and large-scale display use.

  • Obvia Mono - A monospaced companion to Obvia Sans. Designed for technical contexts — code editors, diagrams, and terminal interfaces — it brings consistency and clarity to environments where structure matters most.

  • Obvia Pixel - A playful display family of five pixel-inspired styles. Each variant explores a different facet of digital aesthetics, offering bold, decorative forms for logos, posters, and expressive headlines.

Installation

Obvia ships as a single package — installing @obvia/fonts gives you access to Sans, Mono, and Pixel families all at once.

npm install @obvia/fonts

After installation, you can import any style directly :

// Sans
import { obviaSans } from "@obvia/fonts"

// Mono
import { obviaMono } from "@obvia/fonts"

// Pixel
import { obviaPixel } from "@obvia/fonts"

This unified distribution ensures consistency across projects: one install, three families, infinite possibilities.

Quickstart

Using with Next.js

In next.config.ts add transpilePackages so that the @obvia/fonts package is properly transpiled by Next.js.

import type { NextConfig } from "next"

const nextConfig: NextConfig = {
    reactStrictMode: true, 
    transpilePackages: ["@obvia/fonts"]
}

export default nextConfig

In layout.tsx import the Sans font from @obvia/fonts and apply it to the root layout.

// Sans
import { obviaSans } from "@obvia/fonts"

// Define the root layout component for the application
export default function RootLayout({ children }) {
    return (
        <html lang="en" className={obviaSans.variable}>
        <body>{children}</body>
        </html>
    )
}

In layout.tsx import the Mono font from @obvia/fonts and apply it to the root layout.

// Mono
import { obviaMono } from "@obvia/fonts"

// Define the root layout component for the application
export default function RootLayout({ children }) {
    return (
        <html lang="en" className={obviaMono.variable}>
        <body>{children}</body>
        </html>
    )
}

In layout.tsx import the Pixel font from @obvia/fonts and apply it to the root layout.

// Pixel
import {
    obviaPixelSquare,
    obviaPixelGrid,
    obviaPixelCircle,
    obviaPixelTriangle,
    obviaPixelLine
} from "@obvia/fonts"

// Define the root layout component for the application
export default function RootLayout({ children }) {
    return (
        // Set the HTML language attribute and apply the Obvia Pixel Square font as a CSS variable
        <html lang="en" className={`${obviaPixelSquare.variable}`}>
        {/* Render the application content inside the body */}
        <body>{children}</body>
        </html>
    )
}

Using with Tailwind CSS

In globals.css (or your global CSS theme file) extend the theme by mapping the Obvia font tokens to Tailwind’s font variables. This ensures that the @obvia/fonts package integrates properly with Tailwind.

@theme {
    /* Obvia (Sans) */
    --font-sans: var(--font-obvia-sans);
    /* Obvia (Mono) */
    --font-mono: var(--font-obvia-mono);
    /* Obvia (Pixel) */
    --font-pixel-square: var(--font-obvia-pixel-square);
    --font-pixel-grid: var(--font-obvia-pixel-grid);
    --font-pixel-circle: var(--font-obvia-pixel-circle);
    --font-pixel-triangle: var(--font-obvia-pixel-triangle);
    --font-pixel-line: var(--font-obvia-pixel-line);
}

Inspiration

Obvia draws its spirit from a lineage of remarkable typefaces. Each of these designs has shaped our perspective on clarity, rhythm, and modernity :

We acknowledge and thank the creators of these typefaces for their craft and vision. Their work continues to inspire and guide our own.

License

Obvia Fonts project is published as open source. The SIL Open Font License, Version 1.1 is used, which is one of the well-known open source coding licenses. You can get detailed information about the license terms by visiting the link below.