\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}
El texto Python no cambia de color a azul oscuro...
Respuesta1
Esta plantilla que estás utilizando asigna un color específico (llamado primary
) a la fuente principal. Esto no puede ser anulado por \color
. Tienes que redefinir la fuente principal sin ese color. De esta manera también puedes incluir una solución para la fuente en negrita que falta.
\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, si desea conservar el color predeterminado, puede agregar su color a través de \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}