[Colors] How can I find the opposite Color?
Asked by
8 years ago Edited 8 years ago
Is there an equation/function that is available to use to calculate the opposite of a given colour (sometimes known as complementary) without having to write a massive table??
For example, the opposite of white (255/255,255/255,255/255) is black (0/255,0/255,0/255)
[EDIT]
I've tried getting the opposite using this formula, but isn't 100% efficient:
Original Color = r,g,b
Opposite/Complimentary = 255-r,255-g,255-b
The opposite color is the result of 255 take away the value of its respective color.
Tested code on a TextLabel:
2 | Redrandom = math.random( 0 , 255 ) |
3 | Greenrandom = math.random( 0 , 255 ) |
4 | Bluerandom = math.random( 0 , 255 ) |
5 | script.Parent.BackgroundColor 3 = Color 3. new(Redrandom/ 255 ,Greenrandom/ 255 ,Bluerandom/ 255 ) |
6 | script.Parent.TextColor 3 = Color 3. new(( 255 -Redrandom)/ 255 ,( 255 -Greenrandom)/ 255 ,( 255 -Bluerandom)/ 255 ) |
7 | script.Parent.TextStrokeColor 3 = Color 3. new(( 255 -Redrandom)/ 255 ,( 255 -Greenrandom)/ 255 ,( 255 -Bluerandom)/ 255 ) |
8 | wait(math.random( 1 , 10 )/ 10 ) |
I understand there's a different function to create a color using RGB colors up to 255, but I prefer this method.