aa88b381f4
- Corrects default highlander comments color. Fixes: #2309
21 lines
663 B
PHP
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' );
|