About 50 results
Open links in new tab
  1. javascript - Random color generator - Stack Overflow

    Given this function, I want to replace the color with a random color generator. document.overlay = GPolyline.fromEncoded({ color: "#0000FF", weight: 10, points: encoded_points,

  2. Generating a Random Hex Color in Python - Stack Overflow

    Dec 22, 2012 · 98 For a Django App, each "member" is assigned a color to help identify them. Their color is stored in the database and then printed/copied into the HTML when it is needed. The only …

  3. Randomizing text color and background color in batch file

    Oct 28, 2018 · I am attempting to make a batch file that will randomize the color code when the script is run. How would i do this?

  4. python - Generate random colors (RGB) - Stack Overflow

    Mar 12, 2015 · Taking a uniform random variable as the value of RGB may generate a large amount of gray, white, and black, which are often not the colors we want. The cv::applyColorMap can easily …

  5. How do you get random RGB in Javascript? - Stack Overflow

    I have this code that uses RGB color selection and I was wondering how to make JavaScript do a random color using the RGB method and remember it throughout the code. EDIT: I tried this: var …

  6. Generate Random Color distinguishable to Humans

    I was looking for a method to generate a random vivid readable color based on relative luminance (blue, yellow and green are darker) but this enters my list of "think simple" answers.

  7. c# - Get Random Color - Stack Overflow

    Random r = new Random(); BackColor = Color.FromArgb(0, 0, r.Next(0, 256)); I want my Code to return one, random Color, not only green/red/blue every time, as the above ones do. How to solve this? …

  8. Best way to generate a random color in javascript? [closed]

    The similar idea is implemented in Adams Cole answer to the similar question, but his code have random color generator and hsl->hex rgb translator bundled together which makes it hard to …

  9. How can I make the turtle a random color? - Stack Overflow

    Sep 7, 2017 · 3 How can I fix this code to make the turtle a random color? I want to be able to click to make the turtle turn and change color.

  10. How to change color based on random number - Stack Overflow

    Dec 3, 2022 · I want to make a part that will change color depending on the seed. Example: if seed = 1 then part.Color3 = red end which is like this, but with randomization Nothing, im really dont know to m...