Skip to content

Commit

Permalink
Update ImportGraph/Cli.lean
Browse files Browse the repository at this point in the history
Co-authored-by: Jon Eugster <[email protected]>
  • Loading branch information
kim-em and joneugster authored Aug 30, 2024
1 parent 9841e11 commit 05fdb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ImportGraph/Cli.lean
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def asDotGraph
let mut lines := #[s!"digraph \"{header}\" " ++ "{"]
for (n, is) in graph do
if unused.contains n then
lines := lines.push s!" \"{n}\" [style=filled, fillcolor=lightgray];"
lines := lines.push s!" \"{n}\" [style=filled, fillcolor=\"#e0e0e0\"];"
else
lines := lines.push s!" \"{n}\";"
-- Then add edges
Expand Down

0 comments on commit 05fdb03

Please sign in to comment.