Theme changes

This commit is contained in:
Hibby 2024-11-26 23:00:09 +00:00
parent 5ef24244d2
commit 5ebe04b751
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View File

@ -94,6 +94,7 @@ mark {
color: var(--primary);
box-shadow: var(--link-underline-shadow);
transition: var(--link-transition);
text-decoration:underline;
}
.inline-links a:hover {
color: var(--link-hover-color);

View File

@ -0,0 +1,7 @@
:root {
--link-color: var(--primary);
--link-hover-color: #573eaa;
--link-underline-shadow: 0 1px 0 var(--link-color);
--link-hover-underline-color: #573eaa;
--link-hover-underline-shadow: 0 2px 0 var(--link-hover-underline-color);
}