Color » History » Revision 4
Revision 3 (Per Amundsen, 06/12/2016 07:22 AM) → Revision 4/9 (Per Amundsen, 11/09/2018 09:45 PM)
_Added in 1.9.4_
*/color <name> <N|RGB>*
*/color <N> <RGB>*
*/color -lrs [N/scheme name]*
Allows you to change the color settings for items in the Colors dialog.
_See also [[$color]], [[$ocolor]]._
*Switches*
-b - Indicates the <N> after <name> is a rgb value. (AdiIRC only)
-l - Reloads colors from the config file.
-r - Resets the color to default value.
-s - TODO
*Parameters*
<N> - The Nth color to change, in AdiIRC this can be from 1 to 82.
<RGB> - New RGB values to be used.
<name> - Name or the color to change.
[Scheme name] - TODO
*Example*
<pre>
; Print a text using color 3
/echo 3 -ag Hello world
; Change color 3 to $rgb value 1905919 (notice the 'Hello world' color)
//color 3 $rgb(255, 20, 29)
; Reset color 3 to default value (notice the 'Hello world' color)
/color -r 3
; Change the join color to another color index.
/color join 3
; Change the join color to a rgb value.
//color join $rgb(255, 20, 29)
; Reset join color
/color -r join
</pre>