diff options
author | 2019-11-20 05:01:36 +0100 | |
---|---|---|
committer | 2019-11-20 05:01:36 +0100 | |
commit | cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e (patch) | |
tree | 76553108325ab23a123269cfe8fa3bd8e5845e81 /docs/graphs/iced.dot | |
parent | fdc99e5bf619daf46b9f3508827a79e329b0da9b (diff) | |
download | iced-cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e.tar.gz iced-cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e.tar.bz2 iced-cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e.zip |
Remove high contrast from graphs
Diffstat (limited to 'docs/graphs/iced.dot')
-rw-r--r-- | docs/graphs/iced.dot | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/docs/graphs/iced.dot b/docs/graphs/iced.dot index c049bf95..24dbb972 100644 --- a/docs/graphs/iced.dot +++ b/docs/graphs/iced.dot @@ -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; } @@ -43,5 +42,5 @@ digraph G { iced_wgpu -> iced; iced_web -> iced; - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; + iced; } |