Skip to content

Commit

Permalink
fix(theme) Fix the resize corner handles in the dark theme. (#6673)
Browse files Browse the repository at this point in the history
- Changed the `canvasControlsSizeBoxShadowColor20` and
`canvasControlsSizeBoxShadowColor50` theme properties.
  • Loading branch information
seanparsons authored Nov 22, 2024
1 parent 7db4069 commit 1b27ff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/src/uuiui/styles/theme/dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ const colorsWithOpacity = {
whiteOpacity35: createUtopiColor('oklch(100% 0 0 /35%)'),
grey65: createUtopiColor('oklch(65% 0 0)'),
blackOpacity35: createUtopiColor('oklch(0% 0 0 / 35%)'),
canvasControlsSizeBoxShadowColor20: createUtopiColor('rgba(255,255,255,0.20)'),
canvasControlsSizeBoxShadowColor50: createUtopiColor('rgba(255,255,255,0.5)'),
canvasControlsSizeBoxShadowColor20: createUtopiColor('rgba(0,0,0,0.20)'),
canvasControlsSizeBoxShadowColor50: createUtopiColor('rgba(0,0,0,0.5)'),
neutralInvertedBackground10: createUtopiColor('rgba(217, 220, 227, 0.1)'),
neutralInvertedBackground20: createUtopiColor('rgba(217, 220, 227, 0.2)'),
neutralInvertedBackground30: createUtopiColor('rgba(217, 220, 227, 0.3)'),
Expand Down

0 comments on commit 1b27ff8

Please sign in to comment.