recipient_row: Use a dimmed stream color for background.

Following important changes are being made here:
* color_class lib is removed since it not used anywhere now.
* We don't need the `dark_background` class since the background
  color is already adjusted based on color scheme. So, all
  instances of it being used is removed.
This commit is contained in:
Aman Agrawal
2023-04-07 23:39:52 +00:00
committed by Tim Abbott
parent 023584e049
commit 7e473003a6
15 changed files with 97 additions and 140 deletions

View File

@@ -17,6 +17,12 @@ export function all_rendered_message_lists() {
return rendered_message_lists;
}
export function update_recipient_bar_background_color() {
for (const msg_list of all_rendered_message_lists()) {
msg_list.view.update_recipient_bar_background_color();
}
}
export function initialize() {
home = new message_list.MessageList({
table_name: "zhome",