From 519d679d1fcc4b2678384bc41ed84466f43c5477 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 1 Aug 2017 12:39:01 +0100 Subject: [PATCH 1/1] 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. --- dot/ipython-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.11.0