@cranberry-money/shared-constants
Version:
Shared constants for Blueberry platform
34 lines • 1.46 kB
TypeScript
/**
* Tailwind CSS class mappings for Blueberry (web only)
* These are NOT used in React Native (Blackberry)
*
* For cross-platform color values, use DESIGN_TOKENS from design-tokens.ts
*/
export { UNIFIED_STATUS_COLORS, getStatusColor } from './status-colors-unified';
export declare const STATUS_TEXT_CLASSES: {
readonly SUCCESS: "text-green-600";
readonly WARNING: "text-amber-600";
readonly ERROR: "text-red-600";
readonly INFO: "text-blue-600";
readonly NEUTRAL: "text-gray-600";
};
export declare const STATUS_BG_CLASSES: {
readonly SUCCESS: "bg-green-50";
readonly WARNING: "bg-amber-50";
readonly ERROR: "bg-red-50";
readonly INFO: "bg-blue-50";
readonly NEUTRAL: "bg-gray-50";
};
export declare const BADGE_CLASSES: {
readonly PRIMARY: "bg-indigo-100 text-indigo-700";
readonly SECONDARY: "bg-gray-100 text-gray-700";
readonly SUCCESS: "bg-green-100 text-green-700";
readonly DANGER: "bg-red-100 text-red-700";
readonly WARNING: "bg-amber-100 text-amber-700";
readonly INFO: "bg-blue-100 text-blue-700";
};
export declare const TRADING_STATUS_CLASSES: Record<string, string>;
export type StatusTextClass = (typeof STATUS_TEXT_CLASSES)[keyof typeof STATUS_TEXT_CLASSES];
export type StatusBgClass = (typeof STATUS_BG_CLASSES)[keyof typeof STATUS_BG_CLASSES];
export type BadgeClass = (typeof BADGE_CLASSES)[keyof typeof BADGE_CLASSES];
//# sourceMappingURL=tailwind-classes.d.ts.map