Updating theme
Browse files- README.md +10 -5
- app.py +146 -0
- themes/theme_schema@0.0.1.json +1 -0
README.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
title: Wii
|
| 3 |
-
|
| 4 |
-
colorFrom: yellow
|
| 5 |
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 6.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
|
|
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
+
tags: [gradio-theme]
|
| 4 |
title: Wii
|
| 5 |
+
colorFrom: red
|
|
|
|
| 6 |
colorTo: purple
|
| 7 |
sdk: gradio
|
| 8 |
+
sdk_version: 6.11.0
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
+
license: apache-2.0
|
| 12 |
---
|
| 13 |
+
# Wii
|
| 14 |
+
## Description
|
| 15 |
+
A Nintendo Wii inspired Gradio theme with glossy pill buttons, cyan glow borders, gray background with wavy lines, and rounded channel-tile components.
|
| 16 |
+
## Contributions
|
| 17 |
+
Thanks to [@hmb](https://huggingface.co/hmb) for adding this gradio theme!
|
app.py
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import time
|
| 2 |
+
|
| 3 |
+
import gradio as gr
|
| 4 |
+
from gradio.themes.utils.theme_dropdown import create_theme_dropdown
|
| 5 |
+
|
| 6 |
+
dropdown, js = create_theme_dropdown()
|
| 7 |
+
|
| 8 |
+
with gr.Blocks() as demo:
|
| 9 |
+
with gr.Row(equal_height=True):
|
| 10 |
+
with gr.Column(scale=10):
|
| 11 |
+
gr.Markdown(
|
| 12 |
+
"""
|
| 13 |
+
# Theme preview: `Wii`
|
| 14 |
+
To use this theme, set `theme='hmb/wii'` in the `launch()` method of `gr.Blocks()` or `gr.Interface()`.
|
| 15 |
+
You can append an `@` and a semantic version expression, e.g. @>=1.0.0,<2.0.0 to pin to a given version
|
| 16 |
+
of this theme.
|
| 17 |
+
"""
|
| 18 |
+
)
|
| 19 |
+
with gr.Column(scale=3):
|
| 20 |
+
with gr.Group():
|
| 21 |
+
dropdown.render()
|
| 22 |
+
toggle_dark = gr.Button(value="Toggle Dark")
|
| 23 |
+
|
| 24 |
+
dropdown.change(None, dropdown, None, js=js)
|
| 25 |
+
toggle_dark.click(
|
| 26 |
+
None,
|
| 27 |
+
js="""
|
| 28 |
+
() => {
|
| 29 |
+
document.body.classList.toggle('dark');
|
| 30 |
+
}
|
| 31 |
+
""",
|
| 32 |
+
)
|
| 33 |
+
|
| 34 |
+
name = gr.Textbox(
|
| 35 |
+
label="Name",
|
| 36 |
+
info="Full name, including middle name. No special characters.",
|
| 37 |
+
placeholder="John Doe",
|
| 38 |
+
value="John Doe",
|
| 39 |
+
interactive=True,
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
with gr.Row():
|
| 43 |
+
slider1 = gr.Slider(label="Slider 1")
|
| 44 |
+
slider2 = gr.Slider(label="Slider 2")
|
| 45 |
+
gr.CheckboxGroup(["A", "B", "C"], label="Checkbox Group")
|
| 46 |
+
|
| 47 |
+
with gr.Row():
|
| 48 |
+
with gr.Column(variant="panel", scale=1):
|
| 49 |
+
gr.Markdown("## Panel 1")
|
| 50 |
+
radio = gr.Radio(
|
| 51 |
+
["A", "B", "C"],
|
| 52 |
+
label="Radio",
|
| 53 |
+
info="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
|
| 54 |
+
)
|
| 55 |
+
drop = gr.Dropdown(["Option 1", "Option 2", "Option 3"], show_label=False)
|
| 56 |
+
drop_2 = gr.Dropdown(
|
| 57 |
+
["Option A", "Option B", "Option C"],
|
| 58 |
+
multiselect=True,
|
| 59 |
+
value=["Option A"],
|
| 60 |
+
label="Dropdown",
|
| 61 |
+
interactive=True,
|
| 62 |
+
)
|
| 63 |
+
check = gr.Checkbox(label="Go")
|
| 64 |
+
with gr.Column(variant="panel", scale=2):
|
| 65 |
+
img = gr.Image(
|
| 66 |
+
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg",
|
| 67 |
+
label="Image",
|
| 68 |
+
height=320,
|
| 69 |
+
)
|
| 70 |
+
with gr.Row():
|
| 71 |
+
go_btn = gr.Button("Go", variant="primary")
|
| 72 |
+
clear_btn = gr.Button("Clear", variant="secondary")
|
| 73 |
+
|
| 74 |
+
def go(*_args):
|
| 75 |
+
time.sleep(3)
|
| 76 |
+
return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
| 77 |
+
|
| 78 |
+
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
| 79 |
+
|
| 80 |
+
def clear():
|
| 81 |
+
time.sleep(0.2)
|
| 82 |
+
|
| 83 |
+
clear_btn.click(clear, None, img)
|
| 84 |
+
|
| 85 |
+
with gr.Row():
|
| 86 |
+
btn1 = gr.Button("Button 1", size="sm")
|
| 87 |
+
btn2 = gr.UploadButton(size="sm")
|
| 88 |
+
stop_btn = gr.Button("Stop", size="sm", variant="stop")
|
| 89 |
+
|
| 90 |
+
with gr.Row():
|
| 91 |
+
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
|
| 92 |
+
gr.JSON(
|
| 93 |
+
value={"a": 1, "b": 2, "c": {"test": "a", "test2": [1, 2, 3]}}, label="JSON"
|
| 94 |
+
)
|
| 95 |
+
gr.Label(value={"cat": 0.7, "dog": 0.2, "fish": 0.1})
|
| 96 |
+
gr.File()
|
| 97 |
+
with gr.Row():
|
| 98 |
+
gr.ColorPicker()
|
| 99 |
+
gr.Video("https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4")
|
| 100 |
+
gr.Gallery(
|
| 101 |
+
[
|
| 102 |
+
(
|
| 103 |
+
"https://gradio-static-files.s3.us-west-2.amazonaws.com/lion.jpg",
|
| 104 |
+
"lion",
|
| 105 |
+
),
|
| 106 |
+
(
|
| 107 |
+
"https://gradio-static-files.s3.us-west-2.amazonaws.com/logo.png",
|
| 108 |
+
"logo",
|
| 109 |
+
),
|
| 110 |
+
(
|
| 111 |
+
"https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
|
| 112 |
+
"tower",
|
| 113 |
+
),
|
| 114 |
+
],
|
| 115 |
+
height=200,
|
| 116 |
+
)
|
| 117 |
+
|
| 118 |
+
with gr.Row():
|
| 119 |
+
with gr.Column(scale=2):
|
| 120 |
+
chatbot = gr.Chatbot(
|
| 121 |
+
[
|
| 122 |
+
{"role": "user", "content": "Hello"},
|
| 123 |
+
{"role": "assistant", "content": "Hi"},
|
| 124 |
+
],
|
| 125 |
+
label="Chatbot",
|
| 126 |
+
)
|
| 127 |
+
chat_btn = gr.Button("Add messages")
|
| 128 |
+
|
| 129 |
+
def add_messages(history):
|
| 130 |
+
time.sleep(2)
|
| 131 |
+
return history + [
|
| 132 |
+
{"role": "user", "content": "How are you?"},
|
| 133 |
+
{"role": "assistant", "content": "I am good."},
|
| 134 |
+
]
|
| 135 |
+
|
| 136 |
+
chat_btn.click(add_messages, chatbot, chatbot)
|
| 137 |
+
with gr.Column(scale=1):
|
| 138 |
+
with gr.Accordion("Advanced Settings"):
|
| 139 |
+
gr.Markdown("Hello")
|
| 140 |
+
gr.Number(label="Chatbot control 1")
|
| 141 |
+
gr.Number(label="Chatbot control 2")
|
| 142 |
+
gr.Number(label="Chatbot control 3")
|
| 143 |
+
|
| 144 |
+
|
| 145 |
+
if __name__ == "__main__":
|
| 146 |
+
demo.queue().launch(theme='hmb/wii')
|
themes/theme_schema@0.0.1.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"theme": {"_font": [{"__gradio_font__": true, "name": "Nunito", "class": "google", "weights": [400, 600]}, "ui-sans-serif", "system-ui", "sans-serif"], "_font_css": [], "_font_mono": [{"__gradio_font__": true, "name": "Nunito", "class": "google", "weights": [400, 600]}, "ui-monospace", "Consolas", "monospace"], "_stylesheets": ["https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap", "https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap"], "accordion_text_color": "*body_text_color", "accordion_text_color_dark": "*body_text_color", "background_fill_primary": "#e0e0e0", "background_fill_primary_dark": "#2a2a2a", "background_fill_secondary": "#d8d8d8", "background_fill_secondary_dark": "#333333", "block_background_fill": "linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%)", "block_background_fill_dark": "#3a3a3a", "block_border_color": "#c8c8c8", "block_border_color_dark": "#505050", "block_border_width": "1px", "block_info_text_color": "*body_text_color_subdued", "block_info_text_color_dark": "*body_text_color_subdued", "block_info_text_size": "*text_sm", "block_info_text_weight": "400", "block_label_background_fill": "*primary_100", "block_label_background_fill_dark": "*primary_900", "block_label_border_color": "*primary_300", "block_label_border_color_dark": "*primary_700", "block_label_border_width": "1px", "block_label_margin": "0", "block_label_padding": "*spacing_sm *spacing_md", "block_label_radius": "*radius_md", "block_label_right_radius": "0 calc(*radius_sm - 1px) 0 calc(*radius_sm - 1px)", "block_label_shadow": "none", "block_label_text_color": "*primary_800", "block_label_text_color_dark": "*primary_200", "block_label_text_size": "*text_sm", "block_label_text_weight": "800", "block_padding": "*spacing_xl", "block_radius": "*radius_lg", "block_shadow": "0 2px 6px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8)", "block_shadow_dark": "0 2px 6px rgba(0, 0, 0, 0.3)", "block_title_background_fill": "*primary_100", "block_title_background_fill_dark": "*primary_900", "block_title_border_color": "*primary_300", "block_title_border_color_dark": "*primary_700", "block_title_border_width": "1px", "block_title_padding": "*spacing_sm *spacing_md", "block_title_radius": "*radius_md", "block_title_text_color": "*primary_800", "block_title_text_color_dark": "*primary_200", "block_title_text_size": "*text_md", "block_title_text_weight": "800", "body_background_fill": "#e0e0e0", "body_background_fill_dark": "#2a2a2a", "body_text_color": "#333333", "body_text_color_dark": "#e8e8e8", "body_text_color_subdued": "#666666", "body_text_color_subdued_dark": "#aaaaaa", "body_text_size": "*text_md", "body_text_weight": "700", "border_color_accent": "*primary_300", "border_color_accent_dark": "*neutral_600", "border_color_accent_subdued": "*border_color_accent", "border_color_accent_subdued_dark": "*border_color_accent", "border_color_primary": "*neutral_200", "border_color_primary_dark": "*neutral_700", "button_border_width": "1px", "button_cancel_background_fill": "linear-gradient(180deg, #ffffff 0%, #eeeeee 100%)", "button_cancel_background_fill_dark": "#444444", "button_cancel_background_fill_hover": "linear-gradient(180deg, #fff0f0 0%, #ffe0e0 100%)", "button_cancel_background_fill_hover_dark": "#7f1d1d", "button_cancel_border_color": "#fca5a5", "button_cancel_border_color_dark": "#b91c1c", "button_cancel_border_color_hover": "*button_secondary_border_color_hover", "button_cancel_border_color_hover_dark": "*button_secondary_border_color_hover", "button_cancel_shadow": "0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8)", "button_cancel_shadow_active": "*button_secondary_shadow_active", "button_cancel_shadow_active_dark": "*button_secondary_shadow_active", "button_cancel_shadow_dark": "*button_secondary_shadow", "button_cancel_shadow_hover": "*button_secondary_shadow_hover", "button_cancel_shadow_hover_dark": "*button_secondary_shadow_hover", "button_cancel_text_color": "#dc2626", "button_cancel_text_color_dark": "#fca5a5", "button_cancel_text_color_hover": "*button_secondary_text_color_hover", "button_cancel_text_color_hover_dark": "white", "button_large_padding": "*spacing_lg calc(2 * *spacing_lg)", "button_large_radius": "*radius_md", "button_large_text_size": "*text_lg", "button_large_text_weight": "600", "button_medium_padding": "*spacing_md calc(2 * *spacing_md)", "button_medium_radius": "*radius_md", "button_medium_text_size": "*text_md", "button_medium_text_weight": "600", "button_primary_background_fill": "linear-gradient(180deg, #ffffff 0%, #d0f2f5 100%)", "button_primary_background_fill_dark": "*primary_600", "button_primary_background_fill_hover": "linear-gradient(180deg, #ffffff 0%, #b8ecf0 100%)", "button_primary_background_fill_hover_dark": "*primary_500", "button_primary_border_color": "#6ae3ed", "button_primary_border_color_dark": "*primary_700", "button_primary_border_color_hover": "*primary_500", "button_primary_border_color_hover_dark": "*primary_500", "button_primary_shadow": "0 2px 8px rgba(0, 184, 201, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9)", "button_primary_shadow_active": "*shadow_inset", "button_primary_shadow_active_dark": "*button_primary_shadow", "button_primary_shadow_hover": "0 3px 12px rgba(0, 184, 201, 0.35)", "button_primary_shadow_hover_dark": "*button_primary_shadow", "button_primary_text_color": "#444444", "button_primary_text_color_dark": "white", "button_primary_text_color_hover": "*button_primary_text_color", "button_primary_text_color_hover_dark": "*button_primary_text_color", "button_secondary_background_fill": "linear-gradient(180deg, #ffffff 0%, #eeeeee 100%)", "button_secondary_background_fill_dark": "#444444", "button_secondary_background_fill_hover": "linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%)", "button_secondary_background_fill_hover_dark": "#505050", "button_secondary_border_color": "#b8b8b8", "button_secondary_border_color_dark": "#606060", "button_secondary_border_color_hover": "*neutral_200", "button_secondary_border_color_hover_dark": "*neutral_500", "button_secondary_shadow": "0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8)", "button_secondary_shadow_active": "*shadow_inset", "button_secondary_shadow_active_dark": "*button_secondary_shadow", "button_secondary_shadow_hover": "0 3px 8px rgba(0, 0, 0, 0.12)", "button_secondary_shadow_hover_dark": "*button_secondary_shadow", "button_secondary_text_color": "#444444", "button_secondary_text_color_dark": "#e0e0e0", "button_secondary_text_color_hover": "*button_secondary_text_color", "button_secondary_text_color_hover_dark": "*button_secondary_text_color", "button_small_padding": "*spacing_sm calc(1.5 * *spacing_sm)", "button_small_radius": "*radius_md", "button_small_text_size": "*text_sm", "button_small_text_weight": "400", "button_transform_active": "scale(0.98)", "button_transform_hover": "scale(1.01)", "button_transition": "all 0.1s ease", "chatbot_text_size": "*text_lg", "checkbox_background_color": "*background_fill_primary", "checkbox_background_color_dark": "*neutral_800", "checkbox_background_color_focus": "*checkbox_background_color", "checkbox_background_color_focus_dark": "*checkbox_background_color", "checkbox_background_color_hover": "*checkbox_background_color", "checkbox_background_color_hover_dark": "*checkbox_background_color", "checkbox_background_color_selected": "*primary_500", "checkbox_background_color_selected_dark": "*color_accent", "checkbox_border_color": "#b0b0b0", "checkbox_border_color_dark": "#666666", "checkbox_border_color_focus": "*color_accent", "checkbox_border_color_focus_dark": "*color_accent", "checkbox_border_color_hover": "*neutral_300", "checkbox_border_color_hover_dark": "*neutral_600", "checkbox_border_color_selected": "*primary_600", "checkbox_border_color_selected_dark": "*color_accent", "checkbox_border_radius": "*radius_sm", "checkbox_border_width": "2px", "checkbox_border_width_dark": "*input_border_width", "checkbox_check": "url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e\")", "checkbox_label_background_fill": "linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%)", "checkbox_label_background_fill_dark": "#444444", "checkbox_label_background_fill_hover": "linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%)", "checkbox_label_background_fill_hover_dark": "#505050", "checkbox_label_background_fill_selected": "linear-gradient(180deg, *primary_100 0%, *primary_200 100%)", "checkbox_label_background_fill_selected_dark": "*primary_800", "checkbox_label_border_color": "#c0c0c0", "checkbox_label_border_color_dark": "#606060", "checkbox_label_border_color_hover": "*checkbox_label_border_color", "checkbox_label_border_color_hover_dark": "*checkbox_label_border_color", "checkbox_label_border_color_selected": "*primary_400", "checkbox_label_border_color_selected_dark": "*primary_500", "checkbox_label_border_width": "1px", "checkbox_label_border_width_dark": "*input_border_width", "checkbox_label_gap": "*spacing_lg", "checkbox_label_padding": "*spacing_md calc(2 * *spacing_md)", "checkbox_label_shadow": "0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8)", "checkbox_label_shadow_active": "*shadow_inset", "checkbox_label_shadow_hover": "0 3px 6px rgba(0, 0, 0, 0.1)", "checkbox_label_text_color": "*body_text_color", "checkbox_label_text_color_dark": "*body_text_color", "checkbox_label_text_color_selected": "*primary_800", "checkbox_label_text_color_selected_dark": "*primary_100", "checkbox_label_text_size": "*text_md", "checkbox_label_text_weight": "400", "checkbox_shadow": "inset 0 1px 2px rgba(0, 0, 0, 0.1)", "code_background_fill": "*neutral_100", "code_background_fill_dark": "*neutral_800", "color_accent": "*primary_500", "color_accent_soft": "*primary_50", "color_accent_soft_dark": "*neutral_700", "container_radius": "*radius_sm", "custom_css": "\n.gradio-container {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAEsCAIAAAA6nJx9AAAE8UlEQVR42u3du00kQRRA0W4oFzwIAGKDGIgFEiIIuiWcMRgPXODhjDUSGo3U1V2fcwJgtfV5lxpW7Ljb7QYA+pMiwioAdOjCEgAIAAACAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAIAAACAIAAACAAAAgAAC1IEWEVALwAABAAAAQAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAABAAAAQAAAEAQAAAEAAABAAAAQBAAAAQAAAEAEAAABAAAAQAAAEAQAAAEAAA6pQiwioAeAEAIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAgAAAIAAACAAAAgCAAAAgAADUKUWEVQDwAgBAAAAQAAAEAAABAEAAABAAAAQAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAABAAAAQAAAEAQAAAEAAAAQBAAAAQAAAEAAABAEAAAKhTigirAOAFAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAgAAACAIAAACAAAAgAAAIAgAAAUKcUEVYBwAsAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAABAAAAQAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAAAQAAAEAQAAAEAAABAAAAQCgTikirAKAFwAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAAIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAACAAAAgCAAAAgAAAIAAACAECdUkRYBQAvAAAEAAABAEAAABAAAAQAAAEAQAAAEAAASpMsAZTs+fKqjb/I48+X3SzNOM+zVQBjXSoEADDfRUIAgAJGfDOTzooJABhbhtRmqbDsAgDZJ45BU9eWdbtfAoDBYWTY4k53WQAwBQx6p6LTIyEAuNWmvCPU6RESAFxUyHLeyj9sAkCb18+gRxUEALMeVEEAMOtBFQQAFwB8AyQAmPX/uvv4bXjL5lu/Db73KggAfc36tme6WrhoZ90yAaCRWW+y64T7eO6VHJ/e9z5spfx/X7/JfG97nFlSl/cQAD+Ic1ZKmPUrjCQDyNa46WcEQBj8MqwqRonx0XAnbG6m4TBO0zQMw0u6XvaPefj+tNZZLbtli+/X/T6W/YLTzWjTG+BgFOUQgNUGjUKsP9zzLbvLjOPUeADWH1KtpqLeFVv2ZrqWOIHVB6CQYdetHF1c8Jq5Y1TXhg4Pba4AKETJj56l7owpTw9taPicbxaADlOx/mdZLgC4F3UHAE9gcJUEwNE06MHtEwDnzKAHF1YAHBqrCq65ADS48aY8GBGZRoQAbLxtpjyw1ZAZh9e3bkfSCsttygPFDqsTAcB8B1otRLJwJjvQyYA66sSJnwFs8iGJmQ6wgmREAvTJ/7MDIAAACAAAAgCAAAAgAAAIAAACAIAAACAAAAgAAAIAgAAAsIEUEVYBwAsAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAABAAAAQAAAEAQAAAEAAABAAAAQBAAAAQAAAEAAABAEAAAAQAAAEAQAAAEAAABACA6v0BoshzOf1vBa8AAAAASUVORK5CYII=\") no-repeat center bottom / cover, #e6e6e6 !important;\n}\n.dark .gradio-container {\n background: #2a2a2a !important;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb {\n -webkit-appearance: none !important;\n appearance: none !important;\n width: 20px !important;\n height: 20px !important;\n background: white !important;\n border: 3px solid #00b8c9 !important;\n border-radius: 50% !important;\n box-shadow: 0 1px 6px rgba(0, 184, 201, 0.3) !important;\n cursor: pointer !important;\n margin-top: -7px !important;\n}\ninput[type=\"range\"]::-moz-range-thumb {\n appearance: none !important;\n width: 20px !important;\n height: 20px !important;\n background: white !important;\n border: 3px solid #00b8c9 !important;\n border-radius: 50% !important;\n box-shadow: 0 1px 6px rgba(0, 184, 201, 0.3) !important;\n cursor: pointer !important;\n}\n\nbutton.primary {\n background: linear-gradient(180deg, #ffffff 0%, #e8f8fa 40%, #d0f2f5 100%) !important;\n color: #444444 !important;\n border: 3px solid #6ae3ed !important;\n box-shadow: 0 2px 8px rgba(0, 184, 201, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;\n}\nbutton.primary:hover {\n background: linear-gradient(180deg, #ffffff 0%, #d8f4f7 40%, #b8ecf0 100%) !important;\n box-shadow: 0 3px 12px rgba(0, 184, 201, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;\n}\n\nbutton.secondary {\n background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 50%, #e4e4e4 100%) !important;\n border: 2px solid #c0c0c0 !important;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;\n}\nbutton.secondary:hover {\n background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 50%, #ececec 100%) !important;\n box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;\n}\n", "embed_radius": "*radius_sm", "error_background_fill": "#fef2f2", "error_background_fill_dark": "#6c1e1e", "error_border_color": "#fca5a5", "error_border_color_dark": "#b91c1c", "error_border_width": "1px", "error_icon_color": "#ef4444", "error_icon_color_dark": "#f87171", "error_text_color": "#b91c1c", "error_text_color_dark": "#fca5a5", "font": "'Nunito', ui-sans-serif, system-ui, sans-serif", "font_mono": "'Nunito', ui-monospace, Consolas, monospace", "form_gap_width": "0px", "input_background_fill": "#f8f8f8", "input_background_fill_dark": "#333333", "input_background_fill_focus": "white", "input_background_fill_focus_dark": "#3a3a3a", "input_background_fill_hover": "*input_background_fill", "input_background_fill_hover_dark": "*input_background_fill", "input_border_color": "#c0c0c0", "input_border_color_dark": "#555555", "input_border_color_focus": "*primary_400", "input_border_color_focus_dark": "*neutral_700", "input_border_color_hover": "*input_border_color", "input_border_color_hover_dark": "*input_border_color", "input_border_width": "1px", "input_padding": "*spacing_xl", "input_placeholder_color": "#999999", "input_placeholder_color_dark": "#777777", "input_radius": "*radius_sm", "input_shadow": "inset 0 1px 3px rgba(0, 0, 0, 0.08)", "input_shadow_dark": "inset 0 1px 3px rgba(0, 0, 0, 0.2)", "input_shadow_focus": "0 0 0 3px rgba(0, 184, 201, 0.25)", "input_shadow_focus_dark": "0 0 0 3px rgba(0, 184, 201, 0.3)", "input_text_size": "*text_md", "input_text_weight": "400", "layout_gap": "*spacing_xxl", "link_text_color": "*primary_700", "link_text_color_active": "*secondary_600", "link_text_color_active_dark": "*secondary_500", "link_text_color_dark": "*primary_300", "link_text_color_hover": "*primary_500", "link_text_color_hover_dark": "*primary_200", "link_text_color_visited": "*secondary_500", "link_text_color_visited_dark": "*secondary_600", "loader_color": "*primary_500", "name": "wii", "neutral_100": "#f3f4f6", "neutral_200": "#e5e7eb", "neutral_300": "#d1d5db", "neutral_400": "#9ca3af", "neutral_50": "#f9fafb", "neutral_500": "#6b7280", "neutral_600": "#4b5563", "neutral_700": "#374151", "neutral_800": "#1f2937", "neutral_900": "#111827", "neutral_950": "#0b0f19", "panel_background_fill": "#e8e8e8", "panel_background_fill_dark": "#333333", "panel_border_color": "#c8c8c8", "panel_border_color_dark": "#505050", "panel_border_width": "1px", "primary_100": "#d0f7fa", "primary_200": "#a6eff5", "primary_300": "#6ae3ed", "primary_400": "#2ccfde", "primary_50": "#edfcfd", "primary_500": "#00b8c9", "primary_600": "#009aaa", "primary_700": "#007c8a", "primary_800": "#006470", "primary_900": "#00535e", "primary_950": "#003640", "prose_header_text_weight": "600", "prose_text_size": "*text_md", "prose_text_weight": "400", "radio_circle": "url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e\")", "radius_lg": "12px", "radius_md": "10px", "radius_sm": "8px", "radius_xl": "16px", "radius_xs": "6px", "radius_xxl": "20px", "radius_xxs": "4px", "secondary_100": "#d0f7fa", "secondary_200": "#a6eff5", "secondary_300": "#6ae3ed", "secondary_400": "#2ccfde", "secondary_50": "#edfcfd", "secondary_500": "#00b8c9", "secondary_600": "#009aaa", "secondary_700": "#007c8a", "secondary_800": "#006470", "secondary_900": "#00535e", "secondary_950": "#003640", "section_header_text_size": "*text_md", "section_header_text_weight": "400", "shadow_drop": "0 2px 4px 0 rgba(0, 0, 0, 0.12)", "shadow_drop_lg": "0 3px 10px 0 rgba(0, 0, 0, 0.15)", "shadow_inset": "rgba(0,0,0,0.1) 0px 2px 6px 0px inset", "shadow_spread": "4px", "shadow_spread_dark": "1px", "slider_color": "*primary_500", "spacing_lg": "8px", "spacing_md": "6px", "spacing_sm": "4px", "spacing_xl": "10px", "spacing_xs": "2px", "spacing_xxl": "16px", "spacing_xxs": "1px", "stat_background_fill": "*primary_300", "stat_background_fill_dark": "*primary_500", "table_border_color": "#c8c8c8", "table_border_color_dark": "#505050", "table_even_background_fill": "white", "table_even_background_fill_dark": "#3a3a3a", "table_odd_background_fill": "#f0f0f0", "table_odd_background_fill_dark": "#333333", "table_radius": "*radius_sm", "table_row_focus": "*primary_50", "table_row_focus_dark": "*primary_900", "table_text_color": "*body_text_color", "table_text_color_dark": "*body_text_color", "text_lg": "16px", "text_md": "14px", "text_sm": "12px", "text_xl": "22px", "text_xs": "10px", "text_xxl": "26px", "text_xxs": "9px"}, "gradio_version": "6.11.0", "version": {"version": "0.0.1"}}
|