|
@@ -8,13 +8,13 @@ class TerminalThemes {
|
|
|
foreground: TerminalColor(0xffcccccc),
|
|
foreground: TerminalColor(0xffcccccc),
|
|
|
background: TerminalColor(0xff1e1e1e),
|
|
background: TerminalColor(0xff1e1e1e),
|
|
|
black: TerminalColor(0xff000000),
|
|
black: TerminalColor(0xff000000),
|
|
|
- white: TerminalColor(0xffe5e5e5),
|
|
|
|
|
red: TerminalColor(0xffcd3131),
|
|
red: TerminalColor(0xffcd3131),
|
|
|
green: TerminalColor(0xff0dbc79),
|
|
green: TerminalColor(0xff0dbc79),
|
|
|
yellow: TerminalColor(0xffe5e510),
|
|
yellow: TerminalColor(0xffe5e510),
|
|
|
blue: TerminalColor(0xff2472c8),
|
|
blue: TerminalColor(0xff2472c8),
|
|
|
magenta: TerminalColor(0xffbc3fbc),
|
|
magenta: TerminalColor(0xffbc3fbc),
|
|
|
cyan: TerminalColor(0xff11a8cd),
|
|
cyan: TerminalColor(0xff11a8cd),
|
|
|
|
|
+ white: TerminalColor(0xffe5e5e5),
|
|
|
brightBlack: TerminalColor(0xff666666),
|
|
brightBlack: TerminalColor(0xff666666),
|
|
|
brightRed: TerminalColor(0xfff14c4c),
|
|
brightRed: TerminalColor(0xfff14c4c),
|
|
|
brightGreen: TerminalColor(0xff23d18b),
|
|
brightGreen: TerminalColor(0xff23d18b),
|
|
@@ -22,6 +22,7 @@ class TerminalThemes {
|
|
|
brightBlue: TerminalColor(0xff3b8eea),
|
|
brightBlue: TerminalColor(0xff3b8eea),
|
|
|
brightMagenta: TerminalColor(0xffd670d6),
|
|
brightMagenta: TerminalColor(0xffd670d6),
|
|
|
brightCyan: TerminalColor(0xff29b8db),
|
|
brightCyan: TerminalColor(0xff29b8db),
|
|
|
|
|
+ brightWhite: TerminalColor(0xffffffff),
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
static const whiteOnBlack = TerminalTheme(
|
|
static const whiteOnBlack = TerminalTheme(
|
|
@@ -30,13 +31,13 @@ class TerminalThemes {
|
|
|
foreground: TerminalColor(0xffffffff),
|
|
foreground: TerminalColor(0xffffffff),
|
|
|
background: TerminalColor(0xff000000),
|
|
background: TerminalColor(0xff000000),
|
|
|
black: TerminalColor(0xff000000),
|
|
black: TerminalColor(0xff000000),
|
|
|
- white: TerminalColor(0xffe5e5e5),
|
|
|
|
|
red: TerminalColor(0xffcd3131),
|
|
red: TerminalColor(0xffcd3131),
|
|
|
green: TerminalColor(0xff0dbc79),
|
|
green: TerminalColor(0xff0dbc79),
|
|
|
yellow: TerminalColor(0xffe5e510),
|
|
yellow: TerminalColor(0xffe5e510),
|
|
|
blue: TerminalColor(0xff2472c8),
|
|
blue: TerminalColor(0xff2472c8),
|
|
|
magenta: TerminalColor(0xffbc3fbc),
|
|
magenta: TerminalColor(0xffbc3fbc),
|
|
|
cyan: TerminalColor(0xff11a8cd),
|
|
cyan: TerminalColor(0xff11a8cd),
|
|
|
|
|
+ white: TerminalColor(0xffe5e5e5),
|
|
|
brightBlack: TerminalColor(0xff666666),
|
|
brightBlack: TerminalColor(0xff666666),
|
|
|
brightRed: TerminalColor(0xfff14c4c),
|
|
brightRed: TerminalColor(0xfff14c4c),
|
|
|
brightGreen: TerminalColor(0xff23d18b),
|
|
brightGreen: TerminalColor(0xff23d18b),
|
|
@@ -44,5 +45,6 @@ class TerminalThemes {
|
|
|
brightBlue: TerminalColor(0xff3b8eea),
|
|
brightBlue: TerminalColor(0xff3b8eea),
|
|
|
brightMagenta: TerminalColor(0xffd670d6),
|
|
brightMagenta: TerminalColor(0xffd670d6),
|
|
|
brightCyan: TerminalColor(0xff29b8db),
|
|
brightCyan: TerminalColor(0xff29b8db),
|
|
|
|
|
+ brightWhite: TerminalColor(0xffffffff),
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|