gray text css code example
Example 1: css text black outline
/* Written for h4 tag, modify as required */
.black-outline{
-webkit-text-stroke: 1.11px black; /* stroke width and color */
color: rgb(255, 255, 255);
-webkit-font-smoothing: antialiased;
font-weight: bold;
}
Example 2: css change text color
p{
color: White;
}
Example 3: css light grey
#selector{
color:lightgrey;
}