24 lines
591 B
PHP
24 lines
591 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* This file is a part of MyWebSQL package
|
||
|
|
* themes definition that are used by the application
|
||
|
|
*
|
||
|
|
* @file: config/themes.php
|
||
|
|
* @author Samnan ur Rehman
|
||
|
|
* @copyright (c) 2008-2014 Samnan ur Rehman
|
||
|
|
* @web http://mywebsql.net
|
||
|
|
* @license http://mywebsql.net/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
$THEMES = array(
|
||
|
|
'default' => "Default",
|
||
|
|
'light' => "Light (Gray)",
|
||
|
|
'dark' => "Dark",
|
||
|
|
'paper' => "Paper",
|
||
|
|
'human' => "Humanity (Ubuntu style)",
|
||
|
|
'bootstrap' => "Bootstrap",
|
||
|
|
'chocolate' => "Mint-Chocolate",
|
||
|
|
'pinky' => "Pinky"
|
||
|
|
);
|
||
|
|
|
||
|
|
?>
|