From 2ab91e17b53653c2d069f878373539b76d371955 Mon Sep 17 00:00:00 2001 From: Bobby Iliev Date: Sun, 1 Dec 2024 20:51:46 +0200 Subject: [PATCH] Fix light theme table header background color --- src/providers/scripts/results.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/providers/scripts/results.ts b/src/providers/scripts/results.ts index 5b1ffed..7ea6c6c 100644 --- a/src/providers/scripts/results.ts +++ b/src/providers/scripts/results.ts @@ -257,7 +257,8 @@ import { // Create the header row const headerRow = document.createElement("vscode-data-grid-row"); headerRow.setAttribute("row-type", "header"); - headerRow.style.backgroundColor = "#232323"; + headerRow.style.backgroundColor = "var(--vscode-editor-selectionBackground)"; + headerRow.style.fontWeight = "600"; // Create and append the header cells fields.forEach(({name: field}: { name: string }, fi: number) => {