mirror of
https://github.com/UN-GCPDS/qt-material.git
synced 2025-01-13 16:42:56 +08:00
22 lines
411 B
Python
22 lines
411 B
Python
from qt_material import export_theme
|
|
|
|
extra = {
|
|
|
|
# Button colors
|
|
'danger': '#dc3545',
|
|
'warning': '#ffc107',
|
|
'success': '#17a2b8',
|
|
|
|
# Font
|
|
'font_family': 'monoespace',
|
|
'font_size': '14px',
|
|
'line_height': '14px',
|
|
}
|
|
|
|
|
|
export_theme(theme='dark_teal.xml', qss='dark_teal.qss', rcc='resources.rcc',
|
|
output='theme', prefix='icon:/', invert_secondary=False, extra=extra)
|
|
|
|
|
|
|