@slack/web-api / RichTextColor
Interface: RichTextColor
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:614
Description
A hex color element for use in a rich text message.
Extends
Properties
style?
optional style: object;
Defined in: node_modules/@slack/types/dist/block-kit/extensions.d.ts:75
bold?
optional bold: boolean;
Description
When true
, boldens the text in this element. Defaults to false
.
code?
optional code: boolean;
Description
When true
, the text is preformatted in an inline code style. Defaults to `false.
italic?
optional italic: boolean;
Description
When true
, italicizes the text in this element. Defaults to false
.
strike?
optional strike: boolean;
Description
When true
, strikes through the text in this element. Defaults to false
.
Description
A limited style object for styling rich text text
elements.
Inherited from
type
type: "color";
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:618
Description
The type of element. In this case type
is always color
.
value
value: string;
Defined in: node_modules/@slack/types/dist/block-kit/block-elements.d.ts:622
Description
The hex value for the color.