I need to draw the x,y,z axis of my bloch sphere in black (with an arrow at the end of them).
I tried this code which doesn't work (my axis are light grey).
How to fix it ? I am not sure to understand how to use the options.
\documentclass{standalone}
\usepackage{blochsphere}
\begin{document}
\begin{blochsphere}[radius=1.5 cm,tilt=15,rotation=-20]
\drawBallGrid[style={opacity=0.1}]{30}{30}
\drawGreatCircle[style={dashed}]{0}{0}{0}
\drawAxis[style={draw=black}]{0}{0}
\drawAxis[color=black]{90}{0}
\labelLatLon{up}{90}{0};
\labelLatLon{down}{-90}{90};
\node[above] at (up) {{\tiny $\left|0\right>$ }};
\node[below] at (down) {{\tiny $\left|1\right>$}};
\end{blochsphere}
\end{document}
As you can see the lines are light grey and not black.
Important info : I never used tikz, I just read the documentation to see how it works (because apparently the BlochSphere package is based on it).
Documentation of the Bloch Sphere package : http://ctan.math.washington.edu/tex-archive/graphics/pgf/contrib/blochsphere/blochsphere.pdf



\drawBallGrid[style={opacity=1,ultra thin}]{30}{30}? – Jan 16 '19 at 19:06