diff --git a/tests/ui/modules/Linphone/Colors.qml b/tests/ui/modules/Linphone/Colors.qml index 3023533a1..e957e3609 100644 --- a/tests/ui/modules/Linphone/Colors.qml +++ b/tests/ui/modules/Linphone/Colors.qml @@ -2,21 +2,24 @@ pragma Singleton import QtQuick 2.7 QtObject { - property string a: 'transparent' - property string b: '#5E5E5F' // Pressed toolbar. - property string c: '#C5C5C5' // Released toolbar. + property string a: 'transparent' + property string b: '#5E5E5F' // Pressed toolbar. + property string c: '#C5C5C5' // Released toolbar. - property string d: '#5A585B' // Text color. + property string d: '#5A585B' // Text color. - property string e: '#DEDEDE' // Timeline separator + property string e: '#DEDEDE' // Timeline separator - property string f: '#808080' // Popup shadow. + property string f: '#808080' // Popup shadow. - property string g: '#8E8E8E' // MenuEntry Normal. - property string h: '#707070' // MenuEntry Hovered. - property string i: '#FE5E00' // MenuEntry Pressed. - property string j: '#434343' // MenuEntry Selected. + property string g: '#8E8E8E' // MenuEntry Normal. + property string h: '#707070' // MenuEntry Hovered. + property string i: '#FE5E00' // MenuEntry Pressed. + property string j: '#434343' // MenuEntry Selected. - property string k: '#FFFFFF' // Text color. - property string l: '#000000' // Text color. + property string k: '#FFFFFF' // Text color. + property string l: '#000000' // Text color. + + property string m: '#D1D1D1' // SmallButton Normal. + property string n: '#C0C0C0' // SmallButton Hovered. } diff --git a/tests/ui/modules/Linphone/Styles/Form/ExclusiveButtonsStyle.qml b/tests/ui/modules/Linphone/Styles/Form/ExclusiveButtonsStyle.qml index 9fb536405..268fcf092 100644 --- a/tests/ui/modules/Linphone/Styles/Form/ExclusiveButtonsStyle.qml +++ b/tests/ui/modules/Linphone/Styles/Form/ExclusiveButtonsStyle.qml @@ -8,10 +8,10 @@ QtObject { property QtObject button: QtObject { property QtObject color: QtObject { - property string hovered: '#C0C0C0' - property string normal: '#D1D1D1' - property string pressed: '#FE5E00' - property string selected: '#8E8E8E' + property string hovered: Colors.n + property string normal: Colors.m + property string pressed: Colors.i + property string selected: Colors.g } } } diff --git a/tests/ui/modules/Linphone/Styles/Form/SmallButtonStyle.qml b/tests/ui/modules/Linphone/Styles/Form/SmallButtonStyle.qml index 409026277..6e58ee318 100644 --- a/tests/ui/modules/Linphone/Styles/Form/SmallButtonStyle.qml +++ b/tests/ui/modules/Linphone/Styles/Form/SmallButtonStyle.qml @@ -9,15 +9,15 @@ QtObject { property int radius: 10 property QtObject color: QtObject { - property string hovered: '#C0C0C0' - property string normal: '#D1D1D1' - property string pressed: '#FE5E00' + property string hovered: Colors.n + property string normal: Colors.m + property string pressed: Colors.i } } property QtObject text: QtObject { property int fontSize: 8 - property string color: '#FFFFFF' + property string color: Colors.k } }