Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

podbay.fm background color

  • 1 resposta
  • 1 tem este problema
  • 58 visualizações
  • Última resposta por 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.

Todas as respostas (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;
}