[Tex/LaTex] Beamer title font color

beamercolortitles

I would like to use the title color of my beamer presentation (some kind of blue) to write some inline text with the same color. Therefore I want to know the color definition. Is there a command for using the same color as the title?

My preamble definitions are:

\mode<presentation>
{
  \usetheme{Warsaw}
}
\usecolortheme{crane}

EDIT:

\documentclass{beamer}

\usepackage{caption}

\mode<presentation>
{
  \usetheme{Warsaw}
}
\usecolortheme{crane}


\begin{document}
    \begin{frame}{\bf This is the title's color I want to ``copy''}
        \begin{itemize}
            \item 
            I want to use the ``blue'' color from the title for the caption of the table.
        \end{itemize}
        \vspace{1.5\baselineskip}

        \begin{table}
            \begin{tabular}{c|c}
                table1 & trial \\
                \hline
                \hline
                1 & 2 \\
                3 & 4
            \end{tabular}
            \caption*{My table}
        \end{table}     
    \end{frame}
\end{document}

Best Answer

You can copy the color from the frame title this way:

\caption*{\usebeamercolor[fg]{frametitle}{My table}}