invert accent colors for links

This commit is contained in:
sakrecoer 2020-11-17 17:19:03 +01:00
parent 25b69c039f
commit dc70854c3d

View file

@ -20,14 +20,14 @@ strong {
a {
text-decoration-style: wavy;
text-decoration-color: transparent;
color: var(--accent2);
color: var(--accent1);
-moz-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
-webkit-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
-ms-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
}
a:hover {
color: var(--accent1);
color: var(--accent2);
text-decoration-style: wavy;
text-decoration-color: unset;
}