Skip to content

pantoken / formats/scss/src / toScss

Fall: toScss()

toScss(tokens, options?): string

Tilrauna

Gefur út SCSS-breytur fyrir token IR.

Færibreytur

tokens

readonly Token[]

IR-ið (t.d. frá @pantoken/tokens).

options?

ToScssOptions = {}

ToScssOptions.

Skilar

string

SCSS-uppsprettustrengurinn.

Dæmi

Gefðu út sjálfgefnu (ljósu) breyturnar

ts
import { toScss } from "@pantoken/scss";
import { tokens } from "@pantoken/tokens";

toScss(tokens); // "$instui-color-brand: #0374b5;\n…"

Leysa dökka stillingu annars þema

ts
import { toScss } from "@pantoken/scss";
import { byTheme } from "@pantoken/tokens";

toScss(byTheme("canvas"), { mode: "dark" });