The Google Apps Script guide below implies that header text can be colored.
When I try using some HTML tags (such as <span color>), any of them actually worked.
Which tag should I use to implement this?

UPDATE
The following is my code to implement the section header. The <b> tag pair works, but any attempts I made to apply color failed.
CardService.newCardBuilder()
.addSection(
CardService.newCardSection()
.setHeader('<b>header text</b>')
)
.build();