Skip to main content

A component that returns the active theme of the Streamlit app.

Project description

PyPI - Version Downloads GitHub License

Streamlit Theme

A fork of the streamlit-theme package. It fixes confusing package name and import name by unifying all names to cool_streamlit_theme.

A component that returns the active theme of the Streamlit app.

Overview

Installation

pip install cool_streamlit_theme

Usage

The function immediately returns the active theme, when it is called. If the user manually changes the theme, after the web app is already running, it updates the returned value.

Parameters

adjust : bool, default=True
If set to True, which is the default, it makes a CSS adjustment and removes a space that would otherwise be added to the page by calling the st_theme function.

Streamlit components are meant to render something in the web app, and Streamlit adds a space for them even when there is nothing to render. Since st_theme does not render anything, and only communicates with the frontend to fetch the active theme, it makes a CSS adjustment to remove this space.

In most cases, the CSS adjustment does not interfere with the rest of the web app, however there could be some situations where this occurs. If this happens, or it is desired to disable it, pass False to adjust and, when necessary, make your own CSS adjustment with st.html.

key : str or int, optional
A string or integer to use as a unique key for the component. Multiple st_themes may not share the same key. Defaults to None.

Returns

theme : dict of {str : str} or None
A dictionary with the style settings being used by the active theme of the Streamlit app, or None, if for some reason it could not be fetched.

Notes

There is a known bug, that depends on the browser, where the theme is not returned immediately when the function is called. But it is returned normally when the user changes it.

This can be a problem in determining the initial theme of the web app. Because, by default, Streamlit uses the user's operating system setting (which might be unknown) to automatically apply the light or dark mode to the app, when it is first rendered.

To solve the issue, it is recommended to set a default theme configuration for the app, and use its value in case of st_theme returning None.

Examples

A basic example:

import streamlit as st
from streamlit_theme import st_theme
theme = st_theme()
st.write(theme)

Example 1 [App] [Source]

An example showing the CSS adjustment made, when set to True:

import streamlit as st
from streamlit_theme import st_theme

adjust = st.toggle("Make the CSS adjustment")

st.write("Input:")
st.code(
    f"""
    st.write("Lorem ipsum")
    st_theme(adjust={adjust})
    st.write("Lorem ipsum")
    """
)

st.write("Output:")
st.write("Lorem ipsum")
st_theme(adjust=adjust)
st.write("Lorem ipsum")

Example 2 [App] [Source]

Requirements

To use this Streamlit component in your app, you will need:

Development

Ensure you have Python 3.8+, Node.js and npm installed.

  1. Clone this repository:
git clone git@github.com:gabrieltempass/streamlit-theme.git
  1. Go to the frontend directory and initialize and run the component template frontend:
cd streamlit-theme/streamlit_theme/frontend
npm install
npm run dev
  1. From a separate terminal, go to the repository root directory, create a new Python virtual environment, activate it and install Streamlit and the template as an editable package:
cd streamlit-theme
python3 -m venv venv
. venv/bin/activate
pip install streamlit
pip install -e .

Still from the same separate terminal, run the example Streamlit app:

streamlit run streamlit_theme/example.py

If all goes well, you should see something like this:

Quickstart success

Modify the frontend code at streamlit_theme/frontend/src/StTheme.vue. Modify the Python code at streamlit_theme/__init__.py.

References

This Streamlit component was made with the streamlit-component-vue-vite-template, by @gabrieltempass.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cool_streamlit_theme-1.2.3.tar.gz (79.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cool_streamlit_theme-1.2.3-py3-none-any.whl (78.6 kB view details)

Uploaded Python 3

File details

Details for the file cool_streamlit_theme-1.2.3.tar.gz.

File metadata

  • Download URL: cool_streamlit_theme-1.2.3.tar.gz
  • Upload date:
  • Size: 79.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.8

File hashes

Hashes for cool_streamlit_theme-1.2.3.tar.gz
Algorithm Hash digest
SHA256 f7f5b33d54b7c393938037343192c5d244e8316b17b41e4c19ec1b4b6f583ba3
MD5 d17a0f1a14d74a2301f7bbd95b2bcc7b
BLAKE2b-256 4fd77faac735af9f4d218bbb6f62a3840a94531b2ab8f77102b1661a4ea3a946

See more details on using hashes here.

File details

Details for the file cool_streamlit_theme-1.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for cool_streamlit_theme-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2528903964673834512baa0fb6d1039a3e3c6b1d1c37a9bed25318b349209b7e
MD5 97d4c7b26081fea4186042d823a40a39
BLAKE2b-256 540114d58e11c542f50e41ba476c292b4eadd56c4aaafe1e83669183ce1794e6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page