Returns the reversed rgb color from the given color
Optional
the rgb color to inspect
the reversed rgb color from the given color
reverseRgb('rgb(0, 0, 0)'); // 'rgb(255, 255, 255)'reverseRgb([255, 255, 255]); // 'rgb(0, 0, 0)' Copy
reverseRgb('rgb(0, 0, 0)'); // 'rgb(255, 255, 255)'reverseRgb([255, 255, 255]); // 'rgb(0, 0, 0)'
Returns the reversed rgb color from the given color