1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Changed default background to improve color visibility
Author: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Forwarded:not-needed
Last-Update: 2025-09-18
Index: python-friendly/friendly/mu/repl.py
===================================================================
--- python-friendly.orig/friendly/mu/repl.py
+++ python-friendly/friendly/mu/repl.py
@@ -140,7 +140,7 @@ if "theme" in mu_settings:
elif settings.has_environment("mu"):
formatter = settings.read(option="formatter")
background = settings.read(option="background")
- if formatter == "dark" and background == "#000000":
+ if formatter == "dark" and background == "#2e2e2e":
colourful()
else:
contrast()
|