slate property
The light and dark variants of the Slate theme.
Implementation
static final slate = (
light: FThemeData(
debugLabel: 'Slate Light ThemeData',
colors: const FColors(
brightness: .light,
systemOverlayStyle: .dark,
barrier: Color(0x33000000),
background: Color(0xFFFFFFFF),
foreground: Color(0xFF020618),
primary: Color(0xFF0F172B),
primaryForeground: Color(0xFFF8FAFC),
secondary: Color(0xFFF1F5F9),
secondaryForeground: Color(0xFF0F172B),
muted: Color(0xFFF1F5F9),
mutedForeground: Color(0xFF62748E),
destructive: Color(0xFFE7000B),
destructiveForeground: Color(0xFFFAFAFA),
error: Color(0xFFE7000B),
errorForeground: Color(0xFFFAFAFA),
card: Color(0xFFFFFFFF),
border: Color(0xFFE2E8F0),
),
),
dark: FThemeData(
debugLabel: 'Slate Dark ThemeData',
colors: const FColors(
brightness: .dark,
systemOverlayStyle: .light,
barrier: Color(0x7A000000),
background: Color(0xFF020618),
foreground: Color(0xFFF8FAFC),
primary: Color(0xFFE2E8F0),
primaryForeground: Color(0xFF0F172B),
secondary: Color(0xFF1D293D),
secondaryForeground: Color(0xFFF8FAFC),
muted: Color(0xFF1D293D),
mutedForeground: Color(0xFF90A1B9),
destructive: Color(0xFFFF6467),
destructiveForeground: Color(0xFFFAFAFA),
error: Color(0xFFFF6467),
errorForeground: Color(0xFFFAFAFA),
card: Color(0xFF0F172B),
border: Color(0x1AFFFFFF),
),
),
);