Skip to main content

An enhanced Material Design stylesheet library for Qt (PyQt5, PyQt6, PySide2 and PySide6)

Project description

QMaterialise

QMaterialise is a modern Material Design stylesheet library for Qt applications written in Python. It is a ground‑up redesign of the qt‑material library by UN‑GCPDS, and we’re grateful for their original work. It draws inspiration from the Material Design specification and provides a clean and flexible implementation with:

  • Cross‑binding support – works with PyQt5, PyQt6, PySide2 and PySide6. At runtime the library automatically selects whichever binding is installed.
  • Comprehensive colour palettes – more Material Design colours are built in, including all of the primary swatches and their tints/shades.
  • Easy customisation – generate new styles from a few colours or load predefined styles shipped with the package. Styles are expressed as JSON dictionaries, making them easy to edit and share.
  • Dynamic theming – apply a new style to a running application without restarting it and switch between dark and light variants on the fly.
  • Runtime extras – override button colours, fonts, density scale and more by passing an extra dictionary to the inject_style function.
  • Export to QSS – write the generated stylesheet to a .qss file so it can be used directly in Qt Designer or C++ projects.

Material Design is a design system created by Google. QMaterialise provides a coherent set of colours and styles that conform to the specification while still giving you freedom to customise the look and feel of your application.

Installation

QMaterialise can be installed from PyPI. Depending on which Qt binding you intend to use you should also install the corresponding optional dependency:

# Install the core library and PySide6 (for example)
pip install "qmaterialise[pyside6]"

# Or install a different binding
pip install "qmaterialise[pyqt6]"

If you prefer to install from source simply clone this repository and invoke pip:

git clone https://github.com/your-user/qmaterialise.git
cd qmaterialise
pip install -e .[pyside6]  # replace with the binding of your choice

Quick start

The simplest way to style your application is to call inject_style() after you create your QApplication instance. This function accepts either the name of one of the built‑in styles or a custom Style object:

import sys
from q_materialise import inject_style, list_styles

try:
    # Try to import your preferred Qt binding
    from PySide6 import QtWidgets
except ImportError:
    from q_materialise.binding import QtWidgets  # internal helper

app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QMainWindow()

# Print the available built‑in styles
print(list_styles())

inject_style(app, style="indigo_twilight")
window.setWindowTitle("QMaterialise Example")
window.resize(480, 320)
window.show()
sys.exit(app.exec())

To customise individual aspects of the style, pass an extra dictionary. For example, to change the colours of different classes of QPushButton:

extra = {
    "danger": "#dc3545",
    "warning": "#ffc107",
    "success": "#198754",
    "info": "#0d6efd",
    "font_family": "Roboto",
    "font_size": "14px",
    "density_scale": 0,
}

inject_style(app, style="sapphire_day", extra=extra)

Button classes are attached by setting the class property on the widget:

push_button.setProperty("class", "danger")

Generating custom styles

To create a completely new style programmatically, use the generate_style() function. Pass your primary and secondary base colours and indicate whether the style should be dark or light. The function returns a Style instance with sensible tints and shades computed for you:

from q_materialise import generate_style, inject_style

my_style = generate_style(
    name="my_custom_dark",
    primary="#9c27b0",  # purple
    secondary="#ffeb3b",  # yellow
    is_dark=True,
)

inject_style(app, style=my_style)

Styles are plain data classes and can be serialised to and from JSON. For example:

import json

json_string = my_style.to_json(indent=4)
with open("my_style.json", "w", encoding="utf-8") as f:
    f.write(json_string)

# Later
from q_materialise import Style

with open("my_style.json", encoding="utf-8") as f:
    other_style = Style.from_json(f.read())

Listing styles

Built‑in styles are stored as JSON files in the package. You can list them at runtime with list_styles() and load one with get_style(name):

from q_materialise import list_styles, get_style

print(list_styles())
indigo_style = get_style("indigo_twilight")

Exporting a stylesheet

If you want to use the generated stylesheet outside of Python you can export it to a .qss file. The export_style() function takes the name of the style, the destination file and optional extras:

from q_materialise import export_style

export_style(style="indigo_twilight", qss_path="indigo_twilight.qss")

Documentation

Full documentation is published online and can be accessed at:

https://lewis-morris.github.io/qmaterialise

Contributing

Contributions are welcome! If you find a bug or have an idea for a feature, please open an issue or submit a pull request. Feel free to add new styles by placing a JSON file in the src/q_materialise/styles directory.

Note: q-materialise is as a redesign of the qt‑material project— thanks to the UN‑GCPDS team.

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

q_materialise-0.1.1.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

q_materialise-0.1.1-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file q_materialise-0.1.1.tar.gz.

File metadata

  • Download URL: q_materialise-0.1.1.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for q_materialise-0.1.1.tar.gz
Algorithm Hash digest
SHA256 54c42a32fc4f72a610ec425d18004572c5f568c44b6793ceeaa3895d6f9e4578
MD5 8392954c4406e8fbafec1b4cd88a4f61
BLAKE2b-256 c6bd7bf609c29a651a4f07a868790d6d876e8f930369de524719afabd1d42091

See more details on using hashes here.

File details

Details for the file q_materialise-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: q_materialise-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for q_materialise-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 64bd8956e7708cedae2baa128ed06e6ceac1c4f4a0eea62c349158555c1c111c
MD5 66ad7efe0155cdff798a19c88f06c1e4
BLAKE2b-256 44ff22cdc4859546070c98c500bc5b207f51a680c40c7a3405dd9e63addb573d

See more details on using hashes here.

Supported by

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