loaders ยป color

color() โ†’ string
colorItems() โ†’ array
colorList() โ†’ array

Accepts values formatted as #RRGGBB or #RGB (case insensitive), returns the value unchanged (or throws an error for invalid values).

enoactive: #F00
hover: #ff0000
focus: blue
javascriptconst document = eno.parse(input);

document.color('active');  // returns '#F00'
document.color('hover');  // returns '#ff0000'

document.color('focus');
  // throws an error: 'focus' must contain a color, for instance '#B6D918', '#fff' or '#01b'.