- Notifications
You must be signed in to change notification settings - Fork22
Closed as not planned
Description
Currently we set style options using several lines of code:
napari-matplotlib/src/napari_matplotlib/base.py
Lines 9 to 13 in1ec14d3
mpl.rc("axes",edgecolor="white") | |
mpl.rc("axes",facecolor="#262930") | |
mpl.rc("axes",labelcolor="white") | |
mpl.rc("savefig",facecolor="#262930") | |
mpl.rc("text",color="white") |
Instead we should put these inamatplotlibrc
file, to reduce lines of code, and make it easier to edit and see what style settings are being set all in one go.