yellow property
The light and dark variants of the Yellow theme.
Implementation
static final yellow = (
light: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.light,
background: Color(0xFFFFFFFF),
foreground: Color(0xFF0C0A09),
primary: Color(0xFFFACC15),
primaryForeground: Color(0xFF422006),
secondary: Color(0xFFF5F5F4),
secondaryForeground: Color(0xFF1C1917),
muted: Color(0xFFF5F5F4),
mutedForeground: Color(0xFF78716C),
destructive: Color(0xFFEF4444),
destructiveForeground: Color(0xFFFAFAF9),
error: Color(0xFFEF4444),
errorForeground: Color(0xFFFAFAF9),
border: Color(0xFFE7E5E4),
),
),
dark: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.dark,
background: Color(0xFF0C0A09),
foreground: Color(0xFFFAFAF9),
primary: Color(0xFFFACC15),
primaryForeground: Color(0xFF422006),
secondary: Color(0xFF292524),
secondaryForeground: Color(0xFFFAFAF9),
muted: Color(0xFF292524),
mutedForeground: Color(0xFFA8A29E),
destructive: Color(0xFF7F1D1D),
destructiveForeground: Color(0xFFFAFAF9),
error: Color(0xFF7F1D1D),
errorForeground: Color(0xFFFAFAF9),
border: Color(0xFF292524),
),
),
);