# Examples from pyvista.plotting.themes.DarkTheme
# ===============================================

# Make the dark theme the global default.
import pyvista as pv
from pyvista import themes
pv.set_plot_theme(themes.DarkTheme())

# Alternatively, set via a string.
pv.set_plot_theme('dark')

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

