calm.i / theme.py
purplejamie's picture
Upload 18 files
0d04b7a verified
raw
history blame contribute delete
323 Bytes
from gradio.themes.base import Base
class CustomTheme(Base):
def __init__(self):
super().__init__()
super().set(
body_background_fill="#231332",
body_background_fill_dark="blue",
input_background_fill="#fff5dd",
input_background_fill_dark="#231332"
)