diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-27 16:57:30 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-27 16:57:30 +0000 |
commit | 0c8d003d40fb947d2f79398137c039803e0a5966 (patch) | |
tree | d2c46ad1a0c804cf81be09d383fc290c95bc0c01 | |
parent | b9cf19a2ee4b483709f1e964860fcf9209c4ba05 (diff) |
Added config options for site's default design value
-rw-r--r-- | config.php.sample | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample index 57aa6a6c8..36e62f70f 100644 --- a/config.php.sample +++ b/config.php.sample @@ -18,6 +18,14 @@ $config['site']['server'] = 'localhost'; $config['site']['path'] = 'laconica'; // $config['site']['fancy'] = false; // $config['site']['theme'] = 'default'; +// Sets the site's default design values (match it with the values in the theme) +// $config['site']['design']['backgroundcolor'] = '#F0F2F5'; +// $config['site']['design']['contentcolor'] = '#FFFFFF'; +// $config['site']['design']['sidebarcolor'] = '#CEE1E9'; +// $config['site']['design']['textcolor'] = '#000000'; +// $config['site']['design']['linkcolor'] = '#002E6E'; +// $config['site']['design']['backgroundimage'] = null; +// $config['site']['design']['disposition'] = 1; // To enable the built-in mobile style sheet, defaults to false. // $config['site']['mobile'] = true; // For contact email, defaults to $_SERVER["SERVER_ADMIN"] |