비머에서 생성된 텍스트 색상 변경

비머에서 생성된 텍스트 색상 변경

터미널임을 시뮬레이션하는 오른쪽 부분의 생성된 텍스트를 강조하고 싶습니다. "흰색 텍스트"라는 텍스트를 흰색으로 만들고 싶습니다. 이것은 내 코드입니다.

\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}

여기에 이미지 설명을 입력하세요

관련 정보