I use css style to distinguish tabs in Konsole application:
Qt Code:
  1. QTabBar::tab:selected {
  2. background: #4286f4
  3. }
  4. QTabBar::tab:hover {
  5. background: #dff442
  6. }
  7. QTabBar::tab:selected:hover {
  8. background: #fd4442
  9. }
  10. QTabBar::tab {
  11. background: #449449
  12. }
To copy to clipboard, switch view to plain text mode 
Everything works fine. The only problem I can not solve is foreground for a tab which has unread data. Does anyone know which selector to use? Default style conflicts with my color.