"Create a circle. Use RGB values to change its color from Blue to Purple."
// This is the standard CodeHS solution var circle = new Circle(50); circle.setPosition(200, 200); // Starting Blue circle.setColor("rgb(0, 0, 255)"); add(circle); exploring rgb color codes codehs answers best
Use the cheat sheet above to pass your quizzes, but use the explanation to build your first custom color palette. Now go open your CodeHS Sandbox, type rgb(180, 105, 255) , and see a beautiful shade of appear. You've earned it. "Create a circle