active questions tagged random-number-generator+prng+color-picker - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T12:39:07Zhttp://stackoverflow.com/feeds/tag/random-number-generator+prng+color-pickerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/512548/create-programmatic-colour-picker2Create programmatic colour pickerj pimmelhttp://stackoverflow.com/users/521752009-02-04T18:01:03Z2009-02-05T18:14:46Z
<p>How would one create a <strong><em>deterministic</em></strong> Javascript HTML colour picker which given arguments of how many colours are desired returns an array of HTML hex colour codes, ie:</p>
<pre><code> function createColours(numColours) {
return [/* colours array of size numColours */]
}
</code></pre>
<p>The colours themselves can be <em>chosen / generated</em> randomly, but the method must guarantee that colours chosen are always the same between calls and always in the same order in series.</p>
<p>For example, if the series of colours decided on by the function started with the following 8:</p>
<pre><code> "#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", etc, etc
</code></pre>
<p>The function would behave with the following consistent responses across separate method invocations on the client</p>
<pre><code> ["#47092E", "#CC2A43"] == createColours(2);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00"] == createColours(5);
["#47092E"] == createColours(1);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", #and 49 others#] == createColours(57);
</code></pre>
<p><strong>Note</strong>: The colours are not defined as a variable in advance; the method might be asked for 345 colours, all of which it would be required to generate by whatever suitable means.</p>
<p>The problem to be solved is - <strong>first and foremost</strong> - how would you create a capability within the method to generate the n HEX colour values consistently the same each time also preserving the sequence</p>