Qlineedit Text Color [upd]
lineEdit->setStyleSheet( "QLineEdit color: gray; " "QLineEdit:hover color: black; " );
One limitation of the simple approach above is that it can inadvertently affect other states. For example, if the widget is disabled, you might want the text to be a lighter gray, not your custom active color. qlineedit text color
Even experienced Qt developers make mistakes when changing QLineEdit text color. Avoid these: setStyleSheet( "QLineEdit color: gray
layout.addWidget(lineEdit); window.show(); return app.exec(); " "QLineEdit:hover color: black
To handle this correctly, you should set the color for specific groups:
Facebook