Themes for Jupyter Notebooks

ThivaV
Dec 1, 2020
  • Install the jupyter notebook theme packages
pip install jupyterthemes

or, if it is in Google colab

!pip install jupyterthemes
  • After successfully installing the theme package execute following command to list down all the available themes
!jt -l
Available Themes: 
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
  • To set a theme of your choice to your jupyter notebook
!jt -t <theme>
  • After setting the theme restart your notebook to theme to take effect
  • To revert back to the original state execute following command and then restart your notebook
!jt -r

--

--