five-star / theme.py
teezyboy's picture
Upload 32 files
6ad810a verified
raw
history blame
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"
)