[Tex/LaTex] How to change caption color for a color theme in beamerposter

beamercaptionscolorthemes

I am facing a problem. In my poster, I use a color theme, for that reason in figure caption comes with green color, that is quite invisible.enter image description here

Is it possible to change the color?

\documentclass[final, 12pt]{beamer}
\usepackage[size=custom,width=120,height=120,scale=1.7,orientation=portrait]{beamerposter} 
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{wrapfig,xcolor,pgf}
\usepackage{array,booktabs,tabularx,amsthm,multirow,amsmath}
\usepackage[absolute,overlay]{textpos}% text under figure
\usepackage{pifont}
\usepackage{pslatex}
\usepackage{ragged2e} %for justify tex
\usepackage{lipsum} 
\usepackage{etoolbox}
\apptocmd{\frame}{\justifying}{}{}

\setbeamertemplate{caption}[numbered]



\newenvironment<>{varblock}[2][\textwidth]{%
  \setlength{\textwidth}{#1}
  \begin{actionenv}#3%
    \def\insertblocktitle{ \centering#2\par}%
    \par%
    \usebeamertemplate{block begin}}
  {\par%
    \usebeamertemplate{block end}%
  \end{actionenv}}

\usecolortheme[RGB={180,250,80}]{structure} 
\usetheme[height=0mm]{Rochester} 

\begin{document}
\begin{frame}


\begin{textblock}{}(6,3.95)%
\begin{varblock}[42cm]{}
\begin{figure}
\includegraphics{1.jpg}
\caption{ Individual source location A ($\mathrm{L_{A}}$) .}
\label{1}
\end{figure}
\end{varblock}
\end{textblock}

\end{frame}
\end{document}

Best Answer

You can set the caption name color:

\setbeamercolor{caption name}{<color>}

For example, you could use

\setbeamercolor{caption name}{fg=structure!70!black}

enter image description here