/** * Consent Color Constants * * Single source of truth for default colors. * Canonical color is blue (#2563EB) matching AgentShield. * * @module @kya-os/consent/constants/colors */ /** * Default colors for consent pages * * CRITICAL: These must match AgentShield constants.ts exactly * - Primary: Tailwind blue-600 (#2563EB) * - Secondary: Tailwind blue-100 (#DBEAFE) */ export declare const DEFAULT_COLORS: { /** Primary brand color - Tailwind blue-600 */ readonly PRIMARY: "#2563EB"; /** Secondary/accent color - Tailwind blue-100 */ readonly SECONDARY: "#DBEAFE"; /** Background color */ readonly BACKGROUND: "#F9FAFB"; /** Text colors */ readonly TEXT_PRIMARY: "#111827"; readonly TEXT_SECONDARY: "#6B7280"; readonly TEXT_MUTED: "#9CA3AF"; /** Border colors */ readonly BORDER: "#E5E7EB"; readonly BORDER_DARK: "#D1D5DB"; /** Success color - Tailwind green-600 */ readonly SUCCESS: "#16A34A"; /** Error color - Tailwind red-600 */ readonly ERROR: "#DC2626"; /** Warning color - Tailwind amber-500 */ readonly WARNING: "#F59E0B"; }; export type DefaultColorsType = typeof DEFAULT_COLORS; //# sourceMappingURL=colors.d.ts.map