Remove high contrast from graphs

This commit is contained in:
Héctor Ramón Jiménez 2019-11-20 05:01:36 +01:00
parent fdc99e5bf6
commit cae26cb7bc
15 changed files with 58 additions and 61 deletions

View file

@ -1,19 +1,19 @@
digraph G {
fontname = "Roboto";
newrank=true;
node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"];
node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
edge[color="#333333"];
subgraph cluster_1 {
label = "renderers ";
labelloc = "b";
labeljust = "r";
fontcolor = "#ffffff";
color="#8797AF";
bgcolor="#8797AF";
fontcolor = "#0366d6";
color="#f6f8fa";
bgcolor="#f6f8fa";
style=rounded;
node [fillcolor=white, color=white, fontcolor=black];
etc_1 [label="...", style=empty, shape=none, fontcolor=white];
etc_1 [label="...", style=solid, shape=none];
iced_wgpu;
}
@ -21,13 +21,12 @@ digraph G {
label = "shells ";
labelloc = "b";
labeljust = "r";
fontcolor = "#ffffff";
color="#8797AF";
bgcolor="#8797AF";
fontcolor = "#0366d6";
color="#f6f8fa";
bgcolor="#f6f8fa";
style=rounded;
node [fillcolor=white, color=white, fontcolor=black];
etc_2 [label="...", style=empty, shape=none, fontcolor=white];
etc_2 [label="...", style=solid, shape=none];
iced_winit;
}
@ -38,5 +37,5 @@ digraph G {
iced_native -> iced_wgpu;
iced_native -> iced_winit;
iced_core [style=dashed, fontcolor=black];
iced_core [style=dashed];
}