Anonymous 12/24/2023 (Sun) 04:57 No.43390 del
>>43384
Currently, links (which is "a" in css) are orange. That's why /ausneets/ is visible even though it's spoilered. You need to make links in css black, or change the spoiler color to dark orange. To do the former:

Replace
a {
    color: darkorange;
}



to this:

a {
    color: black;
}


Or to change spoiler color add this:

span.spoiler {
    background: darkorange;
    color: darkorange;
    padding: 0 1px;
}



Also, preformatted text is a little unreadable due to the background color and font being similarly colored. If you add the following, it will make the background color for preformatted text to dark red. You can change the hex color code to a color you like. Here's what you'd add:

Message too long. Click here to view full text.