[Tex/LaTex] Command for both bold and colored text

boldcolor

Every time I want a bold text, I want it colored blue. Currently, I am using:

\textcolor{blue}{\textbf{some bold and colored text}}

To save time, I can define a command to do both at once. How can I do it?

Best Answer

Simply

\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}
Related Question