feat: enable dark mode

This commit is contained in:
Juan Picado @jotadeveloper
2020-03-02 22:05:24 +01:00
parent 26dbf3d921
commit f761e36669
15 changed files with 180 additions and 46 deletions

View File

@@ -15,7 +15,7 @@ import AppContextProvider from './AppContextProvider';
import AppRoute, { history } from './AppRoute';
const StyledBox = styled(Box)<{ theme?: Theme }>(({ theme }) => ({
backgroundColor: theme && theme.palette.white,
backgroundColor: theme && theme.palette.backgroundBody,
}));
const StyledBoxContent = styled(Box)<{ theme?: Theme }>(({ theme }) => ({