Colour » History » Version 1
Per Amundsen, 08/17/2014 11:01 AM
| 1 | 1 | Per Amundsen | _Added in 1.9.4_ |
|---|---|---|---|
| 2 | |||
| 3 | */colour <name> <N|RGB>* |
||
| 4 | */colour <N> <RGB>* |
||
| 5 | */colour -lrs [N/scheme name]* |
||
| 6 | |||
| 7 | Allows you to change the color settings for items in the Colors dialog. |
||
| 8 | |||
| 9 | *Switches* |
||
| 10 | |||
| 11 | -b - Indicates the <N> after <name> is a rgb value. (AdiIRC only) |
||
| 12 | -l - TODO |
||
| 13 | -r - Resets the color to default value. |
||
| 14 | -s - TODO |
||
| 15 | |||
| 16 | *Parameters* |
||
| 17 | |||
| 18 | <N> - The N'th color to change, in AdiIRC this can be from 1 to 82. |
||
| 19 | <RGB> - New RGB values to be used. |
||
| 20 | <name> - Name or the color to change. |
||
| 21 | [Scheme name] - TODO |
||
| 22 | |||
| 23 | *Example* |
||
| 24 | |||
| 25 | <pre> |
||
| 26 | ;Print a text using color 3 |
||
| 27 | /echo 3 -ag Hello world |
||
| 28 | |||
| 29 | ;Change color 3 to $rgb value 1905919 (notice the "Hello world" color) |
||
| 30 | //colour 3 $rgb(255, 20, 29) |
||
| 31 | |||
| 32 | ;Reset color 3 to default value (notice the "Hello world" color) |
||
| 33 | /colour -r 3 |
||
| 34 | |||
| 35 | ;Change the join color to another color index. |
||
| 36 | /colour join 3 |
||
| 37 | |||
| 38 | ;Change the join color to a rgb value. |
||
| 39 | //colour join $rgb(255, 20, 29) |
||
| 40 | |||
| 41 | ;Reset join color |
||
| 42 | /colour -r join |
||
| 43 | </pre> |