The text-decoration-color
property sets the color of the text-decoration (underline, overline, line-through).
text-decoration-color: color ;
.div-1{
text-decoration: underline;
text-decoration-color: red;
}
color: sets the given color as the color of text decoration.