diff --git a/theme/CwtchDark.qml b/theme/CwtchDark.qml index f5893b2..ba6b87d 100644 --- a/theme/CwtchDark.qml +++ b/theme/CwtchDark.qml @@ -10,6 +10,7 @@ ThemeType { readonly property color hotPink: "#D01972" readonly property color lightGrey: "#9E9E9E" readonly property color softGreen: "#A0FFB0" + readonly property color softRed: "#FFA0B0" backgroundMainColor: darkGreyPurple backgroundPaneColor: darkGreyPurple @@ -51,6 +52,7 @@ ThemeType { portraitBlockedTextColor: lightGrey portraitOnlineBadgeColor: softGreen + portraitOfflineBadgeColor: softRed portraitContactBadgeColor: hotPink portraitContactBadgeTextColor: whitePurple diff --git a/theme/CwtchLight.qml b/theme/CwtchLight.qml index 74b9fd5..b340bf6 100644 --- a/theme/CwtchLight.qml +++ b/theme/CwtchLight.qml @@ -10,6 +10,7 @@ ThemeType { readonly property color hotPink: "#D01972" readonly property color lightGrey: "#B3B6B3" readonly property color softGreen: "#A0FFB0" + readonly property color softRed: "#FFA0B0" backgroundMainColor: whitePurple backgroundPaneColor: softPurple @@ -52,6 +53,7 @@ ThemeType { portraitBlockedTextColor: lightGrey portraitOnlineBadgeColor: softGreen + portraitOfflineBadgeColor: softRed portraitContactBadgeColor: hotPink portraitContactBadgeTextColor: whitePurple diff --git a/theme/Theme.qml b/theme/Theme.qml index 93e6e03..e4bff87 100644 --- a/theme/Theme.qml +++ b/theme/Theme.qml @@ -48,6 +48,7 @@ Item { readonly property color portraitBlockedTextColor: theme.portraitBlockedTextColor readonly property color portraitOnlineBadgeColor: theme.portraitOnlineBadgeColor + readonly property color portraitOfflineBadgeColor: theme.portraitOfflineBadgeColor readonly property color portraitContactBadgeColor: theme.portraitContactBadgeColor readonly property color portraitContactBadgeTextColor: theme.portraitContactBadgeTextColor diff --git a/theme/ThemeType.qml b/theme/ThemeType.qml index a04aaa7..bdbb318 100644 --- a/theme/ThemeType.qml +++ b/theme/ThemeType.qml @@ -42,6 +42,8 @@ QtObject { property color portraitBlockedTextColor: "red" property color portraitOnlineBadgeColor: "red" + property color portraitOfflineBadgeColor: "red" + property color portraitContactBadgeColor: "red" property color portraitContactBadgeTextColor: "red"