TerminalColorTheme constructor

const TerminalColorTheme({
  1. required Map<int, Color> palette,
  2. required Color background,
  3. required Color foreground,
  4. required Color cursorColor,
  5. required Color selectionBackground,
  6. required Color selectionForeground,
})

Implementation

const TerminalColorTheme({
  required this.palette,
  required this.background,
  required this.foreground,
  required this.cursorColor,
  required this.selectionBackground,
  required this.selectionForeground,
});