I'm typesetting a diagram in beamer. It renders like this:
EDIT: the problem appears to be just the background color of the arrow. It's white and not transparent, therefore stands out on the black background.
This is the result I want:
Here's a MWE:
\documentclass[10pt, notheorems]{beamer}
\usepackage{tikz}
\usetikzlibrary{cd, arrows, decorations.pathmorphing}
\definecolor{colornormaltext}{HTML}{e5e8f8}
\definecolor{colorbg}{HTML}{101316}
\definecolor{colorgold}{HTML}{db9a46}
\setbeamercolor{background canvas}{bg=colorbg}
\setbeamercolor{normal text}{fg=colornormaltext}
\begin{document}
\begin{frame}
\begin{equation}
\begin{tikzcd}[ampersand replacement=&]
Sh_ W &[-3ex] &[-3ex] Sh_ V\
& Msbl
\arrow[""{name=0, anchor=center, inner sep=0}, "{f_}"', shift right=2, from=1-1, to=1-3]
\arrow[""{name=1, anchor=center, inner sep=0}, "{f^*}"', shift right=2, from=1-3, to=1-1]
\arrow["{O_W}", from=2-2, to=1-1]
\arrow[""{name=2, anchor=center, inner sep=0}, "{O_V}"', from=2-2, to=1-3]
\arrow["\dashv"{anchor=center, rotate=-90}, draw=none, from=1, to=0]
\arrow[shift left=2, Rightarrow, "\hat f", from=2, to=1-1]
\end{tikzcd}
\end{equation*}
\end{frame}
\end{document}
The incriminated arrow is the very last one in the code:
\arrow[shift left=2, Rightarrow, "\hat f", from=2, to=1-1]







\Rightarrowpointing where? – egreg Mar 11 '21 at 14:09