Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 567 Bytes

README.md

File metadata and controls

20 lines (19 loc) · 567 Bytes

darkorange-pyside-stylesheet

This stylesheet has been made by LoneWolf ( http://tech-artists.org/forum/showthread.php?2359-Release-Qt-dark-orange-stylesheet )
I compiled the the images and the stylesheet into a ressource file to make it easier to use.

Example of use :

from PySide import QtGui
import darkorange
import sys

app = QtGui.QApplication(sys.argv)
app.setStyleSheet(darkorange.getStyleSheet())
app.setStyle("plastique")

win = QtGui.QColorDialog()
win.show()

app.exec_()
sys.exit()