Not able to set font color of ToolTipHost in fluent-ui, I tried below code but it is not working.
<TooltipHost content="Tooltip Content"
calloutProps: {
styles: {
calloutMain: { background: 'red',color:'white' },
},
},
/>
Use
tooltipProps
andstyles
inside it:Full working example Codepen.