change color of links in light mode

This commit is contained in:
ch0ccyra1n 2022-07-31 17:08:31 -07:00
parent b6f5250480
commit 1ab3737b68

View file

@ -4,6 +4,10 @@
background-color: black;
color: white;
}
a {
text-decoration: none;
color: #f3ccc3;
}
}
/* Light Mode */
@ -11,6 +15,10 @@
body {
background-color: white;
}
a {
text-decoration: none;
color: #da644a;
}
}
/* Universal */
@ -18,11 +26,6 @@ body {
justify-content: center;
}
a {
text-decoration: none;
color: #f3ccc3;
}
header h1 {
text-align: center;
}