neutral property

({FPlatformThemeData dark, FPlatformThemeData light}) neutral
final

The Neutral theme.

Implementation

static final neutral = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Neutral Light Desktop', colors: FColors.neutralLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Neutral Light Touch', colors: FColors.neutralLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Neutral Dark Desktop', colors: FColors.neutralDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Neutral Dark Touch', colors: FColors.neutralDark),
  ),
);