I would like to change the color of the oxidation numbers in some reactions like:
\documentclass{article}
\usepackage{chemformula}
\usepackage{chemmacros}
\usepackage[spanish]{babel}
\usepackage[version=3]{mhchem}
\let\chold\ch % necesario para que ch ponga bien las flechas
\renewcommand\ch[1]{%
\catcode`<=12
\catcode`>=12
\chold{#1}%
\catcode`<=\active
\catcode`>=\active
}
\chemsetup{
formula = {chemformula} ,
modules = {redox}
}
\chemsetup[redox]{
roman = false ,
explicit-sign = true ,
pos = top
}
\begin{document}
\ch{"\ox{5,N}" O3^- + 1 e- + 2 H+ <=> "\ox{4,N}" O2 + H2O}
\end{document}
I use chemmacros (ox) to write the oxidation numbers, but there is no color option. Is there any way to change only the oxidations numbers? Thanks in advance



\color{+5}or similar. (I guess this is worth a feature request on chemmacros' github) – cgnieder Mar 02 '20 at 13:36