# Theming

## Providing a Theme
`@splunk/react-ui` theming is enabled by using [SplunkThemeProvider](/Packages/themes/Overview), which defines the theme family and theme variation. 

Here is an example of an application defining a theme variant with `SplunkThemeProvider`:

```jsx
import { SplunkThemeProvider } from '@splunk/themes';
...
<SplunkThemeProvider family="prisma" colorScheme="light" density="compact">
    <Application />
</SplunkThemeProvider>
```
`SplunkThemeProvider` can be nested to create different theme variations on parts of an application.

