fix: match tile + sidebar preview text color to xterm.js foreground (#c9d1d9)

This commit is contained in:
Brian Krabach
2026-03-29 18:56:09 -07:00
parent 71fdd544b2
commit 85298abdcc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -231,7 +231,7 @@ body {
padding: 6px 8px; padding: 6px 8px;
font-family: var(--font-mono); font-family: var(--font-mono);
font-size: 11px; font-size: 11px;
color: var(--text-dim); color: #c9d1d9; /* match xterm.js foreground */
white-space: pre; white-space: pre;
overflow: hidden; overflow: hidden;
margin: 0; margin: 0;
@@ -544,7 +544,7 @@ body {
font-family: var(--font-mono); font-family: var(--font-mono);
font-size: 10px; font-size: 10px;
line-height: 1.4; line-height: 1.4;
color: var(--text-muted); color: #c9d1d9; /* match xterm.js foreground */
white-space: pre; white-space: pre;
padding: 0 8px 6px; padding: 0 8px 6px;
margin: 0; margin: 0;
+1 -1
View File
@@ -413,7 +413,7 @@ def test_css_sidebar_item_body_pre():
assert "right: 0" in block assert "right: 0" in block
assert "font-size: 10px" in block assert "font-size: 10px" in block
assert "line-height: 1.4" in block assert "line-height: 1.4" in block
assert "color: var(--text-muted)" in block assert "#c9d1d9" in block, "sidebar-item-body pre must match xterm.js foreground"
assert "white-space: pre" in block assert "white-space: pre" in block
assert "padding: 0 8px 6px" in block assert "padding: 0 8px 6px" in block
# Monospace font family via design token # Monospace font family via design token