.class {
color: white;
}
#id {
color: white;
}
.YourClass {
color: #ff0000;
}
color:#ffffff; /*!important; to overwrite inline css*/
Don't use keywords like green, orange, red or so on because browsers will interpretate them in differen colors. Use rgb or hex instead
body {
color: blue;
}
h1 {
color: green;
}
/* This Way You can Color Any Font */
color: yellow;