darkSeed property
Dark mode seed colors.
Default: lightSeed.toDark() which:
- Inverts to black background
- Adjusts semantic colors to darker variants
- Preserves primary color
Implementation
@override
ThemeSeed get darkSeed => ThemeSeed(
primary: theme.color,
background: 0xFF000000,
secondary: 0xFF0A0D0B,
accent: 0xFF101614,
border: 0xFF1F2824,
destructive: 0xFF7f1d1d,
success: 0xFF166534,
warning: 0xFF92400e,
info: 0xFF1e40af,
isDark: true,
accentGlow: false,
);