YourBoyRory / PyQt-Adwaita

Adwaita QSS style sheet for PyQt

Repository from Github https://github.comYourBoyRory/PyQt-AdwaitaRepository from Github https://github.comYourBoyRory/PyQt-Adwaita

PyQt-Adwaita

Simple style sheet to make PyQt look like Sorta like Adwaita
make sure to add setObjectName("Frame") to make sure the window color is correct

class MyFrame(QWidget):
  def __init__(self):
    self.setObjectName("Frame")
    with open("/path/to/Adwaita-Dark.qss", "r") as f:
      self.setStyleSheet(f.read())