From f8468b3c4c4bed1bb8c4045ea70a9c7b6376c78d Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Sat, 11 May 2024 13:37:18 -0500 Subject: [PATCH] Patch colorscheme Patched in the colorscheme --- html/src/components/app.tsx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/html/src/components/app.tsx b/html/src/components/app.tsx index 9057727..0e16ccf 100644 --- a/html/src/components/app.tsx +++ b/html/src/components/app.tsx @@ -23,25 +23,25 @@ const termOptions = { fontSize: 13, fontFamily: 'Consolas,Liberation Mono,Menlo,Courier,monospace', theme: { - foreground: '#d2d2d2', - background: '#2b2b2b', - cursor: '#adadad', + foreground: '#ffffff', + background: '#000000', + cursor: '#ffffff', black: '#000000', - red: '#d81e00', - green: '#5ea702', - yellow: '#cfae00', - blue: '#427ab3', - magenta: '#89658e', - cyan: '#00a7aa', - white: '#dbded8', - brightBlack: '#686a66', - brightRed: '#f54235', - brightGreen: '#99e343', - brightYellow: '#fdeb61', - brightBlue: '#84b0d8', - brightMagenta: '#bc94b7', - brightCyan: '#37e6e8', - brightWhite: '#f1f1f0', + red: '#ff8059', + green: '#44bc44', + yellow: '#d0bc00', + blue: '#2fafff', + magenta: '#feacd0', + cyan: '#00d3d0', + white: '#bfbfbf', + brightBlack: '#595959', + brightRed: '#ef8b50', + brightGreen: '#70b900', + brightYellow: '#c0c530', + brightBlue: '#79a8ff', + brightMagenta: '#b6a0ff', + brightCyan: '#6ae4b9', + brightWhite: '#ffffff', } as ITheme, allowProposedApi: true, } as ITerminalOptions; -- 2.43.4