UNPKG

353 BJavaScriptView Raw
1import Parchment from 'parchment';
2import { ColorAttributor } from './color';
3
4let BackgroundClass = new Parchment.Attributor.Class('background', 'ql-bg', {
5 scope: Parchment.Scope.INLINE
6});
7let BackgroundStyle = new ColorAttributor('background', 'background-color', {
8 scope: Parchment.Scope.INLINE
9});
10
11export { BackgroundClass, BackgroundStyle };