File size: 323 Bytes
0d04b7a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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"
) |