Skip to content

Commit

Permalink
fix: color picker colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Jul 24, 2024
1 parent 1235619 commit 911fc50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/frontend/src/features/text-editor/TextEditorToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ const ColorInput = () => {
<Stack p="8px">
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<ColorButton value={currentValue} color="black" />
<ColorButton value={currentValue} color="blue" />
<ColorButton value={currentValue} color="red" />
<ColorButton value={currentValue} color="#000091" />
<ColorButton value={currentValue} color="#E1000F" />
</Stack>
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<ColorButton value={currentValue} color="purple" />
<ColorButton value={currentValue} color="green" />
<ColorButton value={currentValue} color="orange" />
<ColorButton value={currentValue} color="#6E445A" />
<ColorButton value={currentValue} color="#2B7758" />
<ColorButton value={currentValue} color="#465F9D" />
</Stack>
</Stack>
</Popover.Content>
Expand Down

0 comments on commit 911fc50

Please sign in to comment.