and add some more colors while at it

This commit is contained in:
Will 2023-06-16 21:16:01 -04:00
parent e1439b4cd2
commit a3864544cb

View file

@ -10,6 +10,7 @@ from graphviz import Graph
from graphviz.backend import FORMATS from graphviz.backend import FORMATS
# colorlover.scales["12"]["qual"]["Paired"] converted to hex strings # colorlover.scales["12"]["qual"]["Paired"] converted to hex strings
# Also some neutral colors from colormind.io
COLORS = [ COLORS = [
"#1f78b4", "#1f78b4",
"#33a02c", "#33a02c",
@ -22,6 +23,13 @@ COLORS = [
"#fdbf6f", "#fdbf6f",
"#cab2d6", "#cab2d6",
"#ffff99", "#ffff99",
"#0d8bad",
"#e98420",
"#0e9997",
"#6a5164",
"#afa277",
"#149ead",
"#a54a56",
] ]
i = 0 i = 0