summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@nokia.com>2010-02-25 16:48:44 +0100
committerChristiaan Janssen <christiaan.janssen@nokia.com>2010-02-25 16:59:01 +0100
commit74259532b7ceabfd8f84241d09bf29c059e747cc (patch)
tree859421e5c754143788ca8497da329987444acd9b /share
parente22e3db45c234838e1928babfde3707dbe459068 (diff)
downloadqt-creator-74259532b7ceabfd8f84241d09bf29c059e747cc.tar.gz
QmlDesigner.PropertyEditor: Changing color scheme for the properties
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyeditor/Qt/ColorScheme.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorScheme.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorScheme.qml
new file mode 100644
index 0000000000..3cca32fe0d
--- /dev/null
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorScheme.qml
@@ -0,0 +1,10 @@
+import Qt 4.6
+import Bauhaus 1.0
+
+Item {
+ id: colorScheme
+ property var disabledColor: "gray";
+ property var defaultColor: "white";
+ property var changedBaseColor: "#9999ff";
+ property var changedStateColor: "#99ccff";
+}