Skip to content

pantoken / platforms/vanilla/src / VANILLA_TO_INSTUI

变量: VANILLA_TO_INSTUI

const VANILLA_TO_INSTUI: Readonly<Record<string, string>>

实验性

带点的 Foundation 变量路径 → 填充它的 Instructure token。

示例

读取映射,或通过展开为新映射来扩大覆盖范围

ts
import { VANILLA_TO_INSTUI } from "@pantoken/vanilla";

VANILLA_TO_INSTUI["global.mainColors.primary"]; // "--instui-color-background-brand"
const extended = { ...VANILLA_TO_INSTUI, "global.body.color": "--instui-color-text-base" };