Solve problem "Use RGB to Mix Colors" online - Learn Python 3 - Snakify

Lesson: HTML5 and CSS

Use RGB to Mix Colors

Just like with hex code, you can mix colors in RGB by using combinations of different values.

Replace the color words in our style element with their correct RGB values.

ColorRGB
Bluergb(0, 0, 255)
Redrgb(255, 0, 0)
Orchidrgb(218, 112, 214)
Siennargb(160, 82, 45)


The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.