[Python-checkins] cpython (3.4): Issue #24820: Add 'IDLE Dark' text color theme, warning, and solution.

terry.reedy python-checkins at python.org
Sun Oct 4 00:32:03 EDT 2015


https://hg.python.org/cpython/rev/1de01a63f360
changeset:   98529:1de01a63f360
branch:      3.4
parent:      98521:25e05b3e1869
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sun Oct 04 00:31:05 2015 -0400
summary:
  Issue #24820: Add 'IDLE Dark' text color theme, warning, and solution.

files:
  Lib/idlelib/config-highlight.def |  29 ++++++++++++++++++++
  Lib/idlelib/configDialog.py      |  14 +++++++++
  2 files changed, 43 insertions(+), 0 deletions(-)


diff --git a/Lib/idlelib/config-highlight.def b/Lib/idlelib/config-highlight.def
--- a/Lib/idlelib/config-highlight.def
+++ b/Lib/idlelib/config-highlight.def
@@ -62,3 +62,32 @@
 stderr-background= #ffffff
 console-foreground= #770000
 console-background= #ffffff
+
+[IDLE Dark]
+comment-foreground = #dd0000
+console-foreground = #ff4d4d
+error-foreground = #FFFFFF
+hilite-background = #7e7e7e
+string-foreground = #02ff02
+stderr-background = #002240
+stderr-foreground = #ffb3b3
+console-background = #002240
+hit-background = #fbfbfb
+string-background = #002240
+normal-background = #002240
+hilite-foreground = #FFFFFF
+keyword-foreground = #ff8000
+error-background = #c86464
+keyword-background = #002240
+builtin-background = #002240
+break-background = #808000
+builtin-foreground = #ff00ff
+definition-foreground = #5e5eff
+stdout-foreground = #c2d1fa
+definition-background = #002240
+normal-foreground = #FFFFFF
+cursor-foreground = #ffffff
+stdout-background = #002240
+hit-foreground = #002240
+comment-background = #002240
+break-foreground = #FFFFFF
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -507,6 +507,20 @@
 
     def VarChanged_builtinTheme(self, *params):
         value = self.builtinTheme.get()
+        if value == 'IDLE Dark':
+            tkMessageBox.showwarning(
+                title="The 'IDLE Dark' Text Color Theme",
+                message="IDLE Dark is new in October, 2015.  Trying to "
+                        "run earlier versions of IDLE with it selected "
+                        "will disable colorizing, or worse.\n\n"
+                        "If you might ever run an earlier release of IDLE, "
+                        "then before exiting this version, "
+                        "either switch to another theme or "
+                        "hit the 'Save as New Custom Theme' button.  "
+                        "The latter requires a new name, such as "
+                        "'Custom Dark', but the custom theme will work "
+                        "with any IDLE release, and can be modified.",
+                parent=self)
         self.AddChangedItem('main', 'Theme', 'name', value)
         self.PaintThemeSample()
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list