From d04a9d85a971d2d6a479dfaff87079662304ed02 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Thu, 16 May 2013 14:29:52 +0200 Subject: [PATCH] json separators in yellow, color double quotes --- colout/colout_json.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/colout/colout_json.py b/colout/colout_json.py index 724362f..4784a74 100644 --- a/colout/colout_json.py +++ b/colout/colout_json.py @@ -2,7 +2,8 @@ def theme(): return [ [ '[][{}]' ], - [ '[:,]', "blue" ], - [ '".*"', "green" ] + [ '[:,]', "yellow" ], + [ '"(.*)"', "green" ], + [ """["']""", "cyan" ] ]