themes-wordpress/balasana/inc/wpcom.php
Allan Cole aa88b381f4
Balasana: Change background-color color name to hex
- Corrects default highlander comments color. 

Fixes: #2309
2020-08-03 12:38:29 -04:00

21 lines
663 B
PHP

<?
/**
* Adds support for wp.com-specific theme functions.
*
* @global array $themecolors
*/
function balasana_wpcom_setup() {
global $themecolors;
// Set theme colors for third party services.
if ( ! isset( $themecolors ) ) {
$themecolors = array(
'bg' => 'FFFFFF', // $config-global--color-background-default
'border' => 'D0D0D0', // $config-global--color-border-default
'text' => '303030', // $config-global--color-foreground-default
'link' => '19744C', // $config-global--color-primary-default
'url' => '19744C', // $config-global--color-primary-default
);
}
}
add_action( 'after_setup_theme', 'balasana_wpcom_setup' );