The lengths you are looking for are stored in macros \Gm@lmargin (distance between left margin of paper and left border of text area) and \Gm@rmargin (distance between right border of text area and right margin of paper), so \paperwidth=\Gm@lmargin+\textwidth+\Gm@rmargin. Since the \Gm@... are macros, you can define some lengths first to easily use them in \dimexpr (see remark at the end):
\documentclass[t]{beamer}
\usepackage{lipsum}
\usepackage{geometry}
\geometry{paperwidth=250mm,paperheight=190.5mm,left=0mm,right=0mm,top=0mm,bottom=0mm}
\setbeamersize{text margin left=10mm,text margin right=60mm}
\makeatletter
\newlength\beamerleftmargin
\newlength\beamerrightmargin
\setlength\beamerleftmargin{\Gm@lmargin}
\setlength\beamerrightmargin{\Gm@rmargin}
\makeatother
\begin{document}
\begin{frame}
\textcolor{blue}{\rule{\textwidth}{3pt}}
\textcolor{red}{\rule{\dimexpr\paperwidth-\beamerleftmargin-\beamerrightmargin\relax}{3pt}}% 180mm = 250mm - 10mm - 60mm
\end{frame}
\end{document}

If a sidebar is used by the theme, some other horizontal lengths will have to be taken into account: \beamer@leftsidebar, \beamer@rightsidebar store
the (horizontal) sizes of the side bars, and \beamer@leftmargin, \beamer@rightmarginstore the distance between sidebar and text.
As jfbu has noticed in his comment it is not mandatory to define two new length registers and one could do
\def\beamerleftmargin{\dimexpr\Gm@lmargin\relax}
\def\beamerrightmargin{\dimexpr\Gm@rmargin\relax}
\setlength, on the other hand one could do with a\def\mymacro{\th@priv@tem@cr@w@thm@ny@@@s}. – May 20 '14 at 16:08;-)! an alternative having the advantages in terms of syntax of your method with lengths is\def\beamerleftmargin{\dimexpr\Gm@lmargin\relax}. It allows situations where the initial thing could change, and we want the current value (without having to bother with\makeatletteretc). I should have formulated this way from the start! – May 20 '14 at 16:25\dimexpr..\relaxone is allowed to use any expandable macro. For example with\def\A{12}\def\B{3pt}then\dimexpr\A\B\relaxcan correctly be used to specify123ptwhereTeXexpects a dimension (or inside another\dimexpr .. \relax) – May 20 '14 at 16:33