We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e11d4e commit 010a0fcCopy full SHA for 010a0fc
src/napari_matplotlib/base.py
@@ -3,6 +3,15 @@
3
from matplotlib.figure import Figure
4
from qtpy.QtWidgets import QVBoxLayout, QWidget
5
6
+import matplotlib as mpl
7
+mpl.rc('axes', edgecolor='white')
8
+mpl.rc('axes', facecolor = '#262930')
9
+mpl.rc('axes', labelcolor = 'white')
10
+mpl.rc('savefig', facecolor = '#262930')
11
+mpl.rc('text', color = 'white')
12
+
13
+mpl.rc('xtick', color = 'white')
14
+mpl.rc('ytick', color = 'white')
15
__all__ = ["NapariMPLWidget"]
16
17
0 commit comments