//! Read a token spec from `tokens.json` (relative to the working directory) and write CSS to
//! `tokens.css`. Run with `cargo run --example from_json`.
//!
//! Uses `std::fs` directly for brevity; production code in this crate goes through
//! [`tangible::io::FileOps`] so it can be tested without touching disk.
// Examples illustrate library usage, not internal conventions — bypass the FileOps boundary.
use Error;
use fs;
use ;