An open API service indexing awesome lists of open source software.

https://github.com/mstuttgart/qdarkgraystyle

A dark gray style sheet for PyQt5 application
https://github.com/mstuttgart/qdarkgraystyle

pyqt4 pyqt5 pyside python theme

Last synced: 3 months ago
JSON representation

A dark gray style sheet for PyQt5 application

Awesome Lists containing this project

README

        









Darkgrey Stylesheet for PyQt5


GitHub Workflow Status


Downloads


Ratings


Version


About |
Install |
How to Use |
Contribute |
Credits

# About

A dark gray stylesheet for PyQt5 applications. This theme is a gray variation of [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet) theme.

Screenshots (Click to expand!)

![screen-03](https://github.com/mstuttgart/qdarkgraystyle/assets/8174740/f07d5171-beb6-473b-adac-3808b800b587)
![screen-02](https://github.com/mstuttgart/qdarkgraystyle/assets/8174740/8b7ad9d9-5c83-4f3f-b49f-2e905a12486b)
![screen-01](https://github.com/mstuttgart/qdarkgraystyle/assets/8174740/1b891cb7-b82b-476f-b84c-559108436784)

# Install

Install **qdarkgraystyle** package using using *pip*

> pip install qdarkgraystyle

This package work on **PyQt5 >=5.6**.

# How to Use

Here is an example using PyQt5.

```python
import sys
import qdarkgraystyle
from PyQt5 import QtWidgets

# create the application and the main window
app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QMainWindow()

# setup stylesheet
app.setStyleSheet(qdarkgraystyle.load_stylesheet())

# run
window.show()
app.exec_()
```

There is an example included in the *example* folder.

> python3 setup.py test

You can run the script without installing `qdarkgraystyle`. You only need to have
PyQt5 installed on your system.

# Contribute

See this *guideline* [here](https://github.com/mstuttgart/qdarkgraystyle/blob/develop/CONTRIBUTING.md).

# Credits
This package is totally based on [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet) theme created by [Colin Duquesnoy](https://github.com/ColinDuquesnoy).

Copyright (C) 2017-2024 by Michell Stuttgart