background.js 345 B

1234567891011
  1. import { ClassAttributor, Scope } from 'parchment';
  2. import { ColorAttributor } from './color';
  3. const BackgroundClass = new ClassAttributor('background', 'ql-bg', {
  4. scope: Scope.INLINE,
  5. });
  6. const BackgroundStyle = new ColorAttributor('background', 'background-color', {
  7. scope: Scope.INLINE,
  8. });
  9. export { BackgroundClass, BackgroundStyle };