violet property

({FPlatformThemeData dark, FPlatformThemeData light}) violet
final

The Violet theme.

Implementation

static final violet = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Violet Light Desktop', colors: FColors.violetLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Violet Light Touch', colors: FColors.violetLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Violet Dark Desktop', colors: FColors.violetDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Violet Dark Touch', colors: FColors.violetDark),
  ),
);