/** * Semantic color palettes used for component states and feedback. * These colors convey meaning and purpose in the UI (primary actions, * informational messages, success states, warnings, and errors). */ export declare const SEMANTIC_COLOR_PALETTES: readonly ["primary", "neutral", "info", "positive", "warning", "critical"]; /** * Brand-specific color palettes for commercetools design identity. * These colors represent the commercetools brand and should be used * consistently across brand materials. */ export declare const BRAND_COLOR_PALETTES: readonly ["ctviolet", "ctteal", "ctyellow"]; /** * System color palettes providing a wide range of decorative options. * These 25 colors are interchangeable based on contrast levels and can be * used for data visualization, categorization, and visual variety. * Note: blackAlpha and whiteAlpha do not adapt to color mode. */ export declare const SYSTEM_COLOR_PALETTES: readonly ["sky", "mint", "lime", "yellow", "amber", "orange", "brown", "gold", "bronze", "grass", "green", "jade", "teal", "cyan", "blue", "indigo", "iris", "violet", "purple", "plum", "pink", "crimson", "ruby", "red", "tomato"]; /** * Combined array of all available color palettes in the design system. * Used to derive the ColorPalette union type for type-safe palette references. */ export declare const ALL_COLOR_PALETTES: readonly ["primary", "neutral", "info", "positive", "warning", "critical", "ctviolet", "ctteal", "ctyellow", "sky", "mint", "lime", "yellow", "amber", "orange", "brown", "gold", "bronze", "grass", "green", "jade", "teal", "cyan", "blue", "indigo", "iris", "violet", "purple", "plum", "pink", "crimson", "ruby", "red", "tomato"];