orange property
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),
),
);