CSS 데모: text-decoration-color 데모 버튼을 클릭해 보세요!
selector {
    text-decoration-line: underline;
    text-decoration-color: /* value */
}
<p>텍스트 데코레이션 컬러 값이 blue입니다.</p>
p {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: blue;
}
실제 적용 모습

caniuse.com에서 더 자세한 정보를 확인해 보세요.