diff options
author | Vitaly Takmazov | 2019-06-27 15:35:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 1c8b68b4d774e3809d0a3b8fba2d187cde18c660 (patch) | |
tree | e0d1d2d72493dd94b99d484ad13c2d16d768163e /vnext/src/ui/helpers/BubbleStyle.js | |
parent | 72d02a353882ff245b38a273c1b2851ce04c9677 (diff) |
Dark mode improvements
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, |