mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2025-01-10 00:30:09 +00:00
Adding predefined oxford color
This commit is contained in:
parent
d2f6e3c88a
commit
1ffd7c7828
@ -14,26 +14,27 @@
|
|||||||
class Color extends \wcf\system\chat\commands\AbstractCommand {
|
class Color extends \wcf\system\chat\commands\AbstractCommand {
|
||||||
const ENABLE_SMILIES = \wcf\system\chat\commands\ICommand::SMILEY_OFF;
|
const ENABLE_SMILIES = \wcf\system\chat\commands\ICommand::SMILEY_OFF;
|
||||||
public static $colors = array(
|
public static $colors = array(
|
||||||
'red' => 0xFF0000,
|
'red' => 0xFF0000,
|
||||||
'blue' => 0x0000FF,
|
'blue' => 0x0000FF,
|
||||||
'green' => 0x00FF00,
|
'green' => 0x00FF00,
|
||||||
'yellow' => 0xFFFF00,
|
'yellow' => 0xFFFF00,
|
||||||
'black' => 0x000000,
|
'black' => 0x000000,
|
||||||
'white' => 0xFFFFFF,
|
'white' => 0xFFFFFF,
|
||||||
'orange' => 0xFFA500,
|
'orange' => 0xFFA500,
|
||||||
'purple' => 0xA020F0,
|
'purple' => 0xA020F0,
|
||||||
'weed' => 0xF5DEB3,
|
'weed' => 0xF5DEB3,
|
||||||
'pink' => 0xFFC0CB,
|
'pink' => 0xFFC0CB,
|
||||||
'grey' => 0xBEBEBE,
|
'grey' => 0xBEBEBE,
|
||||||
'khaki' => 0xF0E68C,
|
'khaki' => 0xF0E68C,
|
||||||
'lavender' => 0xE6E6FA,
|
'lavender' => 0xE6E6FA,
|
||||||
'maroon' => 0xB03060,
|
'maroon' => 0xB03060,
|
||||||
'gold' => 0xFFD700,
|
'gold' => 0xFFD700,
|
||||||
'navyblue' => 0x000080,
|
'navyblue' => 0x000080,
|
||||||
'royalblue' => 0x4169E1,
|
'royalblue' => 0x4169E1,
|
||||||
'aquamarine' => 0x7FFFD4,
|
'aquamarine' => 0x7FFFD4,
|
||||||
'cyan' => 0x00FFFF,
|
'cyan' => 0x00FFFF,
|
||||||
'magenta' => 0x00FFFF
|
'magenta' => 0x00FFFF,
|
||||||
|
'oxford' => 0xF02D // looks like green
|
||||||
);
|
);
|
||||||
|
|
||||||
public function __construct(\wcf\system\chat\commands\CommandHandler $commandHandler) {
|
public function __construct(\wcf\system\chat\commands\CommandHandler $commandHandler) {
|
||||||
|
Loading…
Reference in New Issue
Block a user