How do I assign tag colors in new Tables?

Hello, in the new tables I can't seem to find an option to change tag colors. There is the option to assign or not tag colors automatically, but I wanted to manually assign colors. I saw in a previous thread screenshots with that option:

But I personally don't have that:

image

Click on the Options list and you can assign it there:

1 Like

This works, but it's not exactly what I was looking for. I wanted to add a condition where if value contains x, then it is red. Especially since the values being used aren't fixed, so many different names are gonna be added in the future.

You can use a ternary operator:
in the field write
{{self === somename?'red':'green'}} this means if it is somename it is red, if not, it is green.
But since you have multiple names, you can keep adding something like this...
{{self === somename?'red':self === someothername?'green'':self === somesomename?'purple':''}}. The last '' needs to be there to be the only falsy value....