Metadata-Version: 2.1
Name: streamlit-theme-provider
Version: 0.1.0
Summary: Streamlit component that allows you to get the current theme.
Author: Rishabh Indoria
Author-email: rishabhindoria2203@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=1.2
Requires-Dist: jinja2

# streamlit-theme-provider

Streamlit component that allows you to get the current theme.

## Installation instructions

```sh
pip install streamlit-theme-provider
```

## Usage instructions

value will be a dictionary containing the current theme settings.

```python
import streamlit as st

from streamlit_theme_provider import streamlit_theme_provider

value = streamlit_theme_provider()

st.write(value)
