+ 26
Most precise Color Mixing Palette - Really tough CHALLENGE ???
INPUT - Any 3 colors OUTPUT - All combinations of the defined input colors For example, 'a' 'b' 'c' are the input colors, then the code should show 'a+b' 'b+c' 'c+a' 'a+b+c' Hit this link to see a sample code https://code.sololearn.com/WySq3aVbM1z6/?ref=app
2 Réponses
+ 18
@utkarsh
thanks for the information
Please note that the main task here is to find the interaction of 3 colors...even though we don't get the best possible results(combination of 3 equidistant colors) but with the help of this code we can find how different colors interact with each other
+ 9
https://en.wikipedia.org/wiki/Color_theory
To know more about colors,
This link may be helpful to you & other sololearners.
The color model mentioned in code OR to be more precise, the color triads(as mentioned on wikipedia) are formed by 3 equidistant colors.
It should be NOTED that finding a combination of 3 different colors which are equidistant is itself a PRIMARY CHALLENGE here