# Examples from pyvista.set_plot_theme
# ====================================

# Set to the default theme.
import pyvista as pv
pv.set_plot_theme('default')

# Set to the document theme.
pv.set_plot_theme('document')

# Set to the dark theme.
pv.set_plot_theme('dark')

# Set to the ParaView theme.
pv.set_plot_theme('paraview')

# Load a theme from any importable module using a dotted path.
pv.set_plot_theme('pyvista.plotting.themes:DarkTheme')

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

