1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| SetOptions[EvaluationNotebook[], Background -> RGBColor[0, 0, 0]];
SetOptions[{Plot, Plot3D}, {LabelStyle -> White}];
SetOptions[EvaluationNotebook[], Background -> RGBColor[0, 0, 0], AutoStyleOptions -> { "LocalVariableStyle" -> {FontColor -> RGBColor[0, 1, 0.25098]}, "StringStyle" -> {FontColor -> RGBColor[0.86, 0.56, 0.06]}, "CommentStyle" -> { FontColor -> RGBColor[0.5019607843137255, 1., 0.5019607843137255], ShowAutoStyles -> False, ShowSyntaxStyles -> False, AutoNumberFormatting -> False, TranslationOptions -> {"Enabled" -> False} }, "FunctionLocalVariableStyle" -> {FontColor -> RGBColor[0.6196078431372549, 0.6196078431372549, 0.6196078431372549]}, "PatternVariableStyle" -> {FontColor -> RGBColor[0.5019607843137255, 0.5019607843137255, 1.], FontSlant -> "Italic"}, "UndefinedSymbolStyle" -> {FontColor -> RGBColor[0.93, 0.62, 0.46]} } ];
|