.MathJax_SVG svg > g,
.MathJax_SVG_Display svg > g {
fill: #333,
stroke: #333
}
for example.
Your \color{rgb}{1.0,0.4,0.4} is incorrect syntax. I think you may
mean to use \DefineColor, but that also requires a new color name, and
doesn't set the current color (you would need to use \color with the
new color name to do that). Finally, note that to use \DefineColor
you need to load the color extension by including
TeX: { extensions: ["color.js"] }
in your configuration. See
http://www.mathjax.org/docs/2.0/tex.html#color
for details.
Davide
On Apr 1, 2012, at 8:07 AM, <gregor.h...@googlemail.com> <gregor.h...@googlemail.com
Your \color{rgb}{1.0,0.4,0.4} is incorrect syntax. I think you may mean to use \DefineColor, but that also requires a new color name,