Skip to main content

Flat dark theme for PySide and PyQt.

Project description

PyQtDarkTheme

PyQtDarkTheme applies a flat dark theme to QtWidgets application(PySide and PyQt). There's a light theme too. Color and style balanced from a dark theme for easy viewing in daylight.

Check out the complete documentation.

Project status
PyPI Latest Release Python Versions Qt Versions License Code style: black

Tests
tests pre-commit.ci status codecov Total alerts Documentation Status

Features

  • A flat dark and light theme
  • Support PySide and PyQt
  • Support PyInstaller
  • Resolve the style differences between Qt versions
  • QPalette of dark and light theme

Themes

Dark Theme

widget_gallery_dark_theme

Light Theme

widget_gallery_light_them

Requirements

  • Python 3.7+
  • Qt 5.11+
  • PySide6, PyQt6, PyQt5 or PySide2

Installation Method

  • Last released version

    pip install pyqtdarktheme
    
  • Latest development version

    pip install git+https://github.com/5yutan5/PyQtDarkTheme.git@main
    

Usage

import sys

from PySide6.QtWidgets import QApplication, QMainWindow, QPushButton

import qdarktheme

app = QApplication(sys.argv)
main_win = QMainWindow()
push_button = QPushButton("PyQtDarkTheme!!")
main_win.setCentralWidget(push_button)

# Apply dark theme to Qt application
app.setStyleSheet(qdarktheme.load_stylesheet())

main_win.show()

app.exec()

⚠ The image quality may be lower on Qt5(PyQt5, PySide2) due to the use of svg. You can add the following attribute to improve the quality of images.

app.setAttribute(Qt.ApplicationAttribute.AA_UseHighDpiPixmaps)

Light theme

app.setStyleSheet(qdarktheme.load_stylesheet("light"))

Dark and Light palette

You can get color of dark and light theme by loading QPalette. To load palette, run:

palette = qdarktheme.load_palette()
# or
palette = qdarktheme.load_palette("light")

For example, you can apply a link color to your application.

import sys

from PyQt5.QtGui import QPalette
from PyQt5.QtWidgets import QApplication

import qdarktheme

app = QApplication(sys.argv)
dark_palette = qdarktheme.load_palette()
palette = app.palette()
palette.setColor(QPalette.ColorRole.Link, dark_palette.link().color())
app.setPalette(palette)

Further information can be found in our docs:

Customizing colors

You can customize theme color.

# Customize accent color.
stylesheet = qdarktheme.load_stylesheet(custom_colors={"primary": "#D0BCFF"})

Further color id can be found in our theme color docs:

Sharp frame

You can change the corner style.

# Default is "rounded".
stylesheet = qdarktheme.load_stylesheet(corner_shape="sharp")

Example

To check all Qt widgets, run:

python -m qdarktheme.widget_gallery

License

The svg files for the PyQtDarkTheme are derived Material design icons(Apache License Version 2.0). Qt stylesheets are originally fork of QDarkStyleSheet(MIT License). Other files are covered by PyQtDarkTheme's MIT license.

Contributing

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. You can get started by reading this:

Change log

See Releases.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyqtdarktheme-1.2.0.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

pyqtdarktheme-1.2.0-py3-none-any.whl (41.4 kB view details)

Uploaded Python 3

File details

Details for the file pyqtdarktheme-1.2.0.tar.gz.

File metadata

  • Download URL: pyqtdarktheme-1.2.0.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.11.0 Linux/5.15.0-1022-azure

File hashes

Hashes for pyqtdarktheme-1.2.0.tar.gz
Algorithm Hash digest
SHA256 32ac135add4fe9dbf4b715f85d9711cfc048347712d9355b565e48dd0fd2b93c
MD5 4350c1022c803accf5188038e973e716
BLAKE2b-256 45c42c94a482c22ef7648d1d494aaed6926c1fbf9a0a7db39af52810326ab6a5

See more details on using hashes here.

File details

Details for the file pyqtdarktheme-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: pyqtdarktheme-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 41.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.11.0 Linux/5.15.0-1022-azure

File hashes

Hashes for pyqtdarktheme-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8524d005bb7266effe7caf773d01fd8132c0e34c8d9e83034d032217a9d252f3
MD5 a0f1e8e26eda95bccb1e8d821c4e7646
BLAKE2b-256 19971eaeb56df3c91ae62018608741890fcf4b605b843334782c44491bcae407

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page