From 856d6c5e6d1f032e9bb61edcb64087c552c401ae Mon Sep 17 00:00:00 2001 From: mehbark Date: Wed, 15 Nov 2023 19:47:47 -0500 Subject: [PATCH] adjustable-bar-graph: don't try to adapt to theme --- html/adjustable-bar-graph.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/adjustable-bar-graph.tsx b/html/adjustable-bar-graph.tsx index 7d34ec8..9c0354d 100644 --- a/html/adjustable-bar-graph.tsx +++ b/html/adjustable-bar-graph.tsx @@ -28,7 +28,7 @@ const Bars = ({ starts, color }: { starts: number[]; color: string }) => ( }} > {...starts.map(start => ( - + ))} ); @@ -39,7 +39,7 @@ render_and_copy( display: "flex", width: "100%", aspectRatio: "16/9", - backgroundColor: "rgb(var(--color-background))", + backgroundColor: "rgb(var(--color-notWhite))", borderRadius: "1rem", border: "0.25rem solid rgb(var(--color-cherry))", overflow: "hidden",