How to change base color of Prism Theme

Got it.

That area looks to be set by --background-secondary, so you could change it with this, for example:

body.theme-light {
    --background-secondary: hsl(0, 0%, 80%);  /* hsl(0, 0%, 93%) */
}

How to CSS snippets if needed.