Filter Highlights by Highlight Color #4124
Unanswered
gzachariadis
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I using the highlight users feature to apply different highlight colors to different users based on their username.
In my case, I have green for other moderators, yellow for my friends and red for "suspicious" users. I would like to be able to apply a filter, based on the user highlight color. Just like you would with the
author.color
variable.For example, let's say you want to highlight all users that have a yellow username, then filter your chat so you only see those. You would go into Filters and add a new filter as such
author.color == "#HexValue"
then apply it.Under the same mindset, I would like a variable called
highlight.color
so I can then apply a similar filter to my highlights.My solution thus far is to add a filter as such
(!(author.name) == "username") && (!(author.name) == "another_username") && (!(author.name) == "yet_another_username")
and so on....instead of just a simple solution of using a filter based on the color of the highlighted message.Beta Was this translation helpful? Give feedback.
All reactions