adjustable-bar-graph: don't try to adapt to theme
This commit is contained in:
parent
e736ca40c1
commit
856d6c5e6d
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ const Bars = ({ starts, color }: { starts: number[]; color: string }) => (
|
|||
}}
|
||||
>
|
||||
{...starts.map(start => (
|
||||
<Bar start={start} color="rgb(var(--color-background))" />
|
||||
<Bar start={start} color="rgb(var(--color-notWhite))" />
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue