Invert Colors
Create a function that inverts the rgb values of a given list
Examples
<br>color_invert([255, 255, 255])<br>output = [0, 0, 0]<br># [255, 255, 255] is the color white.<br># The opposite is [0, 0, 0], which is black.<br><br>color_invert([0, 0, 0])<br>output = [255, 255, 255]<br><br>color_invert([165, 170, 221]<br>output = [90, 85, 34]<br>
Notes
- Must return a list.

- 255 is the max value of a single color channel.