Category: Math Kind: Operation Description: Generate a random color
<aside> 💡
Random numbers generated by computers are not truly random, but rather pseudo-random. They are produced by algorithms that, while appearing random, are deterministic and predictable. This means the same algorithm will generate the same sequence of numbers if given the same starting conditions.
In random number generation, a seed is a starting number used to initialize a random number generator (RNG). It's essentially a point within a predetermined sequence of "random" numbers where the generator starts producing values.
</aside>
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Seed | S | Number | Item | The seed for the random number |
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Color | C | String | Item | The random color |
Feed in a number to the seed
The result is a randomized hex value representing a color
<aside> 💡
A hexadecimal color is specified with: #RRGGBB, where the RR (red), GG (green) and BB (blue) hexadecimal integers specify the components of the color.
</aside>