uinix-theme
Version:
Fully configurable framework-agnostic theme system (spec, theme, renderer, themed styles/keyframes/CSS variables) for building UIs. Your theme your rules 🤘.
8 lines (7 loc) • 387 B
TypeScript
export function createCssVariables(theme?: import("./types.js").Theme | undefined, options?: {
namespace?: string | undefined;
themeSpec?: import("./types.js").ThemeSpec | undefined;
} | undefined): CssVariables;
export type CssVariables = import('./types.js').CssVariables;
export type Theme = import('./types.js').Theme;
export type ThemeSpec = import('./types.js').ThemeSpec;