color_default.dart 811 B

123456789101112131415161718192021222324
  1. import 'package:xterm/buffer/cell_color.dart';
  2. import 'package:xterm/color/color_scheme.dart';
  3. final defaultColorScheme = TerminalColourScheme(
  4. cursor: CellColor(0xffaeafad),
  5. selection: CellColor(0xffffff40),
  6. foreground: CellColor(0xffcccccc),
  7. background: CellColor(0xff1e1e1e),
  8. black: CellColor(0xff000000),
  9. white: CellColor(0xffe5e5e5),
  10. red: CellColor(0xffcd3131),
  11. green: CellColor(0xff0dbc79),
  12. yellow: CellColor(0xffe5e510),
  13. blue: CellColor(0xff2472c8),
  14. magenta: CellColor(0xffbc3fbc),
  15. cyan: CellColor(0xff11a8cd),
  16. brightBlack: CellColor(0xff666666),
  17. brightRed: CellColor(0xfff14c4c),
  18. brightGreen: CellColor(0xff23d18b),
  19. brightYellow: CellColor(0xfff5f543),
  20. brightBlue: CellColor(0xff3b8eea),
  21. brightMagenta: CellColor(0xffd670d6),
  22. brightCyan: CellColor(0xff29b8db),
  23. );