Hi wagmare,
Are you want to change all text color in QComboBox or only selected item?
I use this command :
Qt Code:
  1. comboBox->setStyleSheet(QString::fromUtf8("color: rgb(99, 146, 255);"));
To copy to clipboard, switch view to plain text mode 
this command will change all text color in QComboBox.

Best regards,

Toto