blob: 162f4b7cc278eb301cccd808bc2e38f299f41ad6 [file] [log] [blame]
'use strict';
var parseColor = require('../parsers').parseColor;
module.exports.definition = {
set: function (v) {
this._setProperty('lighting-color', parseColor(v));
},
get: function () {
return this.getPropertyValue('lighting-color');
},
enumerable: true,
configurable: true
};