基本の例text-decoration-color デモボタンをクリックしてみてください!
selector {
    text-decoration-color: <color>
}
/* <color>の値 */
text-decoration-color: currentcolor;
text-decoration-color: red;
text-decoration-color: #00a0e9;
text-decoration-color: rgb(255, 255, 128);
text-decoration-color: rgba(255, 255, 128, 0.5);
text-decoration-color: transparent;

/* グローバル値 */
text-decoration-color: inherit;
text-decoration-color: initial;
text-decoration-color: revert;
text-decoration-color: revert-layer;
text-decoration-color: unset;
<p>テキストデコレーションの色の値はblueです。</p>
p {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: blue;
}
実際の適用例