LINK color in Footer link
I've a problem with links in footer.
They are "colored" with rgb(124, 196, 231) but in my css I've color: #7cc4e7
If I check my css:
.ui-bar-a a.ui-link {
color: #7cc4e7 /*{a-bar-link-color}*/;
font-weight: bold;
}
If I check, in firefox, with firebug:
.ui-bar-a a.ui-link {
color: rgb(124, 196, 231);
font-weight: bold;
}
I searched in file for "124, 196, 231" in every css, but there's no clue about this color.
How's possible that it's showd with this color, and not with my color?
I also tried to force
data-theme="a"
data-theme="b"
data-theme="c"
data-theme="d"
where I configured differents colors, but still showed the rgb(124, 196, 231)
Any help?