Query data in jsonb values array
I have a jsonb type column, and I want to use a filter such as in() or contains() to check if one of the values matches my query. The column has an array ["blue", "green"], so I want to have a function such as in('colours', ["orange", "blue"]) and have it match, is that possible?