Нет, не используются стандартные настройки text-decoration
.
Что вы можете сделать , это заменить подчеркивание псевдоэлементом, который вы можете настроить по своему усмотрению.
a {
text-decoration:none;
margin:1em;
display: inline-block;
position: relative;
}
a:after {
content:"";
position: absolute;
left:0;
bottom:-12px; /* changes distance from text */
width:100%; /* width of underline */
height:5px; /* height of underline */
background: red; /* color or underline */
}
<a href="#">My hyperlink</a>
Текстовое оформление @ MDN