rose property
The light and dark variants of the Rose theme.
Implementation
static final rose = (
light: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.light,
background: Color(0xFFFFFFFF),
foreground: Color(0xFF09090B),
primary: Color(0xFFE11D48),
primaryForeground: Color(0xFFFFF1F2),
secondary: Color(0xFFF4F4F5),
secondaryForeground: Color(0xFF18181B),
muted: Color(0xFFF4F4F5),
mutedForeground: Color(0xFF71717A),
destructive: Color(0xFFEF4444),
destructiveForeground: Color(0xFFFAFAFA),
error: Color(0xFFEF4444),
errorForeground: Color(0xFFFAFAFA),
border: Color(0xFFE4E4E7),
),
),
dark: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.dark,
background: Color(0xFF0C0A09),
foreground: Color(0xFFF2F2F2),
primary: Color(0xFFE11D48),
primaryForeground: Color(0xFFFFF1F2),
secondary: Color(0xFF27272A),
secondaryForeground: Color(0xFFFAFAFA),
muted: Color(0xFF262626),
mutedForeground: Color(0xFFA1A1AA),
destructive: Color(0xFF7F1D1D),
destructiveForeground: Color(0xFFFEF2F2),
error: Color(0xFF7F1D1D),
errorForeground: Color(0xFFFEF2F2),
border: Color(0xFF27272A),
),
),
);