I know, that when you create a PDF, you can easily have some elements as RGB and some as CMYK. But is it also possible, that the same element (e.g. a background) has both definitions in a PDF and depending on the driver (screen or printer) the RGB or CMYK definition is used.
So I know, that when we use xcolor, you can say
\usepackage[rgb]{xcolor}
or
\usepackage[cmyk]{xcolor}
but this definitely changes which color scope is used. So when we defined
\definecolor{Black}{RGB/CMYK}{0,0,0/0.0,0.0,0.0,1.0}
either one or the other is used. But can also both be used in the PDF depending on the purpose?

\definecolor{Black}{RGB/CMYK}{0,0,0/0.0,0.0,0.0,1.0}is there a way to preserve both color definitions for the same element and let the driver displaying/printing the PDF decide? – TobiBS Apr 07 '20 at 19:48