m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://kendell.dev/m3-svelte/) for demos and usage instructions.
14 lines (13 loc) • 866 B
TypeScript
import { MaterialDynamicColors, DynamicColor } from "@ktibow/material-color-utilities-nightly";
import type { DynamicScheme } from "@ktibow/material-color-utilities-nightly";
export declare const materialColors: MaterialDynamicColors;
export declare const primaryContainerSubtle: DynamicColor;
export declare const onPrimaryContainerSubtle: DynamicColor;
export declare const secondaryContainerSubtle: DynamicColor;
export declare const onSecondaryContainerSubtle: DynamicColor;
export declare const tertiaryContainerSubtle: DynamicColor;
export declare const onTertiaryContainerSubtle: DynamicColor;
export declare const errorContainerSubtle: DynamicColor;
export declare const onErrorContainerSubtle: DynamicColor;
export declare const colors: DynamicColor[];
export declare const genCSS: (light: DynamicScheme, dark: DynamicScheme, cs: DynamicColor[]) => string;