posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.03k stars 4.79k forks source link

Disable double colors only for Sections #116

Closed mberaha closed 7 years ago

mberaha commented 7 years ago

Hi there, first of all, I love this theme. I just want to know if it possible to have the sections all in black (no "Edu" in red) while keeping the Locations and Position in red!

Thank you

posquit0 commented 7 years ago

You can see the comment in your resume.tex file :)

% Set false if you don't want to highlight section with awesome color
\setbool{acvSectionColorHighlight}{true}
reesemcardle commented 4 years ago

What if I want the whole first word (ex Education) to be red

belhssanklouz commented 1 year ago

What if I want the whole first word (ex Education) to be red

in awesome-cv.cls in line 155 change this code => \def\@sectioncolor#1#2#3{% \ifbool{acvSectionColorHighlight}{{\color{awesome}#1#2#3}}{#1#2#3}% } to this => \def\@sectioncolor#1#2#3{% \ifbool{acvSectionColorHighlight}{{\color{awesome}#1#2#3}}{\color{awesome}#1#2#3}% }