Files
tiptap/docs/api/extensions/color.md
Philipp Kühn 2f15a11572 remove gridsome
2021-09-16 14:41:25 +02:00

1.5 KiB

Color

Version Downloads

This extension enables you to set the font color in the editor. It uses the TextStyle mark, which renders a <span> tag (and only that). The font color is applied as inline style then, for example <span style="color: #958DF1">.

Installation

# with npm
npm install @tiptap/extension-text-style @tiptap/extension-color

# with Yarn
yarn add @tiptap/extension-text-style @tiptap/extension-color

This extension requires the TextStyle mark.

Settings

Option Type Default Description
types Array ['textStyle'] A list of marks to which the font family attribute should be applied to.

Commands

Command Parameters Description
color color Applies the given font color as inline style

Source code

packages/extension-color/

Usage