customTheme1 top-level constant

ApperoTheme const customTheme1

CustomTheme1: Purple theme with lime yellow accents.

Features a deep purple background (#3A1078) with bright lime yellow text (#F8F988) and cyan highlights (#92C7CF). The primary action color is hot pink (#E60965).

Implementation

const ApperoTheme customTheme1 = ApperoTheme(
  colors: ApperoColors(
    surface: Color(0xFF3A1078),
    onSurface: Color(0xFFF8F988),
    onSurfaceVariant: Color(0xFF92C7CF),
    primary: Color(0xFFE60965),
    onPrimary: Color(0xFFFFFFFF),
  ),
  typography: ApperoTypography(),
);