summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@qvarnlabs.com>2018-05-03 16:58:17 +0300
committerLars Wirzenius <liw@qvarnlabs.com>2018-05-03 16:58:17 +0300
commit1f5989e02c774929495d4ddde19d51c8e06da425 (patch)
treedfce2a1ca584f50370d8a00fcf1b68017e88cb6d
parent5412d507b1db19dc33a10cad7ef23acb65f9540a (diff)
downloadql-ikiwiki-publish-1f5989e02c774929495d4ddde19d51c8e06da425.tar.gz
Change: tweak colour to be more easily readable
-rwxr-xr-xprojgraph8
1 files 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])