Add light mode styles

This commit is contained in:
Yana
2025-06-25 19:19:19 +03:00
parent 8926ade582
commit 63b78b24cc
@@ -54,7 +54,11 @@ export const EnvironmentSwitcher: React.FC = () => {
: theme.palette.common.white,
borderStyle: environment === "sandbox" ? "solid" : "dashed",
backgroundColor:
environment === "sandbox" ? colours.pine[800] : "transparent",
environment === "sandbox" && theme.palette.mode === "dark"
? colours.pine[800]
: environment === "sandbox" && theme.palette.mode === "light"
? colours.pine[300]
: "transparent",
fontWeight: 500,
fontSize: 14,
}}