Project

General

Profile

$rgb » History » Revision 2

Revision 1 (Per Amundsen, 08/05/2015 10:59 PM) → Revision 2/4 (Per Amundsen, 12/13/2019 09:07 PM)

_Added in 1.9.0_ 

 *$rgb(N,N,N|N|name)* 

 If N,N,N is defined, returns an RGB decimal color value. 
 if N is defined, returns a RRR,GGG,BBB value. 
 if name is defined, returns a system color RGB decimal value. 

 *Parameters* 

 N,N,N - An RRR,GGG,BBB value. 
 N - A RGB decimal value. 
 name - A system color name: face, shadow, hilight, 3dlight, frame, or text. 

 *Switches* 

 .hex - Returns the value in hex format. *(AdiIRC only)* (AdiIRC only) 

 *Example* 

 <pre> 
 ; Print the RGB decimal value from 123,123,123 
 //echo -ag RGB value is $rgb(123,123,123) 

 ; Print the RRR,GGG,BBB value from 8092539 
 //echo -ag RGB decimal value is $rgb(8092539) 
 </pre>