rose property
The Rose theme.
Implementation
static final rose = (
light: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Rose Light Desktop', colors: FColors.roseLight),
touch: () => FThemeData(touch: true, debugLabel: 'Rose Light Touch', colors: FColors.roseLight),
),
dark: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Rose Dark Desktop', colors: FColors.roseDark),
touch: () => FThemeData(touch: true, debugLabel: 'Rose Dark Touch', colors: FColors.roseDark),
),
);