font color css

CSS
p{
	color: White;
}h1 {  
  color: green;
} color:#ffffff;color: #EAF6F6;

color: red;

color: rgb(255, 255, 255);body {
  color: blue;
}


h1 {
  color: green;
} <!DOCTYPE html>
<html>
<head>

  <link rel="stylesheet" href="styles.css">

</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html> 
Source

Also in CSS: