make4ht now supports both mathjax and svg for math.
I noticed that the math displayed in the browser when using mathjax mode looks sharper/crisper than when using svg for math.
So this question is asking how to improve the svg math resolution, and what configuration if any are needed. I'd like to use SVG for math, but this difference is one of the reasons I am compiling to mathjax with tex4ht.
To show this difference, here is a MWE and commands used to compile them so you can see for yourself on your browser what I mean.
\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}
\[
\arctan\left(
\frac{2 \alpha (a y+b x)+\beta }{a \alpha
\sqrt{\frac{4 a \alpha \gamma -a \beta ^2+4 \alpha b c}{a^3 \alpha ^2}}}
\right)
\]
\end{document}
This is how it looks in Chrome browser compiled to mathjax using the following command (all one one line)
make4ht -ulm default foo.tex
"htm,mathjax,notoc*,p-width,charset=utf-8" " -cunihtf -utf8"

And this is how it looks like compiled using the following command (all on one line)
make4ht -ulm default -f html5+dvisvgm_hashes foo.tex
"html,pic-align,notoc*,p-width,svg"

Actually in the above I had to zoom in using the browser to 150% and more to take these screen shots. At 100% magnification in the browser, one can see more clearly that the mathjax math looks sharper and more crisp and easier to read than the svg math. The svg math is more light weight also. If I can make it darker like mathjax, then that should really help. But do not know how to do this.
I know how to increase the size of the SVG math generated now. Which does help a little.
Here is a screen shot taking when the browser is 100% for both cases, side by side which might make it easier to see the difference

fyi, this is the header of the SVG image file for the above equation that is generated by dvisvgm
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 2.6.3 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg'
xmlns:xlink='http://www.w3.org/1999/xlink' width='160.406143pt'
height='47.409423pt' viewBox='124.191939 126.956513 160.406143 47.409423'>
my question is: Can SVG math generated by tex4ht be made to look better than it does now?
Using TL 2019

