Just another color #0584C1.
What I’ve been reading is that you don’t have to include everything but just what is required. For instance in the body tag from parent theme:
body
{
font-size:12px;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
color:#333;
margin:0px;
padding:0px;
background:#f2f2f2
}
In Child Theme all I put into the style.css file was:
body {background:#ffffff;}
and this worked.