From 7306b0ed78db70079ebffeb5a1e2a24a7cc36cb8 Mon Sep 17 00:00:00 2001 From: Chris Beer <chris@cbeer.info> Date: Tue, 19 Dec 2023 16:41:17 -0800 Subject: [PATCH] Use the palette shade for the workspace background --- src/components/WorkspaceArea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WorkspaceArea.js b/src/components/WorkspaceArea.js index f5c93a146..16200f8d8 100644 --- a/src/components/WorkspaceArea.js +++ b/src/components/WorkspaceArea.js @@ -12,7 +12,7 @@ const Root = styled('div', { name: 'WorkspaceArea', slot: 'root' })(({ theme }) const getBackgroundColor = theme.palette.mode === 'light' ? darken : lighten; return { - background: getBackgroundColor(theme.palette.grey.A200, 0.1), + background: getBackgroundColor(theme.palette.shades.light, 0.1), bottom: 0, display: 'flex', flexDirection: 'column', -- GitLab