aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/basics/animators.qml
diff options
context:
space:
mode:
authorTarja Sundqvist <tarja.sundqvist@digia.com>2014-09-17 15:14:14 +0300
committerTarja Sundqvist <tarja.sundqvist@digia.com>2014-09-19 14:43:59 +0200
commit0c17d92cdabda92d345b1c1c968a2a7bbe88aed2 (patch)
tree7009258233c8e0cea0dd49f7a56b6bf16a864531 /examples/quick/animation/basics/animators.qml
parentd0c58e6ad2fa188c96788575b13fede151ab98bd (diff)
Update used colors on basis of the recommended color palette.
qtdeclarative/examples/quick/animation uses some colors which are not mentioned on the recommended color palette. They are replaced with recommended colors. Task-number: QTBUG-41368 Change-Id: I6f07340735333c5da319fdc59ecf8aa7388ad2a5 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'examples/quick/animation/basics/animators.qml')
-rw-r--r--examples/quick/animation/basics/animators.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/quick/animation/basics/animators.qml b/examples/quick/animation/basics/animators.qml
index 3454eca13c..df1bd55be7 100644
--- a/examples/quick/animation/basics/animators.qml
+++ b/examples/quick/animation/basics/animators.qml
@@ -48,10 +48,10 @@ Item {
Rectangle {
anchors.fill: parent
gradient: Gradient {
- GradientStop { position: 0.0; color: "DeepSkyBlue" }
- GradientStop { position: 0.499; color: "LightSkyBlue" }
- GradientStop { position: 0.5; color: "ForestGreen" }
- GradientStop { position: 1.0; color: "DarkGreen" }
+ GradientStop { position: 0.0; color: "#14148c" }
+ GradientStop { position: 0.499; color: "#14aaff" }
+ GradientStop { position: 0.5; color: "#80c342" }
+ GradientStop { position: 1.0; color: "#006325" }
}
}