slate property

({FPlatformThemeData dark, FPlatformThemeData light}) slate
final

The Slate theme.

Implementation

static final slate = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Slate Light Desktop', colors: FColors.slateLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Slate Light Touch', colors: FColors.slateLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Slate Dark Desktop', colors: FColors.slateDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Slate Dark Touch', colors: FColors.slateDark),
  ),
);