orange property

({FPlatformThemeData dark, FPlatformThemeData light}) orange
final

The Orange theme.

Implementation

static final orange = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Orange Light Desktop', colors: FColors.orangeLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Orange Light Touch', colors: FColors.orangeLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Orange Dark Desktop', colors: FColors.orangeDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Orange Dark Touch', colors: FColors.orangeDark),
  ),
);