:root {
    --theme-link          : hsla(   var(--theme-accent-9-hue),
                                    var(--theme-accent-9-sat),
                                    var(--theme-accent-9-lht),
                                    var(--theme-accent-9-opa));

    --theme-link-hover    : hsla(   var(--theme-accent-9-hue),
                                    calc(var(--theme-accent-9-sat) + var(--theme-hover-sat-adj)),
                                    calc(var(--theme-accent-9-lht) + var(--theme-hover-lht-adj)),
                                    var(--theme-accent-9-opa));

    --theme-link-focus    : hsla(   var(--theme-accent-9-hue),
                                    calc(var(--theme-accent-9-sat) + var(--theme-hover-sat-adj)),
                                    calc(var(--theme-accent-9-lht) + var(--theme-hover-lht-adj)),
                                    var(--theme-accent-9-opa));

    --theme-link-active    : hsla(  var(--theme-accent-9-hue),
                                    calc(var(--theme-accent-9-sat) - var(--theme-hover-sat-adj)),
                                    calc(var(--theme-accent-9-lht) - var(--theme-hover-lht-adj)),
                                    var(--theme-accent-9-opa));

    --theme-link-visited    : hsla( var(--theme-accent-9-hue),
                                    calc(var(--theme-accent-9-sat) + var(--theme-hover-sat-adj)),
                                    calc(var(--theme-accent-9-lht) - var(--theme-hover-lht-adj)),
                                    var(--theme-accent-9-opa));
}