From: Mark Wooding Date: Tue, 1 Aug 2017 11:39:01 +0000 (+0100) Subject: dot/ipython-config.py: Fix number face to actually be yellow. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/519d679d1fcc4b2678384bc41ed84466f43c5477?hp=a429242ddbd6f3c7f5b9b46ec6eacca6444c10ec dot/ipython-config.py: Fix number face to actually be yellow. Turns out it was faithfully producing the unpleasant lime-green colour I'd inexplicably asked for. --- diff --git a/dot/ipython-config.py b/dot/ipython-config.py index 752ca04..1555bba 100644 --- a/dot/ipython-config.py +++ b/dot/ipython-config.py @@ -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',