Updating theme
Browse files- README.md +17 -13
- app.py +146 -0
- themes/theme_schema@0.0.1.json +1 -0
README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
app_file: app.py
|
| 10 |
-
pinned: false
|
| 11 |
-
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags: [gradio-theme]
|
| 4 |
+
title: oneplus
|
| 5 |
+
colorFrom: red
|
| 6 |
+
colorTo: purple
|
| 7 |
+
sdk: gradio
|
| 8 |
+
sdk_version: 6.14.0
|
| 9 |
+
app_file: app.py
|
| 10 |
+
pinned: false
|
| 11 |
+
license: apache-2.0
|
| 12 |
+
---
|
| 13 |
+
# oneplus
|
| 14 |
+
## Description
|
| 15 |
+
Add a description of this theme here!
|
| 16 |
+
## Contributions
|
| 17 |
+
Thanks to [@harsh8001](https://huggingface.co/harsh8001) 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: `oneplus`
|
| 14 |
+
To use this theme, set `theme='harsh8001/oneplus'` 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='harsh8001/oneplus')
|
themes/theme_schema@0.0.1.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"theme": {"_font": [{"__gradio_font__": true, "name": "Lora", "class": "google", "weights": [400, 600]}, "ui-sans-serif", "system-ui", "sans-serif"], "_font_css": ["\n@font-face {\n font-family: 'IBM Plex Mono';\n src: url('static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2') format('woff2');\n font-weight: 400;\n font-style: normal;\n}\n\n\n@font-face {\n font-family: 'IBM Plex Mono';\n src: url('static/fonts/IBMPlexMono/IBMPlexMono-Bold.woff2') format('woff2');\n font-weight: 700;\n font-style: normal;\n}\n"], "_font_mono": [{"__gradio_font__": true, "name": "IBM Plex Mono", "class": "local", "weights": [400, 700]}, "ui-monospace", "Consolas", "monospace"], "_stylesheets": ["https://fonts.googleapis.com/css2?family=Lora:wght@400;600&display=swap"], "accordion_text_color": "*body_text_color", "accordion_text_color_dark": "*body_text_color", "background_fill_primary": "rgba(255,255,255,0.78)", "background_fill_primary_dark": "rgba(18,18,18,0.78)", "background_fill_secondary": "#ffffff", "background_fill_secondary_dark": "#121212", "block_background_fill": "linear-gradient(145deg, rgba(255,255,255,0.85) 0%, rgba(245,245,245,0.95) 100%)", "block_background_fill_dark": "linear-gradient(145deg, rgba(20,20,20,0.88) 0%, rgba(5,5,5,0.96) 100%)", "block_border_color": "rgba(255,0,0,0.10)", "block_border_color_dark": "rgba(255,0,0,0.18)", "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": "*background_fill_primary", "block_label_background_fill_dark": "*background_fill_secondary", "block_label_border_color": "*border_color_primary", "block_label_border_color_dark": "*border_color_primary", "block_label_border_width": "1px", "block_label_margin": "0", "block_label_padding": "*spacing_sm *spacing_lg", "block_label_radius": "calc(*radius_sm - 1px) 0 calc(*radius_sm - 1px) 0", "block_label_right_radius": "0 calc(*radius_sm - 1px) 0 calc(*radius_sm - 1px)", "block_label_shadow": "*block_shadow", "block_label_text_color": "#555555", "block_label_text_color_dark": "#d4d4d4", "block_label_text_size": "*text_md", "block_label_text_weight": "600", "block_padding": "*spacing_xl calc(*spacing_xl + 2px)", "block_radius": "*radius_sm", "block_shadow": "0 8px 25px rgba(0,0,0,0.06)", "block_shadow_dark": "*shadow_drop_lg", "block_title_background_fill": "none", "block_title_border_color": "none", "block_title_border_width": "0px", "block_title_padding": "0", "block_title_radius": "none", "block_title_text_color": "#111111", "block_title_text_color_dark": "#ffffff", "block_title_text_size": "*text_md", "block_title_text_weight": "600", "body_background_fill": "linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%)", "body_background_fill_dark": "linear-gradient(180deg, #0b0b0b 0%, #000000 100%)", "body_text_color": "#111111", "body_text_color_dark": "#ffffff", "body_text_color_subdued": "*neutral_700", "body_text_color_subdued_dark": "*neutral_400", "body_text_size": "*text_md", "body_text_weight": "400", "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": "0px", "button_border_width_dark": "0px", "button_cancel_background_fill": "*button_secondary_background_fill", "button_cancel_background_fill_dark": "*button_secondary_background_fill", "button_cancel_background_fill_hover": "*button_secondary_background_fill_hover", "button_cancel_background_fill_hover_dark": "*button_secondary_background_fill_hover", "button_cancel_border_color": "*neutral_900", "button_cancel_border_color_dark": "*button_secondary_border_color", "button_cancel_border_color_hover": "*button_secondary_border_color_hover", "button_cancel_border_color_hover_dark": "*button_secondary_border_color_hover", "button_cancel_shadow": "*button_secondary_shadow", "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": "*button_secondary_text_color", "button_cancel_text_color_dark": "*button_secondary_text_color", "button_cancel_text_color_hover": "*button_secondary_text_color_hover", "button_cancel_text_color_hover_dark": "white", "button_large_padding": "*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(135deg, #ff1a1a 0%, #cc0000 100%)", "button_primary_background_fill_dark": "linear-gradient(135deg, #ff1a1a 0%, #990000 100%)", "button_primary_background_fill_hover": "linear-gradient(135deg, #ff3333 0%, #e60000 100%)", "button_primary_background_fill_hover_dark": "linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%)", "button_primary_border_color": "*neutral_900", "button_primary_border_color_dark": "*primary_600", "button_primary_border_color_hover": "*primary_500", "button_primary_border_color_hover_dark": "*primary_500", "button_primary_shadow": "0 10px 24px rgba(255,0,0,0.20)", "button_primary_shadow_active": "*button_primary_shadow", "button_primary_shadow_active_dark": "*button_primary_shadow", "button_primary_shadow_hover": "*button_primary_shadow", "button_primary_shadow_hover_dark": "*button_primary_shadow", "button_primary_text_color": "#ffffff", "button_primary_text_color_dark": "#ffffff", "button_primary_text_color_hover": "*button_primary_text_color", "button_primary_text_color_hover_dark": "*button_primary_text_color", "button_secondary_background_fill": "rgba(255,255,255,0.72)", "button_secondary_background_fill_dark": "rgba(255,255,255,0.03)", "button_secondary_background_fill_hover": "rgba(255,255,255,0.95)", "button_secondary_background_fill_hover_dark": "rgba(255,255,255,0.06)", "button_secondary_border_color": "rgba(255,0,0,0.10)", "button_secondary_border_color_dark": "rgba(255,0,0,0.16)", "button_secondary_border_color_hover": "*neutral_400", "button_secondary_border_color_hover_dark": "*neutral_500", "button_secondary_shadow": "*button_primary_shadow", "button_secondary_shadow_active": "*button_secondary_shadow", "button_secondary_shadow_active_dark": "*button_secondary_shadow", "button_secondary_shadow_hover": "*button_secondary_shadow", "button_secondary_shadow_hover_dark": "*button_secondary_shadow", "button_secondary_text_color": "#111111", "button_secondary_text_color_dark": "#ffffff", "button_secondary_text_color_hover": "*neutral_400", "button_secondary_text_color_hover_dark": "*button_secondary_text_color", "button_small_padding": "*spacing_sm", "button_small_radius": "*radius_md", "button_small_text_size": "*text_sm", "button_small_text_weight": "400", "button_transform_active": "none", "button_transform_hover": "none", "button_transition": "all 0.2s ease", "chatbot_text_size": "*text_lg", "checkbox_background_color": "#ff0000", "checkbox_background_color_dark": "#ff3333", "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": "#cc0000", "checkbox_background_color_selected_dark": "#ff4d4d", "checkbox_border_color": "#ff3333", "checkbox_border_color_dark": "#ff6666", "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": "*color_accent", "checkbox_border_color_selected_dark": "*color_accent", "checkbox_border_radius": "*radius_sm", "checkbox_border_width": "*input_border_width", "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": "*button_secondary_background_fill", "checkbox_label_background_fill_dark": "*button_secondary_background_fill", "checkbox_label_background_fill_hover": "*button_secondary_background_fill_hover", "checkbox_label_background_fill_hover_dark": "*button_secondary_background_fill_hover", "checkbox_label_background_fill_selected": "*button_primary_background_fill", "checkbox_label_background_fill_selected_dark": "*checkbox_label_background_fill", "checkbox_label_border_color": "*checkbox_background_color", "checkbox_label_border_color_dark": "*border_color_primary", "checkbox_label_border_color_hover": "*button_secondary_border_color_hover", "checkbox_label_border_color_hover_dark": "*checkbox_label_border_color", "checkbox_label_border_color_selected": "*button_primary_border_color", "checkbox_label_border_color_selected_dark": "*checkbox_label_border_color", "checkbox_label_border_width": "*button_border_width", "checkbox_label_border_width_dark": "*input_border_width", "checkbox_label_gap": "*spacing_lg", "checkbox_label_padding": "*spacing_sm", "checkbox_label_shadow": "none", "checkbox_label_shadow_active": "*checkbox_label_shadow", "checkbox_label_shadow_hover": "*checkbox_label_shadow", "checkbox_label_text_color": "*body_text_color", "checkbox_label_text_color_dark": "*body_text_color", "checkbox_label_text_color_selected": "*button_primary_text_color", "checkbox_label_text_color_selected_dark": "*checkbox_label_text_color", "checkbox_label_text_size": "*text_md", "checkbox_label_text_weight": "400", "checkbox_shadow": "*input_shadow", "code_background_fill": "rgba(255,0,0,0.04)", "code_background_fill_dark": "rgba(255,0,0,0.08)", "color_accent": "#ff0000", "color_accent_soft": "#ffe5e5", "color_accent_soft_dark": "#220000", "container_radius": "*radius_sm", "custom_css": "", "embed_radius": "*radius_sm", "error_background_fill": "#fff1f1", "error_background_fill_dark": "#2a0a0a", "error_border_color": "#ff4d4d", "error_border_color_dark": "#ff6666", "error_border_width": "1px", "error_icon_color": "#b91c1c", "error_icon_color_dark": "#ef4444", "error_text_color": "#cc0000", "error_text_color_dark": "#ffb3b3", "font": "'Lora', ui-sans-serif, system-ui, sans-serif", "font_mono": "'IBM Plex Mono', ui-monospace, Consolas, monospace", "form_gap_width": "0px", "input_background_fill": "linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%)", "input_background_fill_dark": "linear-gradient(180deg, rgba(25,25,25,0.95) 0%, rgba(10,10,10,1) 100%)", "input_background_fill_focus": "*input_background_fill", "input_background_fill_hover": "*input_background_fill", "input_background_fill_hover_dark": "*input_background_fill", "input_border_color": "rgba(255,0,0,0.12)", "input_border_color_dark": "rgba(255,0,0,0.18)", "input_border_color_focus": "#ff0000", "input_border_color_focus_dark": "#ff3333", "input_border_color_hover": "*input_border_color", "input_border_color_hover_dark": "*input_border_color", "input_border_width": "1px", "input_border_width_dark": "1px", "input_padding": "*spacing_xl", "input_placeholder_color": "#888888", "input_placeholder_color_dark": "#777777", "input_radius": "*radius_sm", "input_shadow": "none", "input_shadow_focus": "*input_shadow", "input_text_size": "*text_md", "input_text_weight": "400", "layout_gap": "*spacing_xxl", "link_text_color": "#ff0000", "link_text_color_active": "*secondary_600", "link_text_color_active_dark": "*secondary_500", "link_text_color_dark": "#ff4d4d", "link_text_color_hover": "#cc0000", "link_text_color_hover_dark": "#ff8080", "link_text_color_visited": "*secondary_500", "link_text_color_visited_dark": "*secondary_600", "loader_color": "*color_accent", "name": "monochrome", "neutral_100": "#f4f4f5", "neutral_200": "#e4e4e7", "neutral_300": "#d4d4d8", "neutral_400": "#bbbbc2", "neutral_50": "#fafafa", "neutral_500": "#71717a", "neutral_600": "#52525b", "neutral_700": "#3f3f46", "neutral_800": "#27272a", "neutral_900": "#18181b", "neutral_950": "#0f0f11", "panel_background_fill": "*background_fill_secondary", "panel_background_fill_dark": "*background_fill_secondary", "panel_border_color": "*border_color_primary", "panel_border_color_dark": "*border_color_primary", "panel_border_width": "0", "primary_100": "#fee2e2", "primary_200": "#fecaca", "primary_300": "#fca5a5", "primary_400": "#f87171", "primary_50": "#fef2f2", "primary_500": "#ef4444", "primary_600": "#dc2626", "primary_700": "#b91c1c", "primary_800": "#991b1b", "primary_900": "#7f1d1d", "primary_950": "#6c1e1e", "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": "8px", "radius_sm": "6px", "radius_xl": "16px", "radius_xs": "4px", "radius_xxl": "24px", "radius_xxs": "2px", "secondary_100": "#f5f5f5", "secondary_200": "#e5e5e5", "secondary_300": "#d4d4d4", "secondary_400": "#a3a3a3", "secondary_50": "#fafafa", "secondary_500": "#737373", "secondary_600": "#525252", "secondary_700": "#404040", "secondary_800": "#262626", "secondary_900": "#171717", "secondary_950": "#0f0f0f", "section_header_text_size": "*text_md", "section_header_text_weight": "400", "shadow_drop": "0 8px 28px rgba(0,0,0,0.08)", "shadow_drop_lg": "0 20px 55px rgba(0,0,0,0.14)", "shadow_inset": "rgba(0,0,0,0.05) 0px 2px 4px 0px inset", "shadow_spread": "3px", "shadow_spread_dark": "1px", "slider_color": "#ff0000", "slider_color_dark": "#ff3333", "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": "rgba(255,0,0,0.06)", "table_border_color_dark": "rgba(255,0,0,0.10)", "table_even_background_fill": "rgba(255,255,255,0.82)", "table_even_background_fill_dark": "rgba(18,18,18,0.82)", "table_odd_background_fill": "rgba(248,248,248,0.92)", "table_odd_background_fill_dark": "rgba(10,10,10,0.92)", "table_radius": "*radius_sm", "table_row_focus": "*color_accent_soft", "table_row_focus_dark": "*color_accent_soft", "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.14.0", "version": {"version": "0.0.1"}}
|