| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import 'package:xterm/theme/terminal_color.dart';
- import 'package:xterm/theme/terminal_theme.dart';
- class TerminalThemes {
- static const defaultTheme = TerminalTheme(
- cursor: TerminalColor(0xffaeafad),
- selection: TerminalColor(0xffffff40),
- foreground: TerminalColor(0xffcccccc),
- background: TerminalColor(0xff1e1e1e),
- black: TerminalColor(0xff000000),
- red: TerminalColor(0xffcd3131),
- green: TerminalColor(0xff0dbc79),
- yellow: TerminalColor(0xffe5e510),
- blue: TerminalColor(0xff2472c8),
- magenta: TerminalColor(0xffbc3fbc),
- cyan: TerminalColor(0xff11a8cd),
- white: TerminalColor(0xffe5e5e5),
- brightBlack: TerminalColor(0xff666666),
- brightRed: TerminalColor(0xfff14c4c),
- brightGreen: TerminalColor(0xff23d18b),
- brightYellow: TerminalColor(0xfff5f543),
- brightBlue: TerminalColor(0xff3b8eea),
- brightMagenta: TerminalColor(0xffd670d6),
- brightCyan: TerminalColor(0xff29b8db),
- brightWhite: TerminalColor(0xffffffff),
- );
- static const whiteOnBlack = TerminalTheme(
- cursor: TerminalColor(0xffaeafad),
- selection: TerminalColor(0xffffff40),
- foreground: TerminalColor(0xffffffff),
- background: TerminalColor(0xff000000),
- black: TerminalColor(0xff000000),
- red: TerminalColor(0xffcd3131),
- green: TerminalColor(0xff0dbc79),
- yellow: TerminalColor(0xffe5e510),
- blue: TerminalColor(0xff2472c8),
- magenta: TerminalColor(0xffbc3fbc),
- cyan: TerminalColor(0xff11a8cd),
- white: TerminalColor(0xffe5e5e5),
- brightBlack: TerminalColor(0xff666666),
- brightRed: TerminalColor(0xfff14c4c),
- brightGreen: TerminalColor(0xff23d18b),
- brightYellow: TerminalColor(0xfff5f543),
- brightBlue: TerminalColor(0xff3b8eea),
- brightMagenta: TerminalColor(0xffd670d6),
- brightCyan: TerminalColor(0xff29b8db),
- brightWhite: TerminalColor(0xffffffff),
- );
- }
|