Cambiar el color del texto acuñado en Beamer

Cambiar el color del texto acuñado en Beamer

Quiero resaltar la parte derecha texto acuñado simulando que es un terminal, me gustaría que el texto "Texto blanco" fuera blanco. Este es mi código:

\documentclass{beamer}
\usetheme{default}
\usepackage{minted}
\usepackage{xcolor}
\usepackage{tcolorbox}

\begin{frame}[fragile]{Example 1}
\begin{columns}[T] % align columns
\begin{column}{.7\textwidth}
Left Part

\begin{minted}[mathescape,
bgcolor=LightGray,
linenos,
fontsize=\tiny,
framesep=1mm]{c}
#include <stdio.h>
int main(){
  for (i=0; i<N; i++) A[i]=0;
    #pragma omp parallel private(tid){
      nthr = omp_get_num_threads();
      tid = omp_get_thread_num();
    
      A[tid] = tid + 5;
      printf ("El thread %d ha terminado \n", tid);
    }
    for (i=0; i<N; i++) printf ("A(%d) = %d \n", i, A[tid]);
  }
      \end{minted}
\end{column}%
\hfill%
\begin{column}{.18\textwidth}
Right Part
\begin{minted}[
linenos,
bgcolor=black,
fontsize=\tiny,
framesep=1mm]{bash}
White text
White text
White text
White text
 \end{minted}
\end{column}%
\end{columns}
\end{frame}

ingrese la descripción de la imagen aquí

información relacionada