From d4e6faffa5181de218ca9a33f3a9d610699ff32d Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Wed, 28 Sep 2016 11:40:07 +0200 Subject: [PATCH] fix(Styles): use `Colors` --- tests/ui/modules/Linphone/Styles/Form/CheckBoxTextStyle.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ui/modules/Linphone/Styles/Form/CheckBoxTextStyle.qml b/tests/ui/modules/Linphone/Styles/Form/CheckBoxTextStyle.qml index c957e299b..8bdf06121 100644 --- a/tests/ui/modules/Linphone/Styles/Form/CheckBoxTextStyle.qml +++ b/tests/ui/modules/Linphone/Styles/Form/CheckBoxTextStyle.qml @@ -8,8 +8,8 @@ QtObject { property int size: 18 property QtObject color: QtObject { - property color pressed: '#FE5E00' - property color hovered: '#6E6E6E' - property color normal: '#8E8E8E' + property color pressed: Colors.i + property color hovered: Colors.h + property color normal: Colors.g } }