igniteui-theming
Version:
A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.
20 lines (19 loc) • 738 B
TypeScript
import { default as CUSTOM_PALETTE_GUIDANCE } from './docs/colors/custom-palettes.md?raw';
export { CUSTOM_PALETTE_GUIDANCE };
/**
* Required shade counts for validation.
*/
export declare const REQUIRED_SHADES: {
/** Number of shades required for chromatic colors (primary, secondary, etc.) */
chromatic: number;
/** Number of shades required for gray */
gray: 10;
};
/**
* All chromatic shades combined.
*/
export declare const ALL_CHROMATIC_SHADES: ("50" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | "A100" | "A200" | "A400" | "A700")[];
/**
* All gray shades.
*/
export declare const ALL_GRAY_SHADES: ("50" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900")[];