how to add dark theme in jupyter notebook code example
Example 1: how to make jupyter notebook dark mode
pip install jupyterthemes
jt -t onedork -f roboto -fs 12
Example 2: jupyter notebook plot background dark theme
copiedimport matplotlib.pyplot as plt
plt.style.use('dark_background')