From 1e2a3405dc009add319a61070f2cd2f3c6038668 Mon Sep 17 00:00:00 2001 From: Sean Parsons <217400+seanparsons@users.noreply.github.com> Date: Fri, 22 Nov 2024 11:01:03 +0000 Subject: [PATCH] fix(theme) Fix the resize corner handles in the dark theme. (#6673) - Changed the `canvasControlsSizeBoxShadowColor20` and `canvasControlsSizeBoxShadowColor50` theme properties. --- editor/src/uuiui/styles/theme/dark.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/src/uuiui/styles/theme/dark.ts b/editor/src/uuiui/styles/theme/dark.ts index bc91e13d8e91..6c015f5afbf9 100644 --- a/editor/src/uuiui/styles/theme/dark.ts +++ b/editor/src/uuiui/styles/theme/dark.ts @@ -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)'),