ckeditor_font-8.x-1.x-dev/js/ckeditor5_plugins/ckeditor5-font/src/fontbackgroundcolor/fontbackgroundcolorcommand.js
js/ckeditor5_plugins/ckeditor5-font/src/fontbackgroundcolor/fontbackgroundcolorcommand.js
/**
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
import FontCommand from '../fontcommand.js';
import { FONT_BACKGROUND_COLOR } from '../utils.js';
/**
* The font background color command. It is used by
* {@link module:font/fontbackgroundcolor/fontbackgroundcolorediting~FontBackgroundColorEditing}
* to apply the font background color.
*
* ```ts
* editor.execute( 'fontBackgroundColor', { value: 'rgb(250, 20, 20)' } );
* ```
*
* **Note**: Executing the command with the `null` value removes the attribute from the model.
*/
export default class FontBackgroundColorCommand extends FontCommand {
/**
* @inheritDoc
*/
constructor(editor) {
super(editor, FONT_BACKGROUND_COLOR);
}
}
