ByteColorScheme.standard constructor

const ByteColorScheme.standard()

Standard color scheme optimized for light mode.

Uses black text on white background with colored highlights:

  • Null bytes: Gray
  • Printable ASCII: Black
  • Control chars: Red (#D32F2F)
  • Extended ASCII: Blue (#1976D2)
  • Selection: Blue background (#2196F3) with white text

Implementation

const ByteColorScheme.standard()
  : nullByte = Colors.grey,
    printableAscii = Colors.black,
    controlChar = const Color(0xFFD32F2F),
    extendedAscii = const Color(0xFF1976D2),
    selectedBackground = const Color(0xFF2196F3),
    selectedForeground = Colors.white;