From 1c8b68b4d774e3809d0a3b8fba2d187cde18c660 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 27 Jun 2019 15:35:52 +0300 Subject: Dark mode improvements --- vnext/src/ui/helpers/BubbleStyle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vnext/src/ui/helpers') 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, -- cgit v1.2.3