Change jupyter lab css values from within?

An %%html cell in a notebook (or console) will do the trick:

%%html
<style>
:root {
  --jp-layout-color1: red;
}
</style>

There’s also jupyterlab-fonts, which is abused extensively in jupyterlab-deck.

2 Likes