From e71689315134edc3a7bc7828378f279c3ff44a01 Mon Sep 17 00:00:00 2001 From: Sean Parsons Date: Thu, 21 Nov 2024 17:49:28 +0000 Subject: [PATCH] fix(theme) Fix the resize corner handles in the dark theme. --- 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)'),