Bind color and background to selected theme

This commit is contained in:
Nicola Benaglia
2025-04-05 21:09:58 +02:00
parent 573f0e6547
commit 74649d3325
2 changed files with 65 additions and 63 deletions

View File

@@ -358,6 +358,7 @@ export const AppsCategoryInfoLabel = styled(Typography)(({ theme }) => ({
fontSize: "12px",
fontWeight: 700,
lineHeight: 1.2,
color: "#8D8F93",
backgroundColor: theme.palette.background.default,
color: theme.palette.text.primary,
}));
@@ -366,6 +367,7 @@ export const AppsCategoryInfoValue = styled(Typography)(({ theme }) => ({
fontSize: "12px",
fontWeight: 500,
lineHeight: 1.2,
color: "#8D8F93",
backgroundColor: theme.palette.background.default,
color: theme.palette.text.primary,
}));