/** * Plan brand colors for {@link PlanPicker}. Raw hex rather than semantic tokens on purpose: these * are permanently-branded fills that must not follow the theme, and the component pairs them with * `text-content-white-primary` to hold contrast in both light and dark. * * Keyed and named after the props they feed, so a caller cannot pair a plan's surface with another * plan's pill. * * Fallback for the v4 `upgrade-options` payload: `bgColor` is each plan's light rung, * `activePillColor` its dark one. They must match what the payload sends, or a per-channel fallback * renders a palette the happy path never shows. * * `ultra.bgColor` deviates: its light rung `#888F9B` only reaches 3.3:1 against white labels. */ export declare const PLAN_COLORS: { readonly pro: { readonly bgColor: "#8574CE"; readonly activePillColor: "#211946"; }; readonly business: { readonly bgColor: "#426FB3"; readonly activePillColor: "#081A32"; }; readonly ultra: { readonly bgColor: "#56585B"; readonly activePillColor: "#141414"; }; }; export type PlanColorName = keyof typeof PLAN_COLORS; //# sourceMappingURL=planColors.d.ts.map