Yang we tried with this style (the one you tried) and the content rendered as below:
{
"body": {
"contentType": "html",
"content": "<span style=\"color: #5d9e52; font-weight: bold;\">This is a test</span>"
}
}
And on changing the style as below, the content rendered with coloured text but without bold.
{
"body": {
"contentType": "html",
"content": "<span style=\"color: #5d9e52; font-weight: bold;\">This is a test</span>"
}
}
Thereafter on further modification, we got the content rendering as desired i.e. coloured bold text.
{
"body": {
"contentType": "html",
"content": "<span style=\"color: green; font-weight: bold;\">This is a test</span>"
}
}