yellow property

({FPlatformThemeData dark, FPlatformThemeData light}) yellow
final

The Yellow theme.

Implementation

static final yellow = (
  light: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Yellow Light Desktop', colors: FColors.yellowLight),
    touch: () => FThemeData(touch: true, debugLabel: 'Yellow Light Touch', colors: FColors.yellowLight),
  ),
  dark: FPlatformThemeData(
    desktop: () => FThemeData(touch: false, debugLabel: 'Yellow Dark Desktop', colors: FColors.yellowDark),
    touch: () => FThemeData(touch: true, debugLabel: 'Yellow Dark Touch', colors: FColors.yellowDark),
  ),
);