[Tex/LaTex] Enumerate label numbers

#enumeratebeamer

I have an enumerate list in this MWE.

\documentclass[]{beamer}
\usetheme{Madrid}
\setbeamertemplate{items}[circle]

\begin{document}

\begin{frame}
\frametitle{Example}
\begin{enumerate}
\item First one
\item Second one
\item Third one
\end{enumerate}
In the above list, 2 and 3 are what more important.
\end{frame}

\end{document}

I want "2" and "3" in the text to be the same as in the list, a blue solid circle with white numbers.

How do I do that? Thank you.

enter image description here

Best Answer

If the appearance is the only thing matters, then the following will do:

Code

\documentclass[]{beamer}
\usetheme{Madrid}
\setbeamertemplate{items}[circle]
\usepackage{tikz}

\newcommand\mynum[1]{%
  \usebeamercolor{enumerate item}%
  \tikzset{beameritem/.style={circle,inner sep=0,minimum size=2ex,text=enumerate item.bg,fill=enumerate item.fg,font=\footnotesize}}%
  \tikz[baseline=(n.base)]\node(n)[beameritem]{#1};%
}

\begin{document}

\begin{frame}
\frametitle{Example}
\begin{enumerate}
\item First one
\item Second one
\item Third one
\end{enumerate}
In the above list, \mynum{2} and \mynum{3} are what more important.
\end{frame}

\end{document}

Output

enter image description here