메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
어두운 배경 스타일 시트 #
이 예제는 일반적으로 검은색인 요소(텍스트, 테두리 등)에 흰색을 사용하는 "dark_background" 스타일을 보여줍니다. 모든 플롯 요소가 rc 매개변수로 정의된 색상으로 기본 설정되는 것은 아닙니다.
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()