highlightjs / vue-plugin

Highlight.js Vue Plugin
BSD 3-Clause "New" or "Revised" License
200 stars 28 forks source link

How do I change the theme on the fly? #31

Closed Artawower closed 2 years ago

Artawower commented 2 years ago

Hello, how can I change the theme on the fly? When I change the dark mode on the site, I would like to choose a black theme, and vice versa.

joshgoebel commented 2 years ago

Theming is all just what CSS you have loaded, so you'd have to write JS to load/switch out different CSS on the fly if that's the desire.

You could look at the Highlight.js demo for just one way to do this:

https://highlightjs.org/static/demo/

Artawower commented 2 years ago

Thanks, solved