Wie färbe ich die Hauptabschnitte dieser Overleaf-Lebenslaufvorlage?

Wie färbe ich die Hauptabschnitte dieser Overleaf-Lebenslaufvorlage?
    %----------------------------------------------------------------------------------------
%   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}
}

Dies ist ein Teil einer Lebenslaufvorlage, die ich auf Overleaf gefunden habe, und ich würde gerne wissen, wie ich die Hauptabschnitte einfärben kann (die derzeit schwarz sind).

Antwort1

Verwenden

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

für einen grünen Abschnitt (als Beispiel).

verwandte Informationen