/**
 * Color data module.
 * @module fur-colors/lib/colors
 */
'use strict'

{{#each themes}}
/**
 * @function {{theme}}
 * @returns {string[]} - data for theme "{{theme}}".
 */
exports.{{theme}} = function {{theme}} () {
  return [{{{colors}}}]
}

{{/each}}

