Twenty-Fourteen

Header color – The CSS style responsible for header color is site-header.Default CSS Style at line 832 in style.css is

.site-header {
background-color: #000;
max-width: 1260px;
position: relative;
width: 100%;
z-index: 4;
}

Primary Sidebar Color – The color of primary sidebar is controlled by CSS property site:before. This CSS property is available at line 3583 in style.css

.site:before {
background-color: #000;
content: “”;
display: block;
height: 100%;
min-height: 100%;
position: absolute;
top: 0;
left: 0;
width: 182px;
z-index: 2;
}
Footer Color– The CSS property responsible for footer color is site-footer. This CSS style code is available at line 2692 in style.css

.sitefooter{
    backgroundcolor:#000;
    fontsize:12px;
    position:relative;
    zindex:3;
}