I'm making an app that requires the user to select multiple colors from a color picker and set the probability that some colors will have more than equal chance to be selected.
An example: Let's say user selects the colors red, green and blue and selects that red should have 3 chances to be selected and the other tow only 1. So in the end red will have a 60% chance , green 20% and blue 20%.
Now i want to do that but graphically and easy to understand.
I have a few ideas but i'm not sure which one is good ...or easy...or whatever.
Idea 1:

The user selects which of the colors are more likely to get. The numbers are basically weights attached to every color. The problem with this is that you can't exactly have a full spectrum of colors ( all 16,777,216 of them) for obvious reasons...so you need to have relatively few colors (~150 or something).
Idea 2:

The user selects colors from areas. This is better because you can have full range of colors...but i can't think of a simple way to have a color with more chance to be picked (like weights above).
These are just my flawed ideas. You can improve on these or give other ideas. A link to a color picker's source code that does exactly what i want would be better though. :)