[Tex/LaTex] Change general color when using \textbf{}

color

I am trying to change the color to red everytime I use the function \textbf{}. Is there a possible way to do it globally, i.e. when I type \textbf{} it changes to the desire color automatically, instead of doing it for each time I need it i.e. \textcolor{red}{\textbf{}}?

Best Answer

Put in preamble

\let\oldtextbf\textbf
\renewcommand{\textbf}[1]{\textcolor{red}{\oldtextbf{#1}}}