# Examples from pyvista.Plotter.background_color
# ==============================================

# Set the background color to `"pink"` and plot it.
import pyvista as pv
pl = pv.Plotter()
_ = pl.add_mesh(pv.Cube(), show_edges=True)
pl.background_color = 'pink'
pl.background_color
pl.show()

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

