From 71fdd544b278e4701f1af61702a0bd78bf9b1b72 Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Sun, 29 Mar 2026 18:48:51 -0700 Subject: [PATCH] fix: match preview text color to xterm.js foreground (#c9d1d9) --- muxplex/frontend/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/muxplex/frontend/style.css b/muxplex/frontend/style.css index 1b31f6b..c13659b 100644 --- a/muxplex/frontend/style.css +++ b/muxplex/frontend/style.css @@ -985,7 +985,7 @@ body { font-family: var(--font-mono); font-size: 12px; line-height: 1.5; - color: var(--text); + color: #c9d1d9; /* match xterm.js foreground exactly */ white-space: pre-wrap; /* WRAP text instead of horizontal overflow */ word-break: break-all; /* break long lines at viewport edge */ overflow-x: hidden;