diff options
Diffstat (limited to 'vnext/src/ui/helpers/BubbleStyle.js')
-rw-r--r-- | vnext/src/ui/helpers/BubbleStyle.js | 2 |
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, |