UNPKG

file2html-ooxml

Version:
11 lines (10 loc) 298 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function textColorStyle(style, attributes) { var color = attributes['w:val']; if (color && color !== 'auto') { style += 'color:#' + color + ';'; } return style; } exports.default = textColorStyle;