summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-07-10 21:32:22 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-07-10 21:32:22 (EDT)
commit1b49af3f30737f45296186b947c7567725308875 (patch)
treebc8d7b3c4e88ff8c50c180d6bee3a28ef31a408e
parentff81df62cf8716fc41d46df9ecf43b8ad450fbb1 (diff)
Darken leaf nodes
-rwxr-xr-xbin/depsdot2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/depsdot b/bin/depsdot
index beaa41b..756c910 100755
--- a/bin/depsdot
+++ b/bin/depsdot
@@ -98,7 +98,7 @@ sub main
foreach my $src (sort(@src_pkgs)) {
my $attr = '';
if (not defined($non_leaf_src_pkgs{$src})) {
- $attr = ' [style=filled,fillcolor="#C0C0C0"]';
+ $attr = ' [style=filled,fillcolor="#808080"]';
}
STDOUT->print("\t\"" . $src . '"' . $attr . ";\n");
}