diff --git a/Makefile.dot b/Makefile.dot index 24efab0..b5e2006 100644 --- a/Makefile.dot +++ b/Makefile.dot @@ -1,9 +1,11 @@ // dot -Tpdf Makefile.dot > Makefile.pdf && open Makefile.pdf digraph { - "all" [shape=parallelogram style=solid color="#e41a1c" penwidth=2] // Red - "msla" [shape=parallelogram style=solid color="#377eb8" penwidth=2] // Blue - "mrvaserver" [shape=rectangle style=solid color="#4daf4a" penwidth=2] // Green - "clean" [shape=parallelogram style=solid color="#984ea3" penwidth=2] // Purple + node [colorscheme=set14] + + "all" [shape=parallelogram style=solid color=1 penwidth=2] + "msla" [shape=parallelogram style=solid color=2 penwidth=2] + "mrvaserver" [shape=rectangle style=solid color=3 penwidth=2] + "clean" [shape=parallelogram style=solid color=4 penwidth=2] "all" -> "msla" }