If you want to change the color of the text there are the following options depending on the style you use:
QPalette pal = w.palette();
pal.setColor(QPalette::Text, QColor("#00ff00"));
w.setPalette(pal)
Or
w.setStyleSheet("color: #00ff00");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…