How does one change the default notebook background color?
Answer
You can SetOptions
for the current notebook as:
SetOptions[EvaluationNotebook[], Background -> LightGreen]
to change the background to whatever colour you like. You can also supply an RGB colour as:
SetOptions[EvaluationNotebook[], Background -> RGBColor[0.9, 0.7, 0.7]]
Other possibilities for the first argument of SetOptions
are
$FrontEnd
which will change the background for all notebooks and last across restarting Mathematica.$FrontEndSession
which will change the background for all notebooks but won't be saved if you restart Mathematica.
Comments
Post a Comment