Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

podbay.fm background color

  • 1 antwoord
  • 1 het hierdie probleem
  • 47 views
  • Laaste antwoord deur cor-el

more options

I'd like to change the background color of https://podbay.fm/ from black and dark blue to white. The light text on dark background feels jarring when switching to/from the majority of websites with light backgrounds.

I've tried to override the colors with the "only with high contrast themes" in the Firefox "Language and Appearance" settings. It didn't affect podbay. Setting the option to "Always" does work but it also affects sites with light or white backgrounds, hiding some of the formatting.

I'd like to change the background color of https://podbay.fm/ from black and dark blue to white. The light text on dark background feels jarring when switching to/from the majority of websites with light backgrounds. I've tried to override the colors with the "only with high contrast themes" in the Firefox "Language and Appearance" settings. It didn't affect podbay. Setting the option to "Always" does work but it also affects sites with light or white backgrounds, hiding some of the formatting.

All Replies (1)

more options

The website uses this CSS code in an inline style sheet to set the page colors.

html {
 --page-background-color:hsl(238,27%,12%);
 --page-text-color:white;
 --border-color:hsl(242,10%,20%);
 background:var(--page-background-color);
 color:var(--page-text-color);
 min-height:100%;
 position:relative;
 overscroll-behavior:contain;
}