blue property
The Blue theme.
Implementation
static final blue = (
light: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Blue Light Desktop', colors: FColors.blueLight),
touch: () => FThemeData(touch: true, debugLabel: 'Blue Light Touch', colors: FColors.blueLight),
),
dark: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Blue Dark Desktop', colors: FColors.blueDark),
touch: () => FThemeData(touch: true, debugLabel: 'Blue Dark Touch', colors: FColors.blueDark),
),
);