customTheme2 top-level constant

ApperoTheme const customTheme2

CustomTheme2: Rose theme with purple accents, Merriweather font, and star rating icons.

Features a soft rose background (#EFCBC6) with deep purple text (#23234D) and purple highlights (#7254A9). The primary action color is indigo blue (#3F51B5). Uses the Merriweather font family for a classic, elegant appearance, and displays star rating icons instead of emoji faces.

Implementation

const ApperoTheme customTheme2 = ApperoTheme(
  colors: ApperoColors(
    surface: Color(0xFFEFCBC6),
    onSurface: Color(0xFF23234D),
    onSurfaceVariant: Color(0xFF7254A9),
    primary: Color(0xFF3F51B5),
    onPrimary: Color(0xFF000000),
  ),
  typography: ApperoTypography(
    fontFamily: 'merriweather',
  ),
  ratingImages: alternativeRatingImages,
);