x/rgb
Convert colors to RGB.
import * as RGB from 'https://deno.land/x/rgb/mod.ts';
const hex = '#0000FF'; // Blue const rgb = RGB.fromHex(hex); console.log(rgb); // [ 0 , 0 , 255 ]
const hsl = [ 0 , 100 , 50 ]; // Red const rgb = RGB.fromHSL(hsl); console.log(rgb); // [ 255 , 0 , 0 ]