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

intelligence-font

v1.2.4

Published

A font for Intelligence-UI.

Downloads

35

Readme

intelligence-font

The self-hosted version of Patika font family

Installation

npm install intelligence-font@latest
# or
yarn add intelligence-font@latest
# or
pnpm add intelligence-font@latest

Usage

Basic Usage

// Import the specific weight you want to use
import "intelligence-font/css/Patika Regular.css"

Import Multiple Weights

// Import multiple weights
import "intelligence-font/css/Patika Regular.css"
import "intelligence-font/css/Patika Bold.css"

CSS Usage Examples

/* Using single weight */
.text {
  font-family: "Patika Regular";
  font-weight: 400;
}

/* Different weights examples */
.text-light {
  font-family: "Patika Light";
  font-weight: 300;
}

.text-regular {
  font-family: "Patika Regular";
  font-weight: 400;
}

.text-medium {
  font-family: "Patika Medium";
  font-weight: 500;
}

.text-bold {
  font-family: "Patika Bold";
  font-weight: 700;
}

/* Combining with CSS variables */
:root {
  --font-patika: "Patika Regular";
}

.custom-text {
  font-family: var(--font-patika);
}

Tailwind CSS3 Configuration

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      fontFamily: {
        patika: ['"Patika Regular"', 'sans-serif'],
        'patika-bold': ['"Patika Bold"', 'sans-serif'],
      },
    },
  },
}

// Usage in HTML/JSX
<p className="font-patika">Regular text</p>
<p className="font-patika-bold">Bold text</p>

Tailwind CSS4 Configuration

@import "intelligence-font/css/Patika Bold.css";

@layer base {
  * {
    font-family: "Patika Bold";
  }
}

Available Weights

| Weight Name | Font Weight | | ----------- | ----------- | | ExtraLight | 200 | | Light | 300 | | Regular | 400 | | Medium | 500 | | SemiBold | 600 | | Bold | 700 | | ExtraBold | 800 | | Black | 900 |

TypeScript Support

This package includes TypeScript type definitions:

import type { PatikaFont, PatikaFontWeight, PatikaFontStyle } from "intelligence-font"

// Type-safe font style usage
const fontStyle: PatikaFontStyle = "Regular"
const fontWeight: PatikaFontWeight = 400

// Full font configuration type
const fontConfig: PatikaFont = {
  style: "Regular",
  weight: 400,
  css: "path/to/css",
  woff: "path/to/woff",
  woff2: "path/to/woff2",
}

Browser Support

  • Chrome (last 2 versions)
  • Firefox (last 2 versions)
  • Safari (last 2 versions)
  • Edge (last 2 versions)

License

This package uses the Patika font family. Please ensure you have the proper license to use this font in your project.

Contributing

If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.