dot/ipython-config.py: Fix number face to actually be yellow.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 1 Aug 2017 11:39:01 +0000 (12:39 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 1 Aug 2017 11:39:01 +0000 (12:39 +0100)
Turns out it was faithfully producing the unpleasant lime-green colour
I'd inexplicably asked for.

dot/ipython-config.py

index 752ca04..1555bba 100644 (file)
@@ -21,7 +21,7 @@ c.TerminalInteractiveShell.highlighting_style = 'emacs'
 c.TerminalInteractiveShell.highlighting_style_overrides = {
   T.Keyword: 'bold #fff',
   T.Comment: 'italic #54ff9f',
-  T.Literal.Number: '#adff2f',
+  T.Literal.Number: '#ffff00',
   T.Literal.String: '#87ceff',
   T.Literal.String.Escape: '#87ceff',
   T.Literal.String.Interpol: '#87ceff',