I want to draw one figure as follows
but how can I make that the shaded part what I marked in red is a little lighter than the rest? or use dashed line for that part?
my MWE is as follows
\begin{tikzpicture}
\draw (-4,0) -- (4,0);
\draw (0,-5) -- (0,5);
\fill (0,0) coordinate (o) node[anchor=north east]{$O$};
\draw[fill=Green,opacity=0.3,] (1,2.5) -- (1,-1.5) node[text=black,opacity=1,below,xshift=-0.5cm,yshift=-0.5cm]{$W$}-- (-1,-2.5) -- (-1,1.5) -- cycle;
\draw[mydarkblue, line width=1pt] (3,-1.5) node[above,text=black]{$L$} -- (-2,1);
\end{tikzpicture}
Thanks in advance.


tikzpackage itself doesn't support real 3d plotting and filling. You may take a look at Sketch. I haven't used it before and note it's no longer being maintained since 2012. – muzimuzhi Z May 06 '22 at 14:37