I'm trying to set up a block with my own colors, but the transition from the block title to the body just looks horrible.

I already had a look at remove Beamer block transition, the code obviously works, the colors still look different even if I put my color in the code for the transition bar. This doesn't do anything if included in my code either...
Any idea how to fix the transition (favourite) or get rid of it at all?
\documentclass[11pt]{beamer}
\usetheme{Berkeley}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
%Define colors
\definecolor{color1}{cmyk}{0.75 0 0.4 0}
\definecolor{color2}{cmyk}{0.75 0 0.4 0.1}
\definecolor{color3}{cmyk}{0.75 0 0.4 0.75}
%Change block colors
\setbeamercolor{block title}{bg=color2, fg=white}
\setbeamercolor{block body}{bg=color1, fg=color3}
%Change block design
\useinnertheme[shadow]{rounded}
\begin{document}
\begin{frame}
\begin{block}{Some title}
$E=mc^2$
\end{block}
\end{frame}
\end{document}
I'm using the Torino theme but the outcome looks just the same.
Cheers
Markus


rgbmodel:\definecolor{color1}{rgb:cmyk}{0.75 0 0.4 0}– Paul Gaborit Mar 25 '16 at 07:41xcolorpackage and your PDF viewer convert cmyk colors to rgb colors via different methods... – Paul Gaborit Mar 25 '16 at 12:43beameruses rgb colors. Conversion between cmyk and rgb is device dependent and beamer uses perfect devices. You can pick the rgb color displays by your PDF viewer for each of your cmyk colors to get the same conversion as your PDF viewer. – Paul Gaborit Mar 25 '16 at 15:20rgbwith gimp, the transition is working. Many thanks! – Markus Mar 26 '16 at 10:23