bouzidanas / react-reveal-slides

Create and add reveal.js presentations in react
MIT License
20 stars 1 forks source link

Changing the theme is not working #4

Closed davelsan closed 2 months ago

davelsan commented 2 months ago

Sorry about the issue rapid-fire! This is the last in a while, hopefully.

I tried chaning the theme prop to beige and white, but I don't think it's working. Once I remove the data-background-color from the default example, everything is white, but I've seen the default theme is actually black.

Using the <link/> tag as they mention in the docs does not work either, but this is most likely related to the bundler. Importing the theme directly at the App entry point works fine.

import '../node_modules/reveal.js/dist/theme/beige.css';
bouzidanas commented 2 months ago

Hi @davelsan

Until I make this an official component library, I am afraid you will have to import the theme you plan on using simply because the package doesnt include reveal.js and the CSS files found therein. That is why the install instructions has you installing reveal.js separately.

I will add this to the readme so people are aware.

Thanks for bringing this issue to light!