Give your machine learning demos a unique look with Gradio's theming system. Choose from official themes or create your own.
Apply a theme to your Gradio app in just one line of code
import gradio as gr
with gr.Blocks(theme=gr.themes.Soft()) as demo:
gr.Markdown("# Hello World")
gr.Textbox(label="Input")
gr.Button("Submit")