mirror of
https://github.com/mfocko/blog.git
synced 2024-11-21 20:43:48 +01:00
fix: include background color in dot generation
Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
b841daccf7
commit
ffd1572e98
1 changed files with 2 additions and 2 deletions
|
@ -9,5 +9,5 @@ for pic in $(find ./static/files -name '*.dot' -print); do
|
|||
dot $pic -Tsvg -Gfontname="$FONT" -Nfontname="$FONT" -Efontname="$FONT" > ${SVG_NAME}_light.svg
|
||||
|
||||
# dark mode
|
||||
dot $pic -Tsvg -Gfontname="$FONT" -Nfontname="$FONT" -Efontname="$FONT" -Gbgcolor="none" -Gcolor="white" -Gfontcolor="white" -Nfillcolor="none" -Ncolor="white" -Nfontcolor="white" -Efillcolor="none" -Ecolor="white" -Efontcolor="white" > ${SVG_NAME}_dark.svg
|
||||
done;
|
||||
dot $pic -Tsvg -Gfontname="$FONT" -Nfontname="$FONT" -Efontname="$FONT" -Gbgcolor="#1b1b1d" -Gcolor="white" -Gfontcolor="white" -Nfillcolor="none" -Ncolor="white" -Nfontcolor="white" -Efillcolor="none" -Ecolor="white" -Efontcolor="white" > ${SVG_NAME}_dark.svg
|
||||
done;
|
||||
|
|
Loading…
Reference in a new issue