\documentclass[10pt,landscape,a4paper,svgnames,x11names]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[utopia,sfscaled]{mathdesign}
\usepackage{amsmath}
\everymath{\color{MidnightBlue}}
\begin{document}
\section*{Reihen}
\begin{equation*}
\sum_{n=0}^\infty a_n \text{bzw.} a_k=\sum_{n=0}^k a_n
\end{equation*}
$\rightarrow$ kann konvergieren oder divergieren \\
Bedingungen f\"ur Konvergenz:
\begin{itemize}
\item{Nullfolge} $a_n\rightarrow 0$
\item{Quotientenkriterium} $\lim\limits_{n\to\infty}|\frac{a_{n+1}}{a_n}|=q$
\begin{align*}
q<1&\Rightarrow \text{konvergent} \\
q>1&\Rightarrow \text{divergent} \\
q=1&\Rightarrow \text{keine Aussage}
\end{align*}
\end{itemize}
\end{document}
Why aren't my equation blue too using \everymath? And how will they?
xcolorto your packages, otherwiseMidnightBlueis not supported (are you working withbeamer? given the class options) – daleif Jun 08 '18 at 12:54xcolorthen the coloring works on all butequation(*), the latter can be fixed by adding theetoolboxpackage and adding\AtBeginEnvironment{equation*}{\color{orange}} \AtBeginEnvironment{equation}{\color{orange}}– daleif Jun 08 '18 at 13:04\everymaththen? – gvgramazio Jun 08 '18 at 13:15\everydisplay{\color{blue}}– MadyYuvi Dec 23 '19 at 12:17