aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vnext/src/components/PM.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/PM.js b/vnext/src/components/PM.js
index c8812a02..c9d1cc37 100644
--- a/vnext/src/components/PM.js
+++ b/vnext/src/components/PM.js
@@ -22,7 +22,7 @@ export default function PM(props) {
function bubbleStyle(me, msg) {
const isMe = me.uid === msg.user.uid;
const color = isMe ? '#fff' : '#222';
- const background = isMe ? '#0076ff' : '#eee';
+ const background = isMe ? '#ec4b98' : '#eee';
return {
background: background,
color: color,