1 | initial version |
You can work along those lines from within a notebook
pip install jupyterthemes
If you typset
!jt -1
you will obtain the 9 proposed themes that is 1) chesterish, 2) grade3, 3) gruvboxd, 4) gruvboxl, 5) monokai, 6) oceans16, 7) oceans16, 7) onedork, 8) solarizedd 9) solarizedl
to load one or the other of those themes, the command are
`from jupyterthemes import get_themes
import jupyterthemes as jt
from jupyterthemes.stylefx import set_nb_theme
set_nb_themes('the themes you want')
to go back to the standard themes
!jt -r
Hope I have not written a mistake.
2 | No.2 Revision |
You can work along those lines from within a notebook
pip install jupyterthemes
If you typset
!jt -1
you will obtain the 9 proposed themes that is 1) chesterish, 2) grade3, 3) gruvboxd, 4) gruvboxl, 5) monokai, 6) oceans16, 7) oceans16, 7) onedork, 8) solarizedd 9) solarizedl
to load one or the other of those themes, the command are
`from from
jupyterthemes import get_themes
import jupyterthemes as jt
from jupyterthemes.stylefx import set_nb_theme
set_nb_themes('the themes you want')
to go back to the standard themes
!jt -r
Hope I have not written a mistake.