Links are underlined by default and the underline disappears on hover.
--link-color-text
var(--color-blue)
a { color: var(--link-color-text); text-decoration: underline; &:hover { text-decoration: none; } }
Override link color:
--- style: | :root { --link-color-text: #e74c3c; } ---