I have text for a QRadioButton like so:

feet (meters)

It should look pretty much exactly like this, except I want "meters" to be a little lighter than black, i.e. 60,60,60.

If this were a QLabel, I'd do:

Qt Code:
  1. QString myString("feet (<a style=\"color:#606060\">meters</a>)");
  2. myQLabel->setText(myString);
To copy to clipboard, switch view to plain text mode 

But it's not a QLabel. Is there a simple fix?