I'd like to change the font of the mu-Symbol in siunitx so that it matches the mu-Symbol in the text mode unfortunately my code doesn't really work. I would be very grateful for any feedback you might be able to give me.
\documentclass[ngerman]{scrartcl}
\usepackage[english,ngerman]{babel}
\usepackage[utf8]{inputenc}
%Bitstream Chracter
\usepackage[scaled=.98,sups,lf]{XCharter}
\usepackage[libertine,bigdelims,vvarbb,scaled=1.03]{newtxmath}
%Define Greek Characters
\DeclareMathVersion{mathchartertext}
\SetSymbolFont{letters}{mathchartertext}{OML}{mdbch}{m}{n}
\newcommand{\gchar}[1]{\mathversion{mathchartertext}$#1$\mathversion{normal}}
\usepackage[per=slash,decimalsymbol=comma,loctolang={DE:ngerman}]{siunitx}
\sisetup{locale=DE,
math-micro={\muup}, %--> \gchar{\mu}
% math-ohm =\Omegaup,
% text-micro={\fontfamily{mdbch}\textmu},
% text-ohm ={\fontfamily{mdbch}\textohm},
list-final-separator = { \translate{und} },
range-phrase = { \translate{bis} },
detect-weight = true,
detect-inline-weight = math
%binary-units = true
}
\begin{document}
\gchar{\mu} \gchar{\ohm} \\
\SI{10}{\micro \ohm}
\end{document}
