Programmatically setting rgb and xyz parameter tuples.

It would be super nice to set parameters that are normally grouped together like rgb and xyz as a list. I’m specifically looking for something along these lines:

op( ‘text1’ ).par.fontcolor = [0.75, 0.25, 0.0]

instead of calling:
op( ‘text1’ ).par.fontcolorr = 0.75
op( ‘text1’ ).par.fontcolorg = 0.25
op( ‘text1’ ).par.fontcolorb = 0.0

Thanks!