[Tex/LaTex] Customizing inline coloring with the fixme package

colorfixme

How can I set the color of annotated fixme text (not the comment itself)?

This MWE produces the text under consideration in a blueish color, that is hard to read, I'd like it to be darker and more alarming (or just red).

% Run with: pdflatex -shell-escape -interaction=nonstopmode %.tex
\documentclass[draft]{memoir}

\usepackage{fixme}
\fxsetup{theme=color}

\begin{document}
Hello \fxnote*{Should this be capitalized?}{world}!
\end{document}

Output:
Screen shot

This other question shows how to deal with the coloring of the first argument in annotated fixme (the comment itself), but what about the second argument (the text which is under consideration. Fixme package fxnote background

Best Answer

Yes, see p. 16 of the manual and proceed:

\documentclass[draft]{memoir}


\usepackage{fixme}
\fxsetup{theme=color}
\definecolor{fxtarget}{rgb}{0.8000,0.0000,0.0000}

\begin{document}
Hello \fxnote*{Should this be capitalized?}{world}!
\end{document}

Which renders:

enter image description here

Related Question