Skip to content

Commit

Permalink
fix: set printable colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Aug 14, 2024
1 parent 046b445 commit b035eed
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ const ColorInput = () => {
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<ColorButton value={currentValue} color="black" />
<ColorButton value={currentValue} color="#e1000f" />
<ColorButton value={currentValue} color="#000091" />
<ColorButton value={currentValue} color="#d64d00" />
</Stack>
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<Stack flexDir="row" w="100%">
<ColorButton value={currentValue} color="#000091" />
<ColorButton value={currentValue} color="#118d49" />
<ColorButton value={currentValue} color="#d64d00" />
<div/>
<div />
</Stack>
</Stack>
</Popover.Content>
Expand Down

0 comments on commit b035eed

Please sign in to comment.