From 56a96a7db6089488bd66354838062192e1294f75 Mon Sep 17 00:00:00 2001 From: David Corbitt Date: Wed, 16 Aug 2023 22:46:22 -0700 Subject: [PATCH] Use different color for row highlight style --- app/src/components/OutputsTable/ScenarioRow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/OutputsTable/ScenarioRow.tsx b/app/src/components/OutputsTable/ScenarioRow.tsx index 474738e..b017d87 100644 --- a/app/src/components/OutputsTable/ScenarioRow.tsx +++ b/app/src/components/OutputsTable/ScenarioRow.tsx @@ -15,7 +15,7 @@ const ScenarioRow = (props: { }) => { const [isHovered, setIsHovered] = useState(false); - const highlightStyle = { backgroundColor: "gray.50" }; + const highlightStyle = { backgroundColor: "blackAlpha.50" }; return ( <>