In this video we’ll create a Night Mode for our text editor.
Night mode, or Dark Mode, is just a basic way to change the colors of your app to be darker than the default.
To do this, we’ll basically just .config(bg=”black”) a bunch of different widgets. We’ll create a new Options menu that allows us to toggle dark mode off and on. It’s sort of a hacky way to do it, but it should work out ok.
Add comment