Using the GR backend, I would like to have scatter plots where the inside of the markers are white whilst the edge/stroke is the color of the current palette.
The problem is that setting markercolor=:white will also make the edge white if markerstrokecolor=:auto is set.
MWE:
begin
using Plots
gr()
# this will show 100 random points that are white with white stroke
scatter(rand(100), markercolor=:white, markerstrokewidth=1.7, markerstrokecolor=:auto)
end
Uncommenting template=:plotly_white, the background is removed, as well as the default colorscheme. In the former case it was :plasma, while in the latter, :matter.