sed line selection uses regular expression, and by default, without the -E/-r option, the Basic flavor is used.
sed
-E
-r
What you want to use is Groups - \(regexp\)
\(regexp\)
So something like this:
sed '/orders="\(Green\|Orange\|Blue\)/!d'