From 087f6945ae885cb5847a25b9fb9cb0f8985d7bac Mon Sep 17 00:00:00 2001 From: Lukas May Date: Wed, 4 Mar 2026 13:15:14 +0100 Subject: [PATCH] fix: Increase dark mode border contrast for graph lines and separators MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump --border from L=16 to L=22 in dark mode, giving 11pt contrast against card surfaces (was 5pt). Also bump --terminal-border to match. Pipeline graph arrow tips: muted-foreground/40 → /60. TaskGraph: remove opacity reduction on parallel container borders and layer connectors so they use full border color. --- apps/web/src/components/execution/TaskGraph.tsx | 6 +++--- apps/web/src/components/pipeline/PipelineGraph.tsx | 2 +- apps/web/src/index.css | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/web/src/components/execution/TaskGraph.tsx b/apps/web/src/components/execution/TaskGraph.tsx index d7357e0..4495e48 100644 --- a/apps/web/src/components/execution/TaskGraph.tsx +++ b/apps/web/src/components/execution/TaskGraph.tsx @@ -95,8 +95,8 @@ export function TaskGraph({ )} {isParallel ? ( -
- +
+ Parallel · {col.phases.length}
@@ -242,7 +242,7 @@ function TaskLayerConnector({ completed }: { completed: boolean }) {
diff --git a/apps/web/src/components/pipeline/PipelineGraph.tsx b/apps/web/src/components/pipeline/PipelineGraph.tsx index be9d74a..46cf5a5 100644 --- a/apps/web/src/components/pipeline/PipelineGraph.tsx +++ b/apps/web/src/components/pipeline/PipelineGraph.tsx @@ -45,7 +45,7 @@ export function PipelineGraph({ columns, tasksByPhase, taskDepsByPhase, dependen {idx > 0 && (
-
+
)}