I'm drawing this:
How can I remove the gradient in the background of each node? I want to set a solid color for each element.
Code for the above example:
\documentclass{article}
\usepackage{smartdiagram}
\begin{document}
\tikzset{
every shadow/.style={
fill=none,
shadow xshift=0pt,
shadow yshift=0pt}
}
\smartdiagramset{
module shape=rectangle,
uniform arrow color=true,
uniform color list=teal!60 for 5 items,
arrow color=gray!50!black,
back arrow distance=0.75cm,
module y sep=2cm,
module minimum width=4cm,
text width=4cm,
border color=none
}
\smartdiagram[flow diagram]{
a,
b,
c,
d,
e
}
\end{document}

