diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
index 696338e7ad796454fc703bd3ed0b2c88c836b8c2..056c5f7d96abaadb5519e4bd1fb64eabb140a253 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
@@ -38,32 +38,34 @@ Column {
     Section {
         anchors.left: parent.left
         anchors.right: parent.right
-        caption: "Color"
-        GridLayout {
-            columns: 2
-            rows: 2
-            Label {
-                text: "Text Color"
-            }
-            LineEdit {
-                backendValue: backendValues.color
-            }
-            Label {
-                text: "Style Color"
-            }
-            LineEdit {
-                backendValue: backendValues.styleColor
-            }
+        caption: qsTr("Text Color")
+
+        ColorEditor {
+            caption: qsTr(" Text Color")
+            backendendValue: backendValues.color
+            supportGradient: true
         }
 
     }
 
+    Section {
+        anchors.left: parent.left
+        anchors.right: parent.right
+        caption: qsTr("Selection Color")
+
+        ColorEditor {
+            caption: qsTr("Selection Color")
+            backendendValue:  backendValues.selectionColor
+            supportGradient: false
+        }
+    }
+
    StandardTextSection {
        showIsWrapping: true
        useLineEdit: true
    }
 
    FontSection {
-       showStyle: true
+       showStyle: false
    }
 }