From 11c92ed436cfcaa8c3d13c6115bfb1c98a5505f8 Mon Sep 17 00:00:00 2001 From: master <> Date: Sat, 28 Mar 2026 20:43:04 +0200 Subject: [PATCH] Fix schema-playground dark blocks: use surface-secondary instead of terminal-bg The line numbers sidebar and snippets bar used --color-terminal-bg (dark/black) which created jarring dark patches on the light page. Replaced with --color-surface-secondary for a subtle warm tint that blends with the editor area. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../policy-governance/schema-playground.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Web/StellaOps.Web/src/app/features/policy-governance/schema-playground.component.ts b/src/Web/StellaOps.Web/src/app/features/policy-governance/schema-playground.component.ts index 55fa16b17..911e8d3f5 100644 --- a/src/Web/StellaOps.Web/src/app/features/policy-governance/schema-playground.component.ts +++ b/src/Web/StellaOps.Web/src/app/features/policy-governance/schema-playground.component.ts @@ -374,7 +374,8 @@ import { .line-numbers { padding: 1rem 0.5rem; - background: var(--color-terminal-bg); + background: var(--color-surface-secondary); + border-right: 1px solid var(--color-border-primary); text-align: right; user-select: none; overflow: hidden; @@ -417,7 +418,7 @@ import { gap: 0.35rem; align-items: center; padding: 0.5rem 1rem; - background: var(--color-terminal-bg); + background: var(--color-surface-secondary); border-top: 1px solid var(--color-border-primary); overflow-x: auto; }