Skip to content

pantoken / platforms/email/src / emailTokens

Fall: emailTokens()

emailTokens(mode?): Record<string, string>

Tilrauna

Veldu token-kort fyrir ham (sjálfgefið "light").

Færibreytur

mode?

Mode = "light"

Skilar

Record<string, string>

Dæmi

Innlimaðu token í netfangsreiti (ljós hamur)

ts
import { emailTokens } from "@pantoken/email";

const t = emailTokens();
const html = `<td style="background:${t.colorBackgroundBrand};color:${t.colorTextOnColor}">Hi</td>`;

Dökkur hamur

ts
import { emailTokens } from "@pantoken/email";

const t = emailTokens("dark");