Color Schemes

Objective:

Create an app that displays five random colors upon load with functionality to randomize the colors again, input your own colors, and toggle for a black or white background color.

Problem:

How do we make it display random colors?

Solution:

We created a function that picks random hex digits by using the math functions in JavaScript, multiplying that number by 16 since there are 16 different hex digits and rounding to the lowest number. We then use that random number to grab the hex digit in the corresponding position.