UNPKG

themer

Version:

Customizable theme creator for editors, terminals, wallpaper, and more.

8 lines (7 loc) 643 B
import type { ColorSet } from './index.js'; declare const BUILT_IN_COLOR_SET_IDENTIFIERS: readonly ["default", "dracula", "finger-paint", "github-universe", "green-as-a-whistle", "lucid", "mojave", "monkey", "night-sky", "nova", "one", "polar-ice", "right-in-the-teals", "rivet", "seti", "shoulder-pads", "solarized"]; export type BuiltInColorSet = (typeof BUILT_IN_COLOR_SET_IDENTIFIERS)[number]; export declare const allBuiltInColorSetIdentifiers: BuiltInColorSet[]; export declare function resolveColorSet(colorSet: BuiltInColorSet | ColorSet): ColorSet; export declare const allBuiltInColorSets: Map<BuiltInColorSet, ColorSet>; export {};