Exploring Rgb Color Codes Codehs Answers Best [better]

A: This is a classic CodeHS problem.

| Question | Answer | |----------|--------| | What RGB makes pure red? | (255, 0, 0) | | What happens if R=255, G=255, B=0? | Yellow | | Make a dark blue | (0, 0, 100) | | Make a light gray | (200, 200, 200) | | Make magenta / purple | (255, 0, 255) | | Make a color half as bright as red | (127, 0, 0) | exploring rgb color codes codehs answers best

"Convert rgb(0, 102, 204) to a hex code." A: This is a classic CodeHS problem

A: The CodeHS autograder compares the string value or the exact function call . If they asked for rgb(0,0,255) and you typed rgb(0, 0, 255) with spaces, it might mark it wrong in strict mode. Always copy the syntax exactly from the lesson. | Yellow | | Make a dark blue