SteveGPT / theme.py
FrostyLino's picture
Initial Commit
32876d5 verified
from gradio.themes.base import Base
class CustomTheme(Base):
def __init__(self):
super().__init__()
super().set(
body_background_fill="#EBDFDA00",
body_background_fill_dark="#19171700",
input_background_fill="#FFFFFF00",
input_background_fill_dark="#27272A00"
)