violet property
The light and dark variants of the Violet theme.
Implementation
static final violet = (
light: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.light,
background: Color(0xFFFFFFFF),
foreground: Color(0xFF030712),
primary: Color(0xFF7C3AED),
primaryForeground: Color(0xFFF9FAFB),
secondary: Color(0xFFF3F4F6),
secondaryForeground: Color(0xFF111827),
muted: Color(0xFFF3F4F6),
mutedForeground: Color(0xFF6B7280),
destructive: Color(0xFFEF4444),
destructiveForeground: Color(0xFFF9FAFB),
error: Color(0xFFEF4444),
errorForeground: Color(0xFFF9FAFB),
border: Color(0xFFE5E7EB),
),
),
dark: FThemeData.inherit(
colorScheme: const FColorScheme(
brightness: Brightness.dark,
background: Color(0xFF030712),
foreground: Color(0xFFF9FAFB),
primary: Color(0xFF6D28D9),
primaryForeground: Color(0xFFF9FAFB),
secondary: Color(0xFF1F2937),
secondaryForeground: Color(0xFFF9FAFB),
muted: Color(0xFF1F2937),
mutedForeground: Color(0xFF9CA3AF),
destructive: Color(0xFF7F1D1D),
destructiveForeground: Color(0xFFF9FAFB),
error: Color(0xFF7F1D1D),
errorForeground: Color(0xFFF9FAFB),
border: Color(0xFF1F2937),
),
),
);