diff --git a/guide/english/certifications/responsive-web-design/basic-css/use-rgb-to-mix-colors/index.md b/guide/english/certifications/responsive-web-design/basic-css/use-rgb-to-mix-colors/index.md index 7f18d11231..57fd14cc06 100644 --- a/guide/english/certifications/responsive-web-design/basic-css/use-rgb-to-mix-colors/index.md +++ b/guide/english/certifications/responsive-web-design/basic-css/use-rgb-to-mix-colors/index.md @@ -2,31 +2,144 @@ title: Use RGB to Mix Colors --- ## Use RGB to Mix Colors - -An RGB value is a combination of values for red, green, and blue (RGB). Each perameter defines the intensity of the color as an integer between 0 (no color; black) and 255 (highest intensity) or a percentage from 0% to 100%. For example: -```css -rgb(255, 0, 0) -``` -This is rendered as red, because the red parameter is set to its highest value (255) and the others are set to 0. With RGB, you can mix colors by using combinations of different values. -### Examples: -```css +## Problem +```html +``` + +## Objective +Within the ` ``` -Above is RGB is used to turn an h2 element blue. -```css + +### After + +```html ``` -In this example above, different values of RGB are combined, and 'color: rgb(64, 224, 208)' turns the h2 elements turquoise. +**Note:** In the class,`.ClassName`, within the ` +``` + +### After changing `color` of class `.red-text` +```html + +``` + +We will follow the same steps for the rest of the classes shown here: + +### Before changing `color` of other classes +```html + +``` + +### After changing `color` of other classes +```html + +``` + +## Final Solution +Hence, the final solution reveals that we have changed the `color` element of these text classes with rgb values shown below: +```html + + +