UNPKG

contrastrast

Version:

A lightweight tool that parses color strings and recommends text contrast based on WCAG Standards

9 lines 239 B
/** * WCAG contrast compliance levels */ export type WCAGContrastLevel = "AA" | "AAA"; /** * WCAG text size categories for contrast requirements */ export type WCAGTextSize = "normal" | "large"; //# sourceMappingURL=WCAG.types.d.ts.map