I want to change/redefine the math environment in LaTeX Article class such that whenever I write a mathematical expression inline or in displayed math mode, it appears in a color of my choice. Here is an example of what I mean:
I can do it manually for every instance of inline math, or displayed math but I instead want to know how I can redefine the environment itself so that I have to do it only once and I can change the colors globally. Here is an MWE (in which I don't color the math):
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{enumerate}
\item Households save $a_{t} \geq 0$ in the riskless debt issued by
experts with an interest rate $r_{t}$. Thus, wealth follows:
\begin{equation*}
da_{t} = (w_{t}z_{t} + r_{t}a_{t} - c_{t})dt = s(a_{t}, z_{t}, K_{t}, G_{t})dt
\item Optimal choice: $c_{t} = c(a_{t}, z_{t}, K_{t}, G_{t})$
\end{equation*}
\end{enumerate}
\end{document}

\[\]or\begin{equation}\end{equation}though. – handy Aug 07 '20 at 11:24