How to change equations color in MathJax
问题 I'm using the following snippet to display equations on my blog <script src='http://www.mathjax.org/mathjax/MathJax.js' type='text/javascript'> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]} }); </script> and I would like to change equations color to white because my background is somewhat dark, how can this be done? 回答1: Do this: .MathJax_Display { color: #FFF !important; } It seems to work for me. 回答2: