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) => {