Skip to content
Merged
2 changes: 1 addition & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ html.dark {
color: #0d0950;
}

.dark .nav-links a {
.dark a {
color: #fff;
}
Copy link
Member

@sarah11918 sarah11918 Aug 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It won't let me suggest, but we want something more like this:

.dark .nav-links a {
  color: #fff;
}

.dark a {
  color: #ff9776;
}

We want to keep the nav links white (the pages) but only update regular links, because we still want links to be distinguished inside text:

image

It probably makes the most sense to have links be a different color than the text, so our friend orange seems like a good candidate here!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extreme cases, but it’s resolved with the text you mentioned on Discord.
imagen

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, noticed that but it's not terrible... I think the text covers this fine.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it seems fine. This is not the most readable, but according to Firefox accessibility tools this is still AA (5.19), so I think this is more than enough for the tutorial.