I just wanted to add comment to Merlijn's answers, but since I am still a noob, here is the answer.
I have a problem with tcolorbox package when using IEEE Access style document.
Merlijn' answer does the job, but in my case, it gives wrong color: red and almost black instead of blue and grey.
So in my case, I put this right after the conflicting (tcolorbox) package:
\definecolor{accessblue}{cmyk}{1, 0.3, 0, 0.2}
\definecolor{greycolor}{cmyk}{0,0,0,.8}
For completeness, these are what I do to remove errors and all warning:
- Put this around the IEEE Access document class declaration:
\let\TeXyear\year
\documentclass{ieeeaccess}
\let\setyear\year
\let\year\TeXyear
- Right after
usepackage{tcolorbox}, add this:
\definecolor{accessblue}{cmyk}{1, 0.3, 0, 0.2}
\definecolor{greycolor}{cmyk}{0,0,0,.8}
That's all.
(Note that I do not need to add
\NewSpotColorSpace{PANTONE}
\AddSpotColor{PANTONE} {PANTONE3015C} {PANTONE\SpotSpace 3015\SpotSpace C} {1 0.3 0 0.2}
\SetPageColorSpace{PANTONE}
)
\yearin a way that is incompatible with TikZ. – Torbjørn T. Jul 13 '18 at 15:05