Значение по умолчанию matplotlib
style
равно classic
Вы можете видеть доступные matplotlib styles
import matplotlib.pyplot as plt
#To list all available styles, use:
print(plt.style.available)
['Solarize_Light2', '_classic_test_patch', 'bmh', 'classic', 'dark_background', 'fast', 'fivethirtyeight', 'ggplot', 'grayscale', 'seaborn', 'seaborn-bright', 'seaborn-colorblind', 'seaborn-dark', 'seaborn-dark-palette', 'seaborn-darkgrid', 'seaborn-deep', 'seaborn-muted', 'seaborn-notebook', 'seaborn-paper', 'seaborn-pastel', 'seaborn-poster', 'seaborn-talk', 'seaborn-ticks', 'seaborn-white', 'seaborn-whitegrid', 'tableau-colorblind10']
Чтобы вернуться к значению по умолчанию в то время как фон:
plt.style.use('classic')
Надеюсь, это поможет!