aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cssstyle/lib/properties/textOverlineColor.js
blob: c6adf7ce60e00a68ae714bd8de487e99c37b651f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

var parseColor = require('../parsers').parseColor;

module.exports.definition = {
  set: function(v) {
    this._setProperty('text-overline-color', parseColor(v));
  },
  get: function() {
    return this.getPropertyValue('text-overline-color');
  },
  enumerable: true,
  configurable: true,
};