\usepackage{color}
\usepackage{fontawesome}
\definecolor{DARKBLUE}{RGB}{8, 94, 179}
\begin{tightemize}
\item Designed and developed a \textbf{\color{DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data.
\end{tightemize}
O texto python não está mudando de cor para azul escuro...
Responder1
Este modelo que você está usando atribui uma cor específica (chamada primary
) à fonte principal. Isso não pode ser substituído por \color
. Você tem que redefinir a fonte principal sem essa cor. Dessa forma, você também pode incluir uma correção para a fonte em negrito ausente.
\documentclass{deedy-resume-openfont}
\setmainfont[
Path = fonts/lato/,
UprightFont = *-Lig,
BoldFont = *-Bol,
%Color=primary,
]{Lato}
\definecolor{DARKBLUE}{RGB}{8, 94, 179}
\begin{document}
\begin{tightemize}
\item Designed and developed a \textbf{\color{DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data.
\end{tightemize}
\end{document}
Alternativamente, se quiser manter a cor padrão, você pode adicionar sua cor via \addfontfeatures
.
\documentclass{deedy-resume-openfont}
\setmainfont[
Path = fonts/lato/,
UprightFont = *-Lig,
BoldFont = *-Bol,
Color=primary,
]{Lato}
\definecolor{DARKBLUE}{RGB}{8, 94, 179}
\begin{document}
\begin{tightemize}
\item Designed and developed a \textbf{\addfontfeatures{Color=DARKBLUE}Python} based script to web scrape and index over \textbf{1.2 TB} of news, patent and market data.
\end{tightemize}
\end{document}