FiveStars / theme.py
Titat's picture
Upload 4 files
79a07f2 verified
raw
history blame contribute delete
332 Bytes
from gradio.themes.base import Base
class CustomTheme(Base):
def __init__(self):
super().__init__()
super().set(
body_background_fill="#942828",
body_background_fill_dark="#737070",
input_background_fill="#ffffff",
input_background_fill_dark="#9d9b9b"
)