If you want to add colors to your text, use the color method in CSS. This is the code
selection{
color:thecolor;
}
The color method changes the color of the content. (eg. text)
There are 3 ways to put the color:
For the first one, it is pretty straight-forward. Just type color: and then the color you want, followed by a semi-colon
Here is an example:
h1{
color:darkblue;
}
For the second one, it is a bit more complicated. You enter in a rgb value which has a certain amount of red, green and blue. Here is the code:
selection{
color:rgb(red_value,green_value,blue_value);
}
If you want to make the header a dark blue color you can do:
h1{
color:rgb(15,18,85);
}
The last one is the hardest. It is called Hexadecimal and basically you put a value after a #. Here is an example:
h1{
color:#0F1255;
}
If you want to find rgb and hexadecimal values, there are many great websites. Some can get colors from images and some just have you enter the color. But my favorite website is this.