Overleaf CV 템플릿의 주요 섹션에 색상을 지정하는 방법은 무엇입니까?

Overleaf CV 템플릿의 주요 섹션에 색상을 지정하는 방법은 무엇입니까?
    %----------------------------------------------------------------------------------------
%   SECTION FORMATTING
%----------------------------------------------------------------------------------------

% Defines the rSection environment for the large sections within the CV
\newenvironment{rSection}[1]{ % 1 input argument - section name
  \sectionskip
  \MakeUppercase{\bf #1} % Section title
  \sectionlineskip
  \hrule % Horizontal line
  \begin{list}{}{ % List for each individual item in the section
    \setlength{\leftmargin}{1.5em} % Margin within the section
  }
  \item[]
}{
  \end{list}
}

이것은 Overleaf에서 찾은 CV 템플릿의 일부이며 주요 섹션(현재 검은색)의 색상을 지정하는 방법을 알고 싶습니다.

답변1

사용

% Defines the rSection environment for the large sections within the CV
\newenvironment{rSection}[1]{ % 1 input argument - section name
  \sectionskip
  \color{green}\MakeUppercase{\bf #1} % Section title
  \sectionlineskip
  \hrule % Horizontal line
  \begin{list}{}{ % List for each individual item in the section
    \setlength{\leftmargin}{1.5em} % Margin within the section
  }
  \item[]
}{
  \end{list}
}

녹색 섹션의 경우(예:)

관련 정보