JSPM

  • Created
  • Published
  • Downloads 141548
  • Score
    100M100P100Q178819F
  • License MIT

Convert DTCG design tokens JSON into CSS variables for use in any web application or native app with webview.

Package Exports

  • @terrazzo/plugin-css
  • @terrazzo/plugin-css/package.json

Readme

⛋ @terrazzo/plugin-css

Convert DTCG tokens into CSS variables for use in any web application or native app with webview. Convert your modes into CSS media queries for complete flexibility.

Setup

Requires Node.js 20 or later and the CLI installed. With both installed, run:

npm i -D @terrazzo/plugin-css

Add a terrazzo.config.js to the root of your project:

import { defineConfig } from "@terrazzo/cli";
import css from "@terrazzo/plugin-css";

export default defineConfig({
  outDir: "./tokens/",
  plugins: [
    css({
      filename: "tokens.css",
      variableName: (id) => id.replace(/\./g, "-"),
      baseSelector: ":root",
    }),
  ],
});

Lastly, run:

npx tz build

And you’ll see a ./tokens/tokens.css file generated in your project.

Full Documentation