Any colors in CSS
In the previous lessons you saw how to specify a color with a keyword. However, there are not many keywords, and they cannot be used to create all possible shades of all colors. There are two more ways to specify colors for this. Through rgb and through the lattice #.
See an example of setting color using rgb:
p {
color: rgb(255, 236, 114);
}
See an example of setting color using #:
p {
color: #ff0000;
}
To get the desired color, special programs are used. Here is an example of an online color generator: colorscheme.ru, and here is an example of a program that allows you to measure color: colorcop.net.
Using the described programs, generate a color in one and the second format and apply these colors to some page tags.