colors.js 108 B

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