aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/helpers
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-06-27 15:35:52 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:55 +0300
commit1c8b68b4d774e3809d0a3b8fba2d187cde18c660 (patch)
treee0d1d2d72493dd94b99d484ad13c2d16d768163e /vnext/src/ui/helpers
parent72d02a353882ff245b38a273c1b2851ce04c9677 (diff)
Dark mode improvements
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,