With my MWE
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{fadings}
\begin{document}
\begin{tikzpicture}
\colorlet{ok}{green!25!}
\colorlet{bad}{red!20!}
\fill[ok] (0,0) -- (0,6) -- (6,6) -- (6,0) -- cycle;
\fill[bad, path fading=south,fading angle=-45]
(0,0) -- (0,6) -- (6,6) -- (6,0) -- cycle;
\draw[black] (0,0) -- (0,6) -- (6,6) -- (6,0) -- (0,0);
\end{tikzpicture}
\end{document}
I get the following Image (without the black line):
How can I achieve a fading that is radial an centered in the lower left corner. Just with a fading along an arc like the black line in the Image above?


