File: 0002.changed-background-for-better-visibility.patch

package info (click to toggle)
python-friendly 0.7.21%2Bgit20230418.fe5d3a2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,268 kB
  • sloc: python: 2,291; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 760 bytes parent folder | download
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()