From 1f5989e02c774929495d4ddde19d51c8e06da425 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 3 May 2018 16:58:17 +0300 Subject: Change: tweak colour to be more easily readable --- projgraph | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projgraph b/projgraph index 1a9813e..41636ac 100755 --- a/projgraph +++ b/projgraph @@ -21,10 +21,10 @@ statuses = { def nodeattrs(done): attrs = { unknown: {'shape': 'diamond'}, - blocked: {'color': '#777777', 'shape': 'rectangle'}, - finished: {'color': '#eeeeee'}, - ready: {'color': '#bbbbbb'}, - next: {'color': '#00cc00'}, + blocked: {'fillcolor': '#ff0000', 'shape': 'rectangle'}, + finished: {'fillcolor': '#eeeeee'}, + ready: {'fillcolor': '#ffffff'}, + next: {'fillcolor': '#00cc00'}, } a = dict(attrs[done]) -- cgit v1.2.1