I think it's very clever, but how do I over-ride this as I'd like them a little darker
I think I've found what I need in dynamic-css.php which I've reporduced below - but what do I do with it ?
if(avia_get_option('boxed') == 'boxed')
{
$meta_color = avia_backend_merge_colors($body_font, $boxed_bg); // creates a new color from the background color and the default font color (results in a lighter color)
$heading_color = avia_backend_merge_colors($body_font, avia_backend_counter_color($boxed_bg)); //calculates the inverse of the background color, then again creates a new color for headins (results in a stronger color)
$content_bg = $boxed_bg;
}
else
{
$meta_color = avia_backend_merge_colors($body_font, $body_bg); // creates a new color from the background color and the default font color (results in a lighter color)
$heading_color = avia_backend_merge_colors($body_font, avia_backend_counter_color($body_bg)); //calculates the inverse of the background color, then again creates a new color for headins (results in a stronger color)
$content_bg = $body_bg;














