この 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 で見つけた履歴書テンプレートの一部ですが、メインセクション(現在は黒色)をどのように色付けするかを知りたいです。

答え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}
}

緑色のセクションの場合(例)。

関連情報