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" };