I just tried something straightforward (for me):
dummy = Import["http://pastebin.com/raw.php?i=g8D7NprC", "List"] & /@ col;
colors = dummy[[1]];
ToExpression@colors;
Graphics[{colors, Rectangle[{0, 0}]}]
Is it not possible to import color data from a file?

& /@ colat the end of the first line. – kglr Jun 03 '14 at 20:10colorsis a string; to change it to a color directive useToExpression@colors... – kglr Jun 03 '14 at 20:25color = << "http://pastebin.com/raw.php?i=GXbeGrcD". – Jun 03 '14 at 20:25colors = ToExpression@colors; orcolors=Toexpression[dummy[[1]]]... – kglr Jun 03 '14 at 21:27