Use RGB instead of hex for the color of your text, and then add opacity, as shown below. (this is gray text with opacity)
p {
color: rgba(85, 85, 85, 0.8);
}
Change 0.8 depending on how much opacity you need, the lower the number, the greater the transparency.
source
share