technova76
Topbar:
The background color is defined in this file: https://piggybankaction.org/action/templates/ja_donate/css/themes/pink/template.css
Line 4999:
.ja-topbar {
background: #ffd638;
height: 32px;
line-height: 32px;
}
For text color, you can see in line 5021:
.ja-topbar .menu > li > a {
background: transparent;
border-left: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0;
color: rgba(255, 255, 255, 0.8);
padding: 0;
font-size: 11px;
padding-left: 16px;
padding-right: 16px;
}
With the social icons, it belongs to a custom HTML module in 'topbar-right' position, you can go to Backend > Extensions > Modules > filter by 'topbar-right' to find this module. Here is output of this module:
<ul class="social-list">
<li><a href="/index.php" title="facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="/index.php" title="twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="/index.php" title="vimeo"><i class="fa fa-vimeo" aria-hidden="true"></i></a></li>
<li><a href="/index.php" title="rss"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
</ul>