Interface: ITextOutline
The text outline for low-contrast texts in the Rich text editor. This feature is turned off by default.
Remarks
You can use these settings in IRichTextDialogConfig.
Example
configuration = {
widgets: {
RichTextDialog: {
bgColor: "black",
textOutline: {
enabled: true,
color: "rgba(255, 0, 0, 0.5)",
},
},
},
};
Properties
enabled?
optionalenabled?:boolean
Enables text outline. The text is outlined in the Rich text dialog if the difference between the text and background colors is below the hue or the brightness threshold. The default value is false.
hueThreshold?
optionalhueThreshold?:number
The hue threshold. The default value is 74.
brightnessThreshold?
optionalbrightnessThreshold?:number
The brightness threshold. The default value is 5.
color?
optionalcolor?:string
The outline color. The default value is "rgba(0, 0, 0, 0.2)".