How do I make my own color?
Hey there, you can try making your own color in the coding playground. To do so, create an object that has the properties red
, green
, and blue
, like this:
let myColor = {
red: 255,
green: 0,
blue: 0
}
Give each property a value from 0
to 255
. You can use a color wheel like this to get the values you need.
Hope this helps!
Ben