From 1b3c042552f904d08bb8cbd7c96fb37fde23d6d7 Mon Sep 17 00:00:00 2001 From: TLSM Date: Sat, 10 Sep 2022 03:50:36 -0400 Subject: [PATCH] Change notification bell colors for messages. Messages bell is now an orange-ish gold. To avoid confusion with the yellowish-goldish modactions bell, modactions are now green. --- files/classes/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/classes/user.py b/files/classes/user.py index c95739a28..b295d179f 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -632,9 +632,9 @@ class User(Base): def notifications_color(self): colors = { '': '#dc3545', - 'messages': '#dc3545', + 'messages': '#d8910d', 'posts': '#0000ff', - 'modactions': '#e5990d', + 'modactions': '#1ad80d', 'reddit': '#805ad5', } return colors[self.notifications_do] if self.notifications_do \