I confirmed Jeff solution works!!
Names Default To Here( 1 );
dt=current datatable();
dt<< Color By Column( :COL);
it=Color To RGB( Color Of( Row State( 1 ) ) );
show(it);
it = {0.164705882352941, 0.247058823529412, 1};
You just need to multiple 3 numbers by 255 to get RGB color values.
This forum rocks! Thanks for the quick replies!