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

@kajabi-ui/styles

v1.0.3

Published

A collection of styles and tokens used within Kajabi

Readme

Kajabi Design System Tokens and Styles (@kajabi-ui/styles)

A comprehensive design tokens package that provides standardized design primitives for Kajabi's design system. This package (@kajabi-ui/styles) serves as the foundation for consistent UI development across all Kajabi products.

Purpose

This repository houses Kajabi's design system tokens, which serve as the single source of truth for colors, typography, spacing, and other design primitives used across Kajabi's products. These tokens ensure design consistency, streamline development, and create a unified visual experience.

Key features:

  • Centralized design tokens management
  • Platform-agnostic implementation
  • Compatible with multiple formats (CSS, SCSS, JSON)
  • Built with Style Dictionary and Tokens Studio
  • Easy integration with CDN options

Installation

NPM Package

npm install @kajabi-ui/styles

or

yarn add @kajabi-ui/styles

Usage in Projects

CSS Import

@use '~@kajabi-ui/styles/pine/pine.css';

SCSS Import

@use '~@kajabi-ui/styles/pine/pine.scss';

JavaScript Import

import '@kajabi-ui/styles/pine/pine.css';

CDN Usage with jsDelivr

You can also use jsDelivr to include our design tokens directly in your HTML without installing the package:

<!-- Global CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@kajabi-ui/styles/dist/pine/pine.css">

The CDN option is ideal for:

  • Quick prototyping
  • Projects that don't use a build system
  • Third-party integrations with Kajabi

Specific Component Usage

For more granular imports of specific components:

/* Import only chip tokens */
@use '@kajabi-ui/styles/pine/components/pds-chip/pds-chip.tokens.scss';

Available Token Categories

  • Colors and themes
  • Typography (font families, sizes, weights)
  • Spacing and layout
  • Border properties (width, radius)
  • Shadows and elevation
  • Z-index
  • Motion and animations
  • Component-specific tokens (button, chip, etc.)

Project Structure

ds-tokens/
├── packages/
│   └── styles/            # Main package (@kajabi-ui/styles)
│       ├── src/
│       │   ├── tokens/    # Source token files (JSON format)
│       │   └── lib/       # Build and transformation scripts
└── .github/              # GitHub workflows and configuration

Development with Nx

This project is built with Nx, a smart, extensible build framework. Nx helps manage monorepos and provides efficient build tools for multiple packages.

Using Nx Commands

Building the Project

# Build the styles package
npx nx run @kajabi-ui/styles:build

# Or using the shorter syntax
npx nx build @kajabi-ui/styles

Running Other Scripts

# Generate tokens
npx nx run @kajabi-ui/styles:generate

# Run linting
npx nx run @kajabi-ui/styles:lint

Nx Targets

To see all available targets for the styles package:

npx nx show project @kajabi-ui/styles

Using Token Studio

This project uses Tokens Studio (formerly Figma Tokens) to manage design tokens. Token Studio provides a bridge between design and development by allowing designers to maintain tokens in Figma that can be exported and used in the development workflow.

Getting Started with Token Studio:

  1. For Designers:

    • Install the Tokens Studio for Figma plugin
    • Connect to our shared token repository
    • Make changes through the Token Studio interface
  2. For Developers:

    • Token changes are synchronized with our repository through the build process
    • Token files are stored in the src/tokens/ directory
    • Review and implement token changes using the standard contribution workflow

Contribution Workflow

  1. Create a feature branch

    git checkout -b feature/your-feature-name
  2. Make your changes to the token files in src/tokens/

  3. Run the token generation script

    npm run generate
  4. Verify changes work as expected

  5. Commit your changes with a descriptive message

    git commit -m "Add new color tokens for marketing pages"
  6. Push your changes and create a pull request

    git push origin feature/your-feature-name
  7. Request a review from the design systems team

Release Process

The package is published to NPM with a structure that makes tokens accessible without the dist/ prefix in import paths, ensuring a clean and intuitive developer experience.


© 2025 Kajabi, LLC. All rights reserved.