Steps:
1.
2.
3.
4.
| Tech | Version |
| ----------- | ------- |
| Material-UI | v4.3.2 |
| React | 16.9.0 |
| Browser | chrome |
| TypeScript | |
| etc. | |

@hoangtient9 See https://material-ui.com/getting-started/faq/#i-have-several-instances-of-styles-on-the-page.
Here is an example of dark theme not working. Any ideas?
@prionkor You miss the global styles (body background-color and color), you can use the CssBaseline component to apply them automatically. https://codesandbox.io/s/material-ui-dark-theme-kc8t7
@oliviertassinari I see. Also when I use <AppBar /> component I don't see dark theme showing up automatically. I had to use <AppBar color="inherit" /> in order to make appbar dark. do I have to do it for all components? Is there any way to auto inherit dark theme?
I see. Also when I use
component I don't see dark theme showing up automatically.
@prionkor This is another concern, color="default" should work better. But we need to sync with the latest dark specification in v5.
Most helpful comment
@prionkor This is another concern,
color="default"should work better. But we need to sync with the latest dark specification in v5.