ByteColorScheme.dark constructor
const
ByteColorScheme.dark()
Dark theme color scheme optimized for dark mode.
Uses light text on dark background with colored highlights:
- Null bytes: Medium gray (#757575)
- Printable ASCII: Light gray (#E0E0E0)
- Control chars: Light red (#EF5350)
- Extended ASCII: Light blue (#64B5F6)
- Selection: Dark blue background (#1976D2) with white text
Implementation
const ByteColorScheme.dark()
: nullByte = const Color(0xFF757575),
printableAscii = const Color(0xFFE0E0E0),
controlChar = const Color(0xFFEF5350),
extendedAscii = const Color(0xFF64B5F6),
selectedBackground = const Color(0xFF1976D2),
selectedForeground = Colors.white;