aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui/helpers')
-rw-r--r--vnext/src/ui/helpers/BubbleStyle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/ui/helpers/BubbleStyle.js b/vnext/src/ui/helpers/BubbleStyle.js
index 570b7337..f44f726e 100644
--- a/vnext/src/ui/helpers/BubbleStyle.js
+++ b/vnext/src/ui/helpers/BubbleStyle.js
@@ -1,7 +1,7 @@
export function bubbleStyle(me, msg) {
const isMe = me.uid === msg.user.uid;
const color = isMe ? '#fff' : '#222';
- const background = isMe ? '#ec4b98' : '#eee';
+ const background = isMe ? '#ec4b98' : 'var(--border-color)';
return {
background: background,
color: color,