colors.js 101 Bytes EditWeb IDE 1 2 3 4 5 export default function(s) { return s.match(/.{6}/g).map(function(x) { return "#" + x; }); }