Theme Provider

Wrap your app, probably at the router, with ThemeProvider:

...
<Stylesheet id="leptos" href="/pkg/my_app.css" />
<ThemeProvider>
    <Router>
        ...
    </Router>
</ThemeProvider>
...

Load your own stylesheets before ThemeProvider to avoid conflicts.