Foglio di stile sfondo scuro #

Questo esempio mostra lo stile "dark_background", che utilizza il bianco per elementi che sono tipicamente neri (testo, bordi, ecc.). Si noti che non tutti gli elementi grafici hanno come impostazione predefinita i colori definiti da un parametro rc.

Foglio di stile 'dark_background'
import numpy as np
import matplotlib.pyplot as plt


plt.style.use('dark_background')

fig, ax = plt.subplots()

L = 6
x = np.linspace(0, L)
ncolors = len(plt.rcParams['axes.prop_cycle'])
shift = np.linspace(0, L, ncolors, endpoint=False)
for s in shift:
    ax.plot(x, np.sin(x + s), 'o-')
ax.set_xlabel('x-axis')
ax.set_ylabel('y-axis')
ax.set_title("'dark_background' style sheet")

plt.show()

Galleria generata da Sphinx-Gallery