Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Learn More

podbay.fm background color

  • 1 Mbohovái
  • 1 oguereko ko apañuãi
  • 58 Hecha
  • Mbohovái ipaháva 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.

Opaite Mbohovái (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;
}