将rgb()颜色字符串转换为值数组。
rgb()
rgb颜色字符串
rgb值数组
https://www.30secondsofcode.org/js/s/to-rgb-array
torGBArray('rgb(255, 255, 255)'); // [255, 255, 255] Copy
torGBArray('rgb(255, 255, 255)'); // [255, 255, 255]
将
rgb()颜色字符串转换为值数组。