Navigation: Development > Function Reference > Helpers > Utility >
Convert a RGB color code to Hexadecimal.
App::Utility()->RGBToHex(R,G,B);
Parameter
Description
R
Red
G
Green
B
Blue
See bellow example:
$rgb = App::Utility()->RGBToHex(170,187,204); pr($rgb); /* Return #aabbcc */