The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# IUP::ColorDlg example (used for screenshot - IUP.pod)
#
# Basic IUP::ColorDlg based dialog

use strict;
use warnings;

use IUP ':all';

my $dlg = IUP::ColorDlg->new( VALUE=>"128 0 255", ALPHA=>"142",
                              SHOWHEX=>"YES", SHOWCOLORTABLE=>"YES",
                              TITLE=>"IUP::ColorDlg Test" );

$dlg->Popup(IUP_CENTER, IUP_CENTER); 

IUP->Message("Chosen color", "Color:\t" . $dlg->VALUE) if $dlg->STATUS;