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

6
docs/graphs/generate.sh Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
for file in *.dot
do
dot -Tpng ${file} -o ${file%.*}.png
done