mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
de3254fd08
* changes * changes * changes * changes * changes * Update gradio/themes/base.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update gradio/themes/base.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update guides/03_building-with-blocks/06_theming-guide Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * changes * changes * changes * save file * update changelog --------- Co-authored-by: Ali Abid <aabid94@gmail.com>
64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
from __future__ import annotations
|
|
from typing import Iterable
|
|
import gradio as gr
|
|
from gradio.themes.base import Base
|
|
from gradio.themes.utils import colors, fonts, sizes
|
|
import time
|
|
|
|
|
|
class Seafoam(Base):
|
|
def __init__(
|
|
self,
|
|
*,
|
|
primary_hue: colors.Color | str = colors.emerald,
|
|
secondary_hue: colors.Color | str = colors.blue,
|
|
neutral_hue: colors.Color | str = colors.gray,
|
|
spacing_size: sizes.Size | str = sizes.spacing_md,
|
|
radius_size: sizes.Size | str = sizes.radius_md,
|
|
text_size: sizes.Size | str = sizes.text_lg,
|
|
font: fonts.Font
|
|
| str
|
|
| Iterable[fonts.Font | str] = (
|
|
fonts.GoogleFont("Quicksand"),
|
|
"ui-sans-serif",
|
|
"sans-serif",
|
|
),
|
|
font_mono: fonts.Font
|
|
| str
|
|
| Iterable[fonts.Font | str] = (
|
|
fonts.GoogleFont("IBM Plex Mono"),
|
|
"ui-monospace",
|
|
"monospace",
|
|
),
|
|
):
|
|
super().__init__(
|
|
primary_hue=primary_hue,
|
|
secondary_hue=secondary_hue,
|
|
neutral_hue=neutral_hue,
|
|
spacing_size=spacing_size,
|
|
radius_size=radius_size,
|
|
text_size=text_size,
|
|
font=font,
|
|
font_mono=font_mono,
|
|
)
|
|
|
|
|
|
seafoam = Seafoam()
|
|
|
|
with gr.Blocks(theme=seafoam) as demo:
|
|
textbox = gr.Textbox(label="Name")
|
|
slider = gr.Slider(label="Count", minimum=0, maximum=100, step=1)
|
|
with gr.Row():
|
|
button = gr.Button("Submit", variant="primary")
|
|
clear = gr.Button("Clear")
|
|
output = gr.Textbox(label="Output")
|
|
|
|
def repeat(name, count):
|
|
time.sleep(3)
|
|
return name * count
|
|
|
|
button.click(repeat, [textbox, slider], output)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|