red property

({FPlatformThemeData dark, FPlatformThemeData light}) red
final

The Red theme.

Implementation

static final red = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Red Light Desktop', colors: FColors.redLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Red Light Touch', colors: FColors.redLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Red Dark Desktop', colors: FColors.redDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Red Dark Touch', colors: FColors.redDark),
  ),
);