8b812110d35cfe12416168b176430e494de97fcdaba4b6d3d4d376ebca0bb53d9472883177c9912f5fb4c72a913db89faa687dd717812364f315560ce66daa 382 B

12345678910
  1. import { ClassAttributor, Scope } from 'parchment';
  2. import { ColorAttributor } from './color.js';
  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 };
  10. //# sourceMappingURL=background.js.map