Can one plot a histogram in Plots.jl where only the outer line is plotted, like in this picture?

In PyPlot this is set be edgecolor but I did not find a way to do this in Plots with gr.
Can one plot a histogram in Plots.jl where only the outer line is plotted, like in this picture?

In PyPlot this is set be edgecolor but I did not find a way to do this in Plots with gr.
This should work
julia> using Plots
julia> stephist(randn(100), fill=true, fillalpha=0.5)
How do I leave the outer contour as a solid line?
Figured it out.
julia> using Plots
julia> stephist(randn(100), fill=true, fillalpha=0.5, color=:black, fillcolor=:red)