Skip to content

Commit ac1cf1b

Browse files
committed
reset default plot background to match site light/dark mode
1 parent 68cd674 commit ac1cf1b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

1_SpectroscopicTraceTutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"import matplotlib.pyplot as plt\n",
7575
"\n",
7676
"plt.rcParams[\"image.origin\"] = \"lower\"\n",
77-
"plt.style.use(\"dark_background\") # Optional!"
77+
"# plt.style.use(\"dark_background\") # Optional!"
7878
]
7979
},
8080
{

2_WavelengthCalibration.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
"plt.rcParams[\"image.origin\"] = (\n",
4949
" \"lower\" # we want to show images, not matrices, so we set the origin to the lower-left\n",
5050
")\n",
51-
"plt.style.use(\n",
52-
" \"dark_background\"\n",
53-
") # Optional configuration: if run, this will look nice on dark background notebooks"
51+
"# plt.style.use(\n",
52+
"# \"dark_background\"\n",
53+
"# ) # Optional configuration: if run, this will look nice on dark background notebooks"
5454
]
5555
},
5656
{

3_Trace_Extract_Wavelength-CalibrateSpectrum.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"import numpy as np\n",
4343
"import matplotlib.pyplot as plt\n",
4444
"\n",
45-
"plt.style.use(\"dark_background\")"
45+
"# plt.style.use(\"dark_background\")"
4646
]
4747
},
4848
{

0 commit comments

Comments
 (0)