Open the studio

Your design system, tokenized.

Color, type, gradients. Everything ships as code. One studio, zero handoff friction.

Pick a palette. Lock the ones you love. Tweak the rest. When it’s right, export to wherever your team lives.

Ship everywhere

One system. Every format.

Design tokens that speak Figma, CSS, Tailwind, JSON. Whatever your stack runs on.

01 · CSS

CSS, light and dark.

Every token lands as a CSS variable, dark-mode overrides included. Paste once, theme forever.

tokens.css
:root {
  --brand-500: #457b9d;
  --brand-600: #38638b;
  --accent-500: #e63946;
}
[data-theme="dark"] {
  --brand-500: #7db3d5;
  --accent-500: #f27d88;
}
02 · Tailwind

Tailwind, drop it in.

Brand scales mapped to the same variables, ready for utilities like bg-brand-500.

tailwind.config.ts
colors: {
  brand: {
    500: "var(--brand-500)",
    600: "var(--brand-600)",
  },
  accent: {
    500: "var(--accent-500)",
  },
}
03 · JSON

JSON, take it anywhere.

Standards-format design tokens that drop straight into Style Dictionary or any token build.

tokens.json
"brand": {
  "500": {
    "$type": "color",
    "$value": "#457b9d"
  },
  "600": {
    "$type": "color",
    "$value": "#38638b"
  }
}
04 · GitHub

GitHub, shipped like code.

KOLO writes the files to a branch and opens the pull request. Tokens ship like code.

github.com/acme/web
branch  kolo/tokens-update
commit  chore(tokens): brand scales v3

  src/styles/tokens.css   +42 −18
  tailwind.config.ts       +9  −4

  ✓ pull request opened
Figma plugin

Your palette and type, native in Figma.

Connect once with a six-character code, then push a palette, a type system, or a whole kit into the file you’re working in. Scoped variables, text styles, light and dark modes, no manual renaming. Go on, try it.

  • Semantic color tokens, scoped where they belong
  • Type as real text styles, plus its scale collection
  • Light & dark modes in one push
  • Re-push anytime. KOLO keeps them in sync.
Get the plugin

Choose a palette

Not applied to this file yet.
Opeyemi AjagbeDisconnect

Plus SCSS, SVG, and shareable links.

Open the studio, it’s free