What package do I use to call these three commands ?
\definecolor{pistonTigerOrange}{RGB}{249,104,21}
\definecolor{pistonTigerOrange1}{rgb}{0.98,41.0,0.08}
\definecolor{pistontiger}{rgb/cmyk}{0.98,41.0,0.08/0.0,0.58,92.0,0.02}
xcolor is required if you wish to use those commands in LaTeX.
\documentclass{standalone}
\usepackage{xcolor}
\begin{document}
\definecolor{pistonTigerOrange}{RGB}{249,104,21}
\definecolor{pistonTigerOrange1}{rgb}{0.98,41.0,0.08}
\definecolor{pistontiger}{rgb/cmyk}{0.98,41.0,0.08/0.0,0.58,92.0,0.02}
\color{pistontiger} pistontiger \color{pistonTigerOrange} pistonTigerOrange \color{pistonTigerOrange1} pistonTigerOrange1
\end{document}
For some uses, color is sufficient, but the syntax you're using requires xcolor.
In the preamble write:
\usepackage[dvipsnames]{xcolor}
if You want to use also the names of a lot of predefined colors.
Or simply
\usepackage{xcolor}
if You want only to use Yours defined colors (and others predefined without the option dvipsnames).
In any case look here.
@cfr From the link above we can read:
The package allows you to use the names of 19 base colors (black, white, blue, green, yellow, red etc.); these names are always available. Besides, the package has some options to get more predefined colors, which should be added globally. dvipsnames allows you to access more than 60 colors, and svgnames allows access to about 150 colors. If you need more color names, then you may also want to look at the x11names option that offers more than 300 colors.
dvipsnames in particular? There's nothing wrong with it, but it's only one of several possible options of this kind.
– cfr
Oct 06 '23 at 03:29
\RequirePackage{xcolor}, are dvipsnames, svgnames, x11names not loaded, not made available ? Some have mentioned that the names take quite some memory - is this so ?
– Veak
Oct 06 '23 at 11:38
\RequirePackage[dvipsnames,svgnames,x11names,rgb,table]{xcolor} or whatever you want.
– cfr
Oct 06 '23 at 16:37
\usepackage{tikz}or\usepackage{forest}are certainly not obvious.) – cfr Oct 06 '23 at 03:32