Hi,

I'm trying to use different theme in my application, say, normal.qss and dark.qss

So I want to switch color of QwtPlotMarker, and QwtLegend items, tried different way, but didnt worked.
(say, dark.qss)
Qt Code:
  1. {
  2. border: 1px solid gray;
  3. background: white;
  4. }
  5.  
  6. {
  7. color: white;
  8. }
  9.  
  10. QwtPlotMarker:plotItem
  11. {
  12. color: white;
  13. }
To copy to clipboard, switch view to plain text mode 

Thanks