Bugfix for SCREAMING text
my links are SCREAMING FOR HELP and SHIMMYING
In my first iteration, the SCREAMING (as in, all-caps) text did not display on chromium browsers. The code in that post is now updated.
The Issue
In the animation for link_appear, I set the color of the LET ME OUT and AHHHH text to var(--link_color). In MY code, I had defined --link-color NOT --link_color (underscore was wrong, hyphen was right). In the code I shared, there was no link color variable defined at all. I've fixed the variable name in both my code and the code I published, PLUS in the code I published, I added the link color variable.
I had tested in Firefox, and the animation worked as expected. But a friend, using a chromium browser, couldn't see the text. I presume that when Firefox encountered undefined variable --link_color, it set the text color to black, inheriting from ... idk where. But Chromium (probably correctly) inherited the color that was actually defined on the text node.
So yeah, anyway, it's fixed. And I missed it because chrome and firefox handle the bug I wrote slightly differently.