code-hike / bright

React Server Component for syntax highlighting
https://bright.codehike.org
1.45k stars 20 forks source link

CSS variables in theme #41

Closed pacocoursey closed 7 months ago

pacocoursey commented 7 months ago

Is there a way to use CSS variables in the theme definition?

pomber commented 7 months ago

Yes, we have (undocumented) support.

You can do this for example:

<Code lang="py" theme="material-from-css">print("hello brightness")</Code>

With this CSS.

It uses the same themes as Code Hike so there's more info here.

pacocoursey commented 7 months ago

Thanks, works for me!