add active color for links

This commit is contained in:
wires 2025-07-29 14:37:47 -04:00
parent 54e4a73248
commit 51a62f0817
Signed by: wires
SSH key fingerprint: SHA256:9GtP+M3O2IivPDlw1UY872UPUuJH2gI0yG6ExBxaaiM

View file

@ -6,6 +6,7 @@
--fg: #cdd6f4;
--bg: #11111b;
--link: #bd93f9;
--link-active: #8be9fd;
--overlay: #313244;
}
@ -124,6 +125,10 @@ a:visited {
color: var(--link);
}
a:active {
color: var(--link-active);
}
ul {
margin-block-start: 0;
}