I want to replace all the green and orange headings and backgrounds with one uniform gold color.
To find out what elements were using the green and orange colors in the Freshy theme, I looked at the original stylesheet which is linked on the Appearance → Custom Design → CSS page when the theme is active.
Here is the original stylsheet for Freshy:
https://s-ssl.wordpress.com/wp-content/themes/pub/freshy/style.css?m=1354352861g&minify=false
#FF3C00 is the orange color, and #c9e45a is the green color. I copied all of the relevant CSS rules that use those colors:
::-moz-selection {
background:#FF3C00;
color:white;
}
::selection {
background:#FF3C00;
color:white;
}
#content a:hover {
border-bottom:1px dotted #FF3C00;
}
#sidebar a:hover,
#sidebar .current_page_item li a:hover,
#sidebar .current-cat li a:hover {
color:#FF3C00;
}
#sidebar .current_page_item a,
#sidebar .current-cat a {
color:#FF3C00;
}
.readmore {
color:#FF3C00;
}
#content .postmetadata a {
color : #FF3C00;
}
.description {
color:#c9e45a;
}
html > body #content .commentlist dd.author_comment {
background:#c9e45a !important;
}
#content .commentlist dd.author_comment {
background-color:#c9e45a !important;
}
#content .commentlist .author_comment .author,
#content .commentlist .author_comment .author a {
color:#c9e45a !important;
border-color:#c9e45a !important;
}
To change the colors, copy the CSS from above, switch out all the color codes with colors of your choice and paste the results into your Appearance → Custom Design → CSS page.