Skip to content

pantoken / packages/utils/src / resolveTokens

Function: resolveTokens()

resolveTokens(base, options?): Map<string, string>

Beta

Resolve every token's value against the set (see makeResolver), keyed by name.

Parameters

base

readonly Token[]

options?

ResolveOptions = {}

Returns

Map<string, string>

Example

Resolve a whole IR to a name → value map

ts
import { resolveTokens } from "@pantoken/utils";
import type { Token } from "@pantoken/model";

const ir: Token[] = [
  { name: "--instui-leaf", syntax: "<color>", inherits: true, value: "#0374B5" },
  { name: "--instui-brand", syntax: "*", inherits: true, value: "var(--instui-leaf)" },
  { name: "--instui-bg", syntax: "*", inherits: true, value: "light-dark(#fff, #000)" },
];

const byName = resolveTokens(ir, { mode: "dark" });
byName.get("--instui-brand"); // → "#0374B5"
byName.get("--instui-bg");    // → "#000"