tangible 0.0.1

Design tokens as data — colors, type, space, shadows, gradients, and contrast — rendered to CSS.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `tangible` CLI entry point.
//!
//! See the [`tangible::cli`] module for the parsed-arguments shape and runtime entry point.

use clap::Parser;

fn main() -> anyhow::Result<()> {
    let args = tangible::cli::Args::parse();
    tangible::cli::run(args, &tangible::io::SystemFs)
}