18 lines
265 B
PHP
18 lines
265 B
PHP
<?php
|
|
/**
|
|
* WordPress.com-specific functions and definitions
|
|
*
|
|
* @package _s
|
|
* @since _s 1.0
|
|
*/
|
|
|
|
/**
|
|
* Set a default theme color array for WP.com.
|
|
*
|
|
* @since _s 1.0
|
|
*/
|
|
$themecolors = array(
|
|
'bg' => 'ffffff',
|
|
'border' => 'eeeeee',
|
|
'text' => '444444',
|
|
);
|