Is there an easy way to change the fill opacity of the sector without changing the opacity of the angle label?
I tried to use fill opacity=0.5 but the label ("$\alpha$") changes too.
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{quotes,angles}
\begin{document}
\begin{tikzpicture}
\draw (0.4,-0.5) -- (0.4,0.8); % a line to show if opacity works
\draw coordinate (a) at (3,-1);
\draw coordinate (b) at (0,0);
\draw coordinate (c) at (1,1);
\draw (a) -- (b) -- (c) pic ["$\alpha$",draw=orange,fill=orange!50,fill opacity=0.5,angle radius=1cm] {angle=a--b--c};
\end{tikzpicture}
\end{document}


