Lighten automatic light theme background colors

This commit is contained in:
schroda
2025-02-11 15:11:53 +01:00
parent 86cf8d1c12
commit cbe6cb64f7

View File

@@ -49,8 +49,8 @@ const getBackgroundColor = (
} }
return { return {
paper: lighten(theme.colorSchemes.light.palette.primary.dark, 0.8), paper: lighten(theme.colorSchemes.light.palette.primary.dark, 0.7),
default: lighten(theme.colorSchemes.light.palette.primary.dark, 0.9), default: lighten(theme.colorSchemes.light.palette.primary.dark, 0.8),
}; };
} }