Skip to content

Commit

Permalink
fix: new colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Aug 13, 2024
1 parent 0bc4a89 commit 01b4ad3
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions packages/frontend/src/features/text-editor/TextEditorToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,18 +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="#c9191e" />
<ColorButton value={currentValue} color="#666666" />
<ColorButton value={currentValue} color="#e1000f" />
<ColorButton value={currentValue} color="#000091" />
</Stack>
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<ColorButton value={currentValue} color="#cecece" />
<ColorButton value={currentValue} color="#0078f3" />
<ColorButton value={currentValue} color="#1f8d49" />
</Stack>
<Stack gap="8px" flexDir="row" justifyContent="space-around" w="100%">
<ColorButton value={currentValue} color="#68a532" />
<ColorButton value={currentValue} color="#e4794a" />
<ColorButton value={currentValue} color="#272747" />
<ColorButton value={currentValue} color="#118d49" />
<ColorButton value={currentValue} color="#d64d00" />
<div/>
</Stack>
</Stack>
</Popover.Content>
Expand Down

0 comments on commit 01b4ad3

Please sign in to comment.