Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

podbay.fm background color

  • 1 réponse
  • 1 a ce problème
  • 43 vues
  • Dernière réponse par 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.

Toutes les réponses (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;
}