As per the documentation:
It says dark mode theme will be generated automatically and get reflected in UI, but it is not working for me.
JavaScript
x
6
1
Dependencies:
2
"@emotion/styled": "^11.0.0",
3
"@material-ui/core": "^5.0.0-alpha.16",
4
"@material-ui/icons": "^5.0.0-alpha.15",
5
"@material-ui/lab": "^5.0.0-alpha.16",
6
Code:
JavaScript
1
64
64
1
import { createMuiTheme } from "@material-ui/core/styles";
2
import { CssBaseline, ThemeProvider, useMediaQuery } from "@material-ui/core";
3
import { green, purple } from "@material-ui/core/colors";
4
import { useEffect, useMemo } from "react";
5
import { Route, Switch, useHistory } from "react-router-dom";
6
import SignIn from "./ui/auth/SignIn.js";
7
import SignUp from "./ui/auth/SignUp.js";
8
import Welcome from "./ui/auth/Welcome.js";
9
import { log } from "./util/logger.js";
10
11
const App = () => {
12
13
const prefersDarkMode = useMediaQuery('(prefers-color-scheme: dark)');
14
15
const theme = useMemo(
16
() => {
17
18
log(prefersDarkMode, "Dark Mode");
19
20
const themeOptions = {
21
palette: {
22
type: prefersDarkMode ? 'dark' : 'light',
23
primary: purple,
24
secondary: green
25
},
26
}
27
28
log(JSON.stringify(themeOptions), "Theme Option")
29
30
const theme = createMuiTheme(themeOptions);
31
32
log(theme, "Theme");
33
34
return theme;
35
},
36
[prefersDarkMode],
37
);
38
39
const history = useHistory()
40
41
useEffect(() => {
42
const timer = setTimeout(() => {
43
history.push("/signin");
44
}, 3000);
45
46
return function cleanup() {
47
clearTimeout(timer);
48
};
49
});
50
51
return (
52
<ThemeProvider theme={theme}>
53
<CssBaseline />
54
<Switch>
55
<Route path="/" component={Welcome} exact />
56
<Route path="/signin" component={SignIn} />
57
<Route path="/signup" component={SignUp} />
58
</Switch>
59
</ThemeProvider>
60
);
61
}
62
63
export default App;
64
Signup.js
JavaScript
1
141
141
1
import React, { useState } from 'react';
2
import Avatar from '@material-ui/core/Avatar';
3
import Button from '@material-ui/core/Button';
4
import TextField from '@material-ui/core/TextField';
5
import FormControlLabel from '@material-ui/core/FormControlLabel';
6
import Checkbox from '@material-ui/core/Checkbox';
7
import Link from '@material-ui/core/Link';
8
import Grid from '@material-ui/core/Grid';
9
import Box from '@material-ui/core/Box';
10
import LockOutlinedIcon from '@material-ui/icons/LockOutlined';
11
import Typography from '@material-ui/core/Typography';
12
import { makeStyles } from '@material-ui/core/styles';
13
import Container from '@material-ui/core/Container';
14
import ForgotPassword from './ForgotPassword';
15
import { useHistory } from 'react-router-dom';
16
17
const Copyright = () => {
18
return (
19
<Typography variant="body2" color="textSecondary" align="center">
20
{'Copyright © '}
21
<Link color="inherit" href="https://material-ui.com/">
22
Your Website
23
</Link>
24
{' '}
25
{new Date().getFullYear()}
26
{'.'}
27
</Typography>
28
);
29
}
30
31
const useStyles = makeStyles((theme) => ({
32
paper: {
33
marginTop: theme.spacing(8),
34
display: 'flex',
35
flexDirection: 'column',
36
alignItems: 'center',
37
background: theme.palette.background.default
38
},
39
avatar: {
40
margin: theme.spacing(1),
41
backgroundColor: theme.palette.secondary.main,
42
},
43
form: {
44
width: '100%', // Fix IE 11 issue.
45
marginTop: theme.spacing(1),
46
},
47
submit: {
48
margin: theme.spacing(3, 0, 2),
49
},
50
}));
51
52
const SignIn = () => {
53
54
const classes = useStyles();
55
const history = useHistory();
56
57
// Forgot Password State
58
const [open, setOpen] = useState(false);
59
function openForgotPassword(event) {
60
event.preventDefault();
61
setOpen(true);
62
}
63
64
function onClose() {
65
setOpen(false);
66
}
67
68
function goToSignUp(event) {
69
event.preventDefault();
70
history.push('/signup');
71
}
72
73
return (
74
<Container component="main" maxWidth="xs">
75
<div className={classes.paper}>
76
<Avatar className={classes.avatar}>
77
<LockOutlinedIcon />
78
</Avatar>
79
<Typography component="h1" variant="h5">
80
Sign in
81
</Typography>
82
<form className={classes.form} noValidate>
83
<TextField
84
variant="outlined"
85
margin="normal"
86
required
87
fullWidth
88
id="email"
89
label="Email Address"
90
name="email"
91
autoComplete="email"
92
autoFocus
93
/>
94
<TextField
95
variant="outlined"
96
margin="normal"
97
required
98
fullWidth
99
name="password"
100
label="Password"
101
type="password"
102
id="password"
103
autoComplete="current-password"
104
/>
105
<FormControlLabel
106
control={<Checkbox value="remember" color="primary" />}
107
label="Remember me"
108
/>
109
<Button
110
type="submit"
111
fullWidth
112
variant="contained"
113
color="primary"
114
className={classes.submit}
115
>
116
Sign In
117
</Button>
118
<Grid container>
119
<Grid item xs>
120
<Link href="#" onClick={openForgotPassword} variant="body2">
121
Forgot password?
122
</Link>
123
</Grid>
124
<Grid item>
125
<Link href="#" onClick={goToSignUp} variant="body2">
126
{"Don't have an account? Sign Up"}
127
</Link>
128
</Grid>
129
</Grid>
130
</form>
131
</div>
132
<Box mt={8}>
133
<Copyright />
134
</Box>
135
<ForgotPassword open={open} onClose={onClose} />
136
</Container>
137
);
138
}
139
140
export default SignIn;
141
Background is not getting dark with the type. Can someone help with this?
Advertisement
Answer
My bad. The latest version of Material UI now uses mode attribute of palette to determine whether dark mode or not. Simply change from ‘type’ to ‘mode’:
JavaScript
1
13
13
1
// Enabling Dark Mode according to system-wide setting
2
const prefersDarkMode = useMediaQuery('(prefers-color-scheme: dark)');
3
const theme = useMemo(
4
() => createMuiTheme({
5
palette: {
6
mode: prefersDarkMode ? 'dark' : 'light',
7
primary: purple,
8
secondary: green
9
},
10
}),
11
[prefersDarkMode],
12
);
13
Complete code of App.js:
JavaScript
1
50
50
1
import { createMuiTheme, CssBaseline, ThemeProvider, useMediaQuery } from "@material-ui/core";
2
import { green, purple } from "@material-ui/core/colors";
3
import { useEffect, useMemo } from "react";
4
import { Route, Switch, useHistory } from "react-router-dom";
5
import SignIn from "./ui/auth/SignIn.js";
6
import SignUp from "./ui/auth/SignUp.js";
7
import Welcome from "./ui/auth/Welcome.js";
8
9
const App = () => {
10
11
// Enabling Dark Mode according to system-wide setting
12
const prefersDarkMode = useMediaQuery('(prefers-color-scheme: dark)');
13
const theme = useMemo(
14
() => createMuiTheme({
15
palette: {
16
mode: prefersDarkMode ? 'dark' : 'light',
17
primary: purple,
18
secondary: green
19
},
20
}),
21
[prefersDarkMode],
22
);
23
24
const history = useHistory()
25
useEffect(() => {
26
// After displaying Welcome screen for 3 seconds
27
// go to SignIn page
28
const timer = setTimeout(() => {
29
history.push("/signin");
30
}, 3000);
31
32
return function cleanup() {
33
clearTimeout(timer);
34
};
35
});
36
37
return (
38
<ThemeProvider theme={theme}>
39
<CssBaseline />
40
<Switch>
41
<Route path="/" component={Welcome} exact />
42
<Route path="/signin" component={SignIn} />
43
<Route path="/signup" component={SignUp} />
44
</Switch>
45
</ThemeProvider>
46
);
47
}
48
49
export default App;
50