Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Learn More

podbay.fm background color

  • 1 odgovor
  • 1 ima to težavo
  • 47 ogledov
  • Zadnji odgovor od 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.

Vsi odgovori (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;
}