I would like a symbol that is identical to \le but where the "or equal" line (the line under the <) is green to emphasize to the reader the (or equal) part. That is, I want the new code to be identical in size and location, but just different in color.
I will only use this colored analog one time in my document so I prefer to enter it directly, rather than store it in a macro.
I used the following code in the hopes of getting something I could inject color into:
\documentclass{article}
\begin{document}
$3 \show\le 5$
\end{document}
This showed me the following useful output:
\le=\mathchar"3214.
From what I understand (Is there a numbered list of characters that \mathchar uses?), this means the \le is essentially its own character defined by the math font that's used. Thus, I wasn't sure how to inject color.
I don't think it would be hard to just draw a custom < with a line under it, but I'm hoping for something identical---other than color---to \le.


