UPDATE
I could manage to take a "decent" photo of what I'm refering to with the LED's:

Is that caused by the printer? This is how the LED's are drawn:
\documentclass[a4paper,12pt]{article}
\usepackage[a4paper, margin=2cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw[color=blue] (0,0) -- (2,0)node[fulllediodeshape,scale=0.7,color=black](q0){};
\end{circuitikz}
\end{document}
ORIGINAL
I'm printing on paper a circuit that has multiple elements with color, and some of them seem to appear with two kind of colors one darker than the other. Here for example you see a node (circ node) that has like an outer ring of darker color than the center:
Is this caused by the printer?


graycolor space (that uses only the black ink), and the graphic (which has colored wires) is printed incmykcolor space and the latter uses cyan, magenta, yellow and black ink to produce the black color. This need a confirmation, but you can read the rich black Wikipedia article about this. Perhaps addcmyk,color-profileandpdftags in the question for more attention. Also read this: https://tex.stackexchange.com/q/75451/132405 – quark67 Jan 08 '20 at 19:19\usepackage[cmyk]{xcolor}and\definecolor{myblack}{cmyk}{1 1 1 1}in your preamble, before\usepackage[]{circuitikz}and draw your LED with themyblackcolor instead ofblack? – quark67 Jan 08 '20 at 19:29\useackage[rgb]{xcolor}or (as @quark67 suggested)\usepackage[cmyk]{xcolor}. In theory you shouldn't need to redefine your black colour in either case, but you never know. – David Purton Jan 08 '20 at 23:55