import { MenstrualDayStatus } from '@/utils/menstrualCycle'; export const STATUS_COLORS: Record = { period: { bg: '#f5679f', text: '#fff' }, 'predicted-period': { bg: '#f8d9e9', text: '#9b2c6a' }, fertile: { bg: '#d9d2ff', text: '#5a52c5' }, 'ovulation-day': { bg: '#5b4ee4', text: '#fff' }, }; export const WEEK_LABELS = ['一', '二', '三', '四', '五', '六', '日']; export const ITEM_HEIGHT = 380;