| 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" | |
| ) |