TerminalTheme constructor

const TerminalTheme({
  1. required Color cursor,
  2. required Color selection,
  3. required Color foreground,
  4. required Color background,
  5. required Color black,
  6. required Color white,
  7. required Color red,
  8. required Color green,
  9. required Color yellow,
  10. required Color blue,
  11. required Color magenta,
  12. required Color cyan,
  13. required Color brightBlack,
  14. required Color brightRed,
  15. required Color brightGreen,
  16. required Color brightYellow,
  17. required Color brightBlue,
  18. required Color brightMagenta,
  19. required Color brightCyan,
  20. required Color brightWhite,
  21. required Color searchHitBackground,
  22. required Color searchHitBackgroundCurrent,
  23. required Color searchHitForeground,
})

Implementation

const TerminalTheme({
  required this.cursor,
  required this.selection,
  required this.foreground,
  required this.background,
  required this.black,
  required this.white,
  required this.red,
  required this.green,
  required this.yellow,
  required this.blue,
  required this.magenta,
  required this.cyan,
  required this.brightBlack,
  required this.brightRed,
  required this.brightGreen,
  required this.brightYellow,
  required this.brightBlue,
  required this.brightMagenta,
  required this.brightCyan,
  required this.brightWhite,
  required this.searchHitBackground,
  required this.searchHitBackgroundCurrent,
  required this.searchHitForeground,
});