Use brewer color scheme

This commit is contained in:
Michael Hohn
2025-01-22 10:27:36 -08:00
committed by =Michael Hohn
parent d6aa06cbc7
commit 2963095939

View File

@@ -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"
}