어두운 배경 스타일 시트 #

이 예제는 일반적으로 검은색인 요소(텍스트, 테두리 등)에 흰색을 사용하는 "dark_background" 스타일을 보여줍니다. 모든 플롯 요소가 rc 매개변수로 정의된 색상으로 기본 설정되는 것은 아닙니다.

'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()

Sphinx-Gallery에서 생성한 갤러리