I love the Awaken theme. Thanks for creating it.
jayteapee, check out the Stylesheet (style.css)
You can find most, if not all, of the colors for those spaces. I wanted my Main Navigation menu to be blue, not coral, so I found this part of the CSS stylesheet and changed them.
Look for this:
————-
.main-navigation {
background: #232323;
font-family: “Ubuntu”, sans-serif;
font-size: 15px;
font-size: 1.5rem;
font-weight: 500;
text-transform: uppercase;
}
.main-navigation a {
color: #cacaca;
line-height: 20px;
padding: 15px 15px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.main-navigation a:hover {
background: #000099;
color: #f1f1f1;
}
.main-navigation ul ul {
background-color: #333333;
font-size: 14px;
font-size: 1.4rem;
font-weight: normal;
text-transform: none;
padding: 10px;
}
.main-navigation ul ul a {
color: #cccccc;
line-height: 20px;
padding: 10px 15px;
}
.main-navigation ul ul a:hover {
background: #222222;
}
.main-navigation li.current-menu-item {
background-color: #000033;
}
.main-navigation li.current-menu-item a {
color: #fff;
}
.main-navigation .menu-item-has-children > a:after,
.main-navigation .page_item_has_children > a:after {
color: #CACACA;
content: “\f054”;
display: inline-block;
float: right;
font-family: FontAwesome;
font-size: 10px;
margin: 1px 0 0 10px;