Unreleased software — APIs may change without notice.

toolbox

GitHub

A CSS system that gets out of the way.

Two color tokens. Two type knobs. Composition over configuration. Everything else derives.


Live taste

A code block declaring its language. The system handles framing, hue, label, and selection.

def greet(name: str) -> str:
    return f"Hello, {name}!"

if __name__ == "__main__":
    print(greet("world"))

The whole system in three points

Two color tokens.

--bg for surface presence. --fg for ink contrast. --hue for chromatic identity. The formula handles theme switching, contrast, and palette generation.

Two type knobs.

--type for local scale steps. --scale for regional multipliers. Padding and gaps derive from line-height — there is no separate spacing API.

Composition over configuration.

Stateless layout primitives — .row, .column, .grid, .hud-overlay, .hero. No options, no variants, no breakpoints. They do one thing and stack cleanly.


What's in the toolbox