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

@fest-lib/veela

v0.1.16

Published

fest-lib Veela: CSS tokens, --c2 color functions, Agate.UX, SCSS + runtime loaders

Readme

Veela.CSS

@fest-lib/veela — CSS/SCSS design system and runtime loaders for fest-lib. Tokens (--c2-surface, spacing, radius, type) plus Agate.UX oriented-space helpers. Token values live in SCSS; this README is the concept map.

npm install @fest-lib/veela
import { /* runtime loaders */ } from "@fest-lib/veela";

SCSS: @fest-lib/veela/scss/*. Peers: @fest-lib/core, dom, object, lure.


Implementation Details

  • Transforms: self-size-x/self-size-y = 100% (client-space)
  • Insets/Sizing: self-size-x/self-size-y = offset parent size
  • Transforms: default to client-space unless transformed
  • Inline/Block: sizes/insets may swap in different writing modes

🏗️ Potential Implementations

  • By layout:
    • Fixed/absolute (insets)
    • CSS Houdini (layout worklets)
  • By orientation:
    • inline/block with writing-mode/direction
    • transform-based (rotate)
    • Mixed/combined approaches

🎨 Custom CSS Properties

| Oriented-Space | Client-Space | Implementation-Dependent | |:--------------:|:------------:|:------------------------:| | --os-inset-x | --cs-inset-x | --im-inset-x | | --os-inset-y | --cs-inset-y | --im-inset-y | | --os-drag-x | --cs-drag-x | --im-drag-x | | --os-drag-y | --cs-drag-y | --im-drag-y | | --os-size-x | --cs-size-x | --im-size-x | | --os-size-y | --cs-size-y | --im-size-y | | --os-self-size-x | --cs-self-size-x | --im-self-size-x | | --os-self-size-y | --cs-self-size-y | --im-self-size-y | | --os-offset-x | --cs-offset-x | --im-offset-x | | --os-offset-y | --cs-offset-y | --im-offset-y |

📏 Scaling

Special versions of getBoundingClientRect, clientX, and clientY with virtual scaling support.

Scaling methods:

  • CSS zoom (recommended)
  • CSS scale (legacy)
  • rem/em units

🏙️ Agate.UX — Multi-dimensional UX/Interaction

Agate.UX is a next-gen sub-component for advanced UI/UX, designed for the "2REmembrance" generation (2025+).

🧩 Key Concepts

  • Orientation-based transforms: calc(var(--orient, 0) * <A>) where <A> can be 100grad, 0.25turn, 90deg, etc.
  • Self-centering elements: translate(-50%, -50%) with transform-origin: 0px 0px;
  • Drag & center combined: translate(calc(var(--drag-x, 0px) - 50%), calc(var(--drag-y, 0px) - 50%))

Coordinate Spaces

  • Client-Space: page coordinate system
  • Oriented-Space: virtual screen
  • Algorithm-Space: internal logic

Degree Types

  • 90deg-based (0°, 90°, 180°, 270°)
  • Variable/Matrix-based

Event Pre-computation

  • Client-Space Pointer Position
  • Oriented-Space Pointer Position
  • Algorithm-Space Pointer Position

🧭 Policy Concepts

  • Use inset for semi-static, translate for dynamic (drag/animation) positioning.

1. Introduction

Veela.CSS is a CSS framework for building modern, responsive, and accessible web applications. It is built on top of the veela.js library and provides a set of reusable components and utilities for building web applications.

2. Features

  • Responsive design
  • Accessible components
  • Reusable utilities
  • Customizable theme
  • Built-in animations

3. Architecture

Runtime side

  • Color functions
  • Atomic classes
  • Animation keyframes
  • Implementations (commons)

SCSS library

  • Theme mixins
  • Layout mixins
  • Utility mixins

Design types

  • VE design (default, but no priority)
  • Material Design 3 (not completed yet)

Color functions

Currently we used native CSS custom functions (and own implementations for veela.css runtime side).

  • --c2-surface(tone = 0, base-color = var(--current), scheme-id = 2) - returns a surface color based on the tone, base color and theme id
  • --c2-on-surface(tone = 0, base-color = var(--current), scheme-id = 2) - returns a on-surface color based on the tone, base color and theme id
  • --c2-contrast(tone = 0, base-color = var(--current), scheme-id = 2) - returns a contrast color based on the tone, base color and theme id
  • --c2-on-contrast(tone = 0, base-color = var(--current), scheme-id = 2) - returns a on-contrast color based on the tone, base color and theme id

Alpha channel

  • Can be got by relative color function, e.g. oklch(from --c2-surface(tone = 0, base-color = var(--current), scheme-id = 2) l c h/ 0.5)

Scheme ID

  • 0 - light
  • 1 - dark
  • 2 - default

Tone (of function argument)

  • 0% - light or black tone (depends on the scheme id)
  • 50% - chromatic tone (depends on the base color and scheme id)
  • 100% - white or white tone (depends on the scheme id)

Base color

  • var(--current) - the current color, default bound to primary color, but can be overridden by the user
  • var(--primary) - the primary color (in MD3 adapted under --current)
  • var(--secondary) - the secondary color (in MD3 adapted under --secondary)
  • var(--accent) - the accent color (in MD3 adapted under --accent)
  • var(--success) - the success color
  • var(--warning) - the warning color
  • var(--error) - the error color

Example

.example {
    background-color: var(--c2-surface(tone = 0, base-color = var(--current), scheme-id = 2));
}

Color theme mixins

  • @mixin solid-colorize(selector = "&", options: ("shade": 0.0, "tint": 0.0, "scheme-id": 2, "role": null)) - colorizes the selector with the given options

Options

  • shade - the shade of the color, default is 0.0
  • tint - the tint of the color, default is 0.0
  • scheme-id - the scheme id, default is 2
    • 0 - light
    • 1 - dark
    • 2 - default
  • role - the role of the color, default is null
    • MD3 specific, such as primary, secondary, tertiary, error, surface, on-surface, etc.
    • null - no role, default to current color
  • scope - propagation mode, default is "component"
    • "component" - applies the palette to the selector, supporting descendant form controls and global helpers (previous solid-colorize behaviour)
    • "selector" - limits the palette to the selector itself without propagating to descendants (previous solid-colorize-selector-only behaviour)
  • propagate - optional boolean override for descendant propagation (defaults to the value implied by scope)
  • forms-background - controls whether interactive descendants receive the blended background colour (defaults to the value of propagate)
  • global-targets - toggles the additional global helpers (::picker, ui-icon, inline text tags) (defaults to the value of propagate)

Example

.example {
    @include solid-colorize(selector = "&", options: ("shade": 0.0, "tint": 0.0, "scheme-id": 2, "role": null));
}

Layout variables

Padding variables (in rem):

  • --padding-sm - 0.25rem
  • --padding-md - 0.5rem
  • --padding-lg - 1rem
  • --padding-xl - 2rem
  • --padding-2xl - 4rem
  • --padding-3xl - 8rem
  • --padding-4xl - 16rem
  • --padding-5xl - 32rem
  • --padding-6xl - 64rem
  • --padding-7xl - 128rem
  • --padding-8xl - 256rem
  • --padding-9xl - 512rem

Spacing variables (in rem):

  • --space-xs - 0.25rem
  • --space-sm - 0.5rem
  • --space-md - 0.75rem
  • --space-lg - 1rem
  • --space-xl - 1.25rem
  • --space-2xl - 1.6rem

Radius variables (in rem):

  • --radius-xs - 0.25rem
  • --radius-sm - 0.5rem
  • --radius-md - 0.75rem
  • --radius-lg - 0.85rem
  • --radius-xl - 1rem
  • --radius-2xl - 1.25rem
  • --radius-full - min(50dvmin, 50cqmin)

Gap variables (in rem):

  • --gap-xs - 0.25rem
  • --gap-sm - 0.5rem
  • --gap-md - 0.75rem
  • --gap-lg - 1rem
  • --gap-xl - 1.25rem
  • --gap-2xl - 1.6rem

Font size variables (in rem):

  • --text-xs - 0.7rem
  • --text-sm - 0.8rem
  • --text-base - 0.9rem
  • --text-lg - 1rem
  • --text-xl - 1.25rem
  • --text-2xl - 1.6rem
  • --text-3xl - 2rem
  • --text-4xl - 2.5rem
  • --text-5xl - 3rem
  • --text-6xl - 4rem

Line height variables:

  • --leading-tight - 1.2
  • --leading-normal - 1.5
  • --leading-relaxed - 1.8

Font weight variables:

  • --font-weight-normal - 400
  • --font-weight-medium - 500
  • --font-weight-semibold - 600
  • --font-weight-bold - 700

Font family variables:

  • --font-family - 'Roboto', sans-serif
  • --font-family-mono - 'Roboto Mono', monospace
  • --font-family-display - 'Roboto Display', sans-serif
  • --font-family-serif - 'Roboto Serif', serif
  • --font-family-handwriting - 'Roboto Handwriting', cursive
  • --font-family-fantasy - 'Roboto Fantasy', fantasy
  • --font-family-cursive - 'Roboto Cursive', cursive
  • --font-family-system - system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif

Transition variables:

  • --transition-fast - 140ms ease
  • --transition-normal - 160ms ease
  • --transition-slow - 200ms ease

Interactive state variables:

  • --hover-lift - 0.03
  • --active-lift - 0.05
  • --focus-lift - 0.02

Shadow variables:

  • --shadow-sm - 0 1px 2px rgba(0, 0, 0, 0.05)
  • --shadow-md - 0 4px 6px rgba(0, 0, 0, 0.1)
  • --shadow-lg - 0 10px 15px rgba(0, 0, 0, 0.1)
  • --shadow-xl - 0 20px 25px rgba(0, 0, 0, 0.1)
  • --shadow-2xl - 0 25px 50px rgba(0, 0, 0, 0.1)
  • --shadow-inset - inset 0 1px 0 rgba(0, 0, 0, 0.05)
  • --shadow-inset-strong - inset 0 2px 6px rgba(0, 0, 0, 0.1)

Border width variables (in px):

  • --border-width-sm - 0.5px
  • --border-width-md - 1px
  • --border-width-lg - 2px
  • --border-width-xl - 4px
  • --border-width-2xl - 8px
  • --border-width-3xl - 16px
  • --border-width-4xl - 32px
  • --border-width-5xl - 64px
  • --border-width-6xl - 128px
  • --border-width-7xl - 256px
  • --border-width-8xl - 512px
  • --border-width-9xl - 1024px

Avatar and icon sizes

  • --avatar-size - 48px
  • --avatar-size-lg - 64px
  • --icon-size-sm - 1rem
  • --icon-size-md - 1.25rem
  • --icon-size-lg - 1.5rem

Example

.icon-size-sm {
    inline-size: var(--icon-size-sm);
    block-size: var(--icon-size-sm);
}
.icon-size-md {
    inline-size: var(--icon-size-md);
    block-size: var(--icon-size-md);
}
.icon-size-lg {
    inline-size: var(--icon-size-lg);
    block-size: var(--icon-size-lg);
}

Atomic classes

Padding

  • .p-xs - padding: var(--padding-xs)
  • .p-sm - padding: var(--padding-sm)
  • .p-md - padding: var(--padding-md)
  • .p-lg - padding: var(--padding-lg)
  • .p-xl - padding: var(--padding-xl)
  • .p-2xl - padding: var(--padding-2xl)
  • .p-3xl - padding: var(--padding-3xl)
  • .p-4xl - padding: var(--padding-4xl)
  • .p-5xl - padding: var(--padding-5xl)
  • .p-6xl - padding: var(--padding-6xl)
  • .p-7xl - padding: var(--padding-7xl)
  • .p-8xl - padding: var(--padding-8xl)
  • .p-9xl - padding: var(--padding-9xl)

Margin

  • .m-xs - margin: var(--space-xs)
  • .m-sm - margin: var(--space-sm)
  • .m-md - margin: var(--space-md)
  • .m-lg - margin: var(--space-lg)
  • .m-xl - margin: var(--space-xl)
  • .m-2xl - margin: var(--space-2xl)
  • .m-3xl - margin: var(--space-3xl)
  • .m-4xl - margin: var(--space-4xl)
  • .m-5xl - margin: var(--space-5xl)
  • .m-6xl - margin: var(--space-6xl)

Gap

  • .gap-xs - gap: var(--gap-xs)
  • .gap-sm - gap: var(--gap-sm)
  • .gap-md - gap: var(--gap-md)
  • .gap-lg - gap: var(--gap-lg)
  • .gap-xl - gap: var(--gap-xl)

Text size

  • .text-xs - font-size: var(--text-xs)
  • .text-sm - font-size: var(--text-sm)
  • .text-base - font-size: var(--text-base)
  • .text-lg - font-size: var(--text-lg)
  • .text-xl - font-size: var(--text-xl)

Font weight

  • .font-weight-normal - font-weight: var(--font-weight-normal)
  • .font-weight-medium - font-weight: var(--font-weight-medium)
  • .font-weight-semibold - font-weight: var(--font-weight-semibold)
  • .font-weight-bold - font-weight: var(--font-weight-bold)

Font family

  • .font-family-sans-serif - font-family: var(--font-family-sans-serif)
  • .font-family-serif - font-family: var(--font-family-serif)
  • .font-family-monospace - font-family: var(--font-family-monospace)
  • .font-family-display - font-family: var(--font-family-display)
  • .font-family-handwriting - font-family: var(--font-family-handwriting)

Line height

  • .leading-tight - line-height: var(--leading-tight)
  • .leading-normal - line-height: var(--leading-normal)
  • .leading-relaxed - line-height: var(--leading-relaxed)

Transition

  • .transition-fast - transition: var(--transition-fast)
  • .transition-normal - transition: var(--transition-normal)
  • .transition-slow - transition: var(--transition-slow)

Interactive state

  • .hover-lift - transform: translateY(var(--hover-lift))
  • .active-lift - transform: translateY(var(--active-lift))
  • .focus-lift - transform: translateY(var(--focus-lift))

Display

  • .d-grid - display: grid
  • .d-flex - display: flex
  • .d-block - display: block
  • .d-inline - display: inline
  • .d-inline-block - display: inline-block
  • .d-inline-flex - display: inline-flex
  • .d-inline-grid - display: inline-grid
  • .d-none - display: none
  • .d-flex-col - display: flex-column
  • .d-flex-row - display: flex-row
  • .d-flex-col-reverse - display: flex-column-reverse
  • .d-flex-row-reverse - display: flex-row-reverse
  • .d-flex-wrap - display: flex-wrap
  • .d-flex-wrap-reverse - display: flex-wrap-reverse

Shadow

  • .shadow-sm - box-shadow: var(--shadow-sm)

Examples of classes usage

Grid with padding, margin, gap and display: grid;

<div class="p-md m-md gap-md d-grid">
    <div class="p-md m-md gap-md d-grid">
        <div class="p-md m-md gap-md d-grid">
        </div>
        <div class="p-md m-md gap-md d-grid">
        </div>
    </div>
</div>

Flexbox with padding, margin, gap and display: flex;

<div class="p-md m-md gap-md d-flex">
    <div class="p-md m-md gap-md d-flex">
    </div>
    <div class="p-md m-md gap-md d-flex">
    </div>
</div>

MD3 color classes and variants

Color classes

  • .color-primary - color: var(--color-primary)
  • .color-secondary - color: var(--color-secondary)
  • .color-accent - color: var(--color-accent)
  • .color-success - color: var(--color-success);
  • .color-warning - color: var(--color-warning);
  • .color-danger - color: var(--color-danger);
  • .color-info - color: var(--color-info);

Surface classes

  • .surface - background-color: var(--surface-color)
  • .surface-subtle - background-color: var(--surface-color-subtle)
  • .surface-muted - background-color: var(--surface-color-muted)
  • .surface-emphasis - background-color: var(--surface-color-emphasis)
  • .surface-strong - background-color: var(--surface-color-strong)

Text classes

  • .text-primary - color: var(--text-color-primary)
  • .text-secondary - color: var(--text-color-secondary)
  • .text-muted - color: var(--text-color-muted)
  • .text-disabled - color: var(--text-color-disabled)

Validation state classes

  • .state-success - color: var(--color-success)
  • .state-warning - color: var(--color-warning)
  • .state-danger - color: var(--color-danger)

Examples of classes usage

<div class="color-primary surface-subtle">
    <div class="text-primary state-success">
    </div>
</div>
<div class="color-secondary surface-emphasis">
    <div class="text-secondary state-warning">
    </div>
</div>
<div class="color-accent surface-strong">
    <div class="text-accent state-danger">
    </div>
</div>