Skip to content

Commit

Permalink
Change default color kwarg to use RGB()
Browse files Browse the repository at this point in the history
  • Loading branch information
jpthiele committed Nov 21, 2024
1 parent 92fdab5 commit 8734fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ function default_plot_kwargs()
:markersize => Pair(5, "1D plot marker size"),
:markershape => Pair(:none,
"1D plot marker shape: one of [:none, :circle, :star5, :diamond, :hexagon, :cross, :xcross, :utriangle, :dtriangle, :rtriangle, :ltriangle, :pentagon, :+, :x]"),
:color => Pair((0.0, 0.0, 0.0), "1D plot line color"),
:color => Pair(RGB(0.0, 0.0, 0.0), "1D plot line color"),
:cellwise => Pair(false, "1D plots cellwise; unmaintained and can be slow)"),
:label => Pair("", "1D plot label"),
:levels => Pair(7, "array of isolevels or number of isolevels for contour plots"),
Expand Down

0 comments on commit 8734fc1

Please sign in to comment.