[Tex/LaTex] Changing the colour of the text with itemize

beamercoloritemize

I'm creating my own beamer theme. I can change the colour of the bullets using \setbeamercolor{}. But how can I change the colour of the text after the bullets? I would like to use it in a .sty file.

\documentclass[10pt]{beamer}

\definecolor{INBObrown}{RGB}{118, 91, 52}
\definecolor{INBOreddishbrown}{RGB}{182, 101, 70}
\definecolor{INBOblue}{RGB}{86, 152, 200}
\setbeamercolor{item}{fg=INBObrown}
\setbeamercolor{subitem}{fg=INBOreddishbrown}
\setbeamercolor{subsubitem}{fg=INBOblue}

\begin{document}

\begin{frame}
  \begin{itemize}
    \item This text should be in colour INBObrown
    \begin{itemize}
      \item This text should be in colour INBOreddishbrown
      \begin{itemize}
        \item This text should be in colour INBOblue
      \end{itemize}
    \end{itemize}
  \end{itemize}
\end{frame}

\end{document}

Best Answer

The following should work:

\setbeamercolor{itemize/enumerate body}{fg=INBObrown}
\setbeamercolor{itemize/enumerate subbody}{fg=INBOreddishbrown}
\setbeamercolor{itemize/enumerate subsubbody}{fg=INBOblue}

Edit: Just found a previously existing answer.