moduletag2.js 213 B

123456789
  1. /** @module color/mixer */
  2. module.exports = {
  3. /** Blend two colors together. */
  4. blend: function(color1, color2) { }
  5. }
  6. /** Darken a color by the given shade. */
  7. exports.darken = function(color, shade) { }