adjustable-bar-graph: don't try to adapt to theme

This commit is contained in:
mehbark 2023-11-15 19:47:47 -05:00
parent e736ca40c1
commit 856d6c5e6d

View file

@ -28,7 +28,7 @@ const Bars = ({ starts, color }: { starts: number[]; color: string }) => (
}} }}
> >
{...starts.map(start => ( {...starts.map(start => (
<Bar start={start} color="rgb(var(--color-background))" /> <Bar start={start} color="rgb(var(--color-notWhite))" />
))} ))}
</div> </div>
); );
@ -39,7 +39,7 @@ render_and_copy(
display: "flex", display: "flex",
width: "100%", width: "100%",
aspectRatio: "16/9", aspectRatio: "16/9",
backgroundColor: "rgb(var(--color-background))", backgroundColor: "rgb(var(--color-notWhite))",
borderRadius: "1rem", borderRadius: "1rem",
border: "0.25rem solid rgb(var(--color-cherry))", border: "0.25rem solid rgb(var(--color-cherry))",
overflow: "hidden", overflow: "hidden",