1
Fork 0

Add default colors to a elements.

This commit is contained in:
Bauke 2023-06-16 09:57:46 +02:00
parent 32a167bedc
commit 21fb058055
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 3 additions and 2 deletions

View File

@ -42,11 +42,12 @@ body {
} }
a { a {
color: var(--accent-1); color: var(--accent-1, var(--light-blue));
cursor: pointer;
text-decoration: none; text-decoration: none;
&:hover { &:hover {
color: var(--accent-2); color: var(--accent-2, var(--light-magenta));
text-decoration: underline; text-decoration: underline;
} }
} }