UNPKG

themer

Version:

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

8 lines (7 loc) 968 B
import type { Template } from './index.js'; declare const BUILT_IN_TEMPLATE_IDENTIFIERS: readonly ["alacritty", "alfred", "bbedit", "brave", "chrome", "cmd", "conemu", "css", "emacs", "firefox-addon", "hyper", "iterm", "kde-plasma-colors", "keypirinha", "kitty", "konsole", "prism", "sketch-palettes", "slack", "sublime-text", "terminal", "terminator", "tmux", "vim", "vim-lightline", "visual-studio", "vs-code", "wallpaper-block-wave", "wallpaper-burst", "wallpaper-circuits", "wallpaper-diamonds", "wallpaper-dot-grid", "wallpaper-octagon", "wallpaper-shirts", "wallpaper-triangles", "warp", "windows-terminal", "wox", "xcode", "xresources"]; export type BuiltInTemplate = (typeof BUILT_IN_TEMPLATE_IDENTIFIERS)[number]; export declare const allBuiltInTemplateIdentifiers: BuiltInTemplate[]; export declare function resolveTemplate(template: BuiltInTemplate | Template): Template; export declare const allBuiltInTemplates: Map<BuiltInTemplate, Template>; export {};