Created
April 1, 2023 08:50
-
-
Save philschmid/fb779dd3faab3d8db1788e9ae42948d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import gradio as gr | |
| theme = gr.themes.Monochrome( | |
| primary_hue="indigo", | |
| secondary_hue="blue", | |
| neutral_hue="slate", | |
| radius_size="radius_sm", | |
| font=[gr.themes.GoogleFont('Open Sans'), 'ui-sans-serif', 'system-ui', 'sans-serif'], | |
| ).set( | |
| shadow_drop='*button_shadow' | |
| ) | |
| with gr.Blocks(theme=theme) as demo: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment