From ebe3375897eae9787c10470c2c822fbe47827353 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Sat, 17 Oct 2020 14:25:44 -0600 Subject: [PATCH] Fix white highlight hiding console text (fixes #2541) --- resources/scripts/components/server/Console.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/scripts/components/server/Console.tsx b/resources/scripts/components/server/Console.tsx index e3720ab69..1cc919e17 100644 --- a/resources/scripts/components/server/Console.tsx +++ b/resources/scripts/components/server/Console.tsx @@ -11,9 +11,11 @@ import tw from 'twin.macro'; import 'xterm/css/xterm.css'; import useEventListener from '@/plugins/useEventListener'; import { debounce } from 'debounce'; +// @ts-ignore +import tailwindConfig from '../../../../tailwind.config.js'; const theme = { - background: 'transparent', + background: tailwindConfig.theme.colors.black, cursor: 'transparent', black: '#000000', red: '#E54B4B',