Change multiple svg elements color?

howto change multiple svg elements color?
like that
Screenshot_20231128_113125

Have you tried simply using a standard css selector string e.g. "#path1, #path2"

or add a unique class (or addressable attribute) to all the elements you wish to colourise and use that.

thanks! :flushed: