diff --git a/EmojiDrawer.qml b/EmojiDrawer.qml index adbac68..6436bec 100644 --- a/EmojiDrawer.qml +++ b/EmojiDrawer.qml @@ -114,6 +114,7 @@ Item { size: root.size onClicked: emojiModel.model = folder_expressions } + ImageButton { visible: !root.narrowMode && !root.searchMode //: Activities diff --git a/theme/CwtchDark.qml b/theme/CwtchDark.qml index b84305d..543328e 100644 --- a/theme/CwtchDark.qml +++ b/theme/CwtchDark.qml @@ -88,6 +88,8 @@ ThemeType { statusbarOnlineColor: mauvePurple statusbarOnlineFontColor: whitePurple + chatOverlayWarningTextColor: purple + messageFromMeBackgroundColor: mauvePurple messageFromMeTextColor: whitePurple messageFromOtherBackgroundColor: deepPurple diff --git a/theme/CwtchLight.qml b/theme/CwtchLight.qml index 0c99f0d..2765a43 100644 --- a/theme/CwtchLight.qml +++ b/theme/CwtchLight.qml @@ -89,6 +89,8 @@ ThemeType { statusbarOnlineColor: darkPurple statusbarOnlineFontColor: whitePurple + chatOverlayWarningTextColor: purple + messageFromMeBackgroundColor: darkPurple messageFromMeTextColor: whitePurple messageFromOtherBackgroundColor: purple diff --git a/theme/Theme.qml b/theme/Theme.qml index 4422fcf..fc5a132 100644 --- a/theme/Theme.qml +++ b/theme/Theme.qml @@ -79,6 +79,7 @@ Item { readonly property color statusbarOnlineColor: theme.statusbarOnlineColor readonly property color statusbarOnlineFontColor: theme.statusbarOnlineFontColor + readonly property color chatOverlayWarningTextColor: theme.chatOverlayWarningTextColor readonly property color messageFromMeBackgroundColor: theme.messageFromMeBackgroundColor readonly property color messageFromMeTextColor: theme.messageFromMeTextColor readonly property color messageFromOtherBackgroundColor: theme.messageFromOtherBackgroundColor diff --git a/theme/ThemeType.qml b/theme/ThemeType.qml index 47d3c52..382081a 100644 --- a/theme/ThemeType.qml +++ b/theme/ThemeType.qml @@ -79,6 +79,7 @@ QtObject { property color statusbarOnlineColor: "red" property color statusbarOnlineFontColor: "red" + property color chatOverlayWarningTextColor: "red" property color messageFromMeBackgroundColor: "red" property color messageFromMeTextColor: "red" property color messageFromOtherBackgroundColor: "red"