systemTheme top-level constant

ApperoTheme const systemTheme

System theme that auto-detects light/dark mode.

When this theme is used (or when no theme is set), the SDK will automatically choose between light and dark variants based on the system settings.

Implementation

const ApperoTheme systemTheme = ApperoTheme(
  colors: ApperoColors(
    surface: Color(0xFFFFFFFF), // Placeholder, will be ignored
    onSurface: Color(0xFF000000),
    onSurfaceVariant: Color(0xFF000000),
    primary: Color(0xFF000000),
    onPrimary: Color(0xFFFFFFFF),
  ),
  typography: ApperoTypography(),
);