Spaces:
Runtime error
Runtime error
Updating theme
Browse files- README.md +10 -11
- app.py +14 -19
- themes/[email protected] +1 -0
README.md
CHANGED
@@ -1,18 +1,17 @@
|
|
|
|
1 |
---
|
2 |
-
tags:
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
title: Trimble Gradio Theme
|
7 |
-
emoji: 🚀
|
8 |
-
colorFrom: gray
|
9 |
-
colorTo: gray
|
10 |
sdk: gradio
|
11 |
-
sdk_version:
|
12 |
app_file: app.py
|
13 |
pinned: false
|
14 |
license: apache-2.0
|
15 |
---
|
16 |
-
#
|
17 |
## Description
|
18 |
-
|
|
|
|
|
|
1 |
+
|
2 |
---
|
3 |
+
tags: [gradio-theme]
|
4 |
+
title: trimble_ai_theme
|
5 |
+
colorFrom: red
|
6 |
+
colorTo: purple
|
|
|
|
|
|
|
|
|
7 |
sdk: gradio
|
8 |
+
sdk_version: 4.7.1
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
---
|
13 |
+
# trimble_ai_theme
|
14 |
## Description
|
15 |
+
Add a description of this theme here!
|
16 |
+
## Contributions
|
17 |
+
Thanks to [@cdirubio](https://huggingface.co/cdirubio) for adding this gradio theme!
|
app.py
CHANGED
@@ -1,15 +1,11 @@
|
|
1 |
import time
|
2 |
|
3 |
-
from theme_dropdown import create_theme_dropdown # noqa: F401
|
4 |
-
|
5 |
import gradio as gr
|
|
|
6 |
|
7 |
dropdown, js = create_theme_dropdown()
|
8 |
|
9 |
with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
10 |
-
|
11 |
-
gr.HTML("<img src=\"https://huggingface.co/spaces/trimble/trimble_ai_theme/resolve/main/images/logo.png\">")
|
12 |
-
|
13 |
with gr.Row(equal_height=True):
|
14 |
with gr.Column(scale=10):
|
15 |
gr.Markdown(
|
@@ -21,17 +17,16 @@ with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
|
21 |
"""
|
22 |
)
|
23 |
with gr.Column(scale=3):
|
24 |
-
with gr.
|
25 |
dropdown.render()
|
26 |
toggle_dark = gr.Button(value="Toggle Dark")
|
27 |
|
28 |
-
dropdown.change(None, dropdown, None,
|
29 |
toggle_dark.click(
|
30 |
None,
|
31 |
-
|
32 |
() => {
|
33 |
document.body.classList.toggle('dark');
|
34 |
-
document.querySelector('gradio-app').style.backgroundColor = 'var(--color-background-primary)'
|
35 |
}
|
36 |
""",
|
37 |
)
|
@@ -68,18 +63,17 @@ with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
|
68 |
check = gr.Checkbox(label="Go")
|
69 |
with gr.Column(variant="panel", scale=2):
|
70 |
img = gr.Image(
|
71 |
-
"https://
|
|
|
|
|
72 |
)
|
73 |
-
|
74 |
with gr.Row():
|
75 |
-
go_btn = gr.Button("Go",
|
76 |
-
clear_btn = gr.Button(
|
77 |
-
"Clear", label="Secondary Button", variant="secondary"
|
78 |
-
)
|
79 |
|
80 |
def go(*args):
|
81 |
time.sleep(3)
|
82 |
-
return "https://
|
83 |
|
84 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
85 |
|
@@ -92,7 +86,7 @@ with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
|
92 |
with gr.Row():
|
93 |
btn1 = gr.Button("Button 1", size="sm")
|
94 |
btn2 = gr.UploadButton(size="sm")
|
95 |
-
stop_btn = gr.Button("Stop",
|
96 |
|
97 |
with gr.Row():
|
98 |
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
|
@@ -118,7 +112,8 @@ with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
|
118 |
"https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
|
119 |
"tower",
|
120 |
),
|
121 |
-
],
|
|
|
122 |
)
|
123 |
|
124 |
with gr.Row():
|
@@ -146,4 +141,4 @@ with gr.Blocks(theme='trimble/trimble_ai_theme') as demo:
|
|
146 |
|
147 |
|
148 |
if __name__ == "__main__":
|
149 |
-
demo.queue().launch()
|
|
|
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(theme='trimble/trimble_ai_theme') as demo:
|
|
|
|
|
|
|
9 |
with gr.Row(equal_height=True):
|
10 |
with gr.Column(scale=10):
|
11 |
gr.Markdown(
|
|
|
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 |
)
|
|
|
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.jpgjpg"
|
77 |
|
78 |
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
79 |
|
|
|
86 |
with gr.Row():
|
87 |
btn1 = gr.Button("Button 1", size="sm")
|
88 |
btn2 = gr.UploadButton(size="sm")
|
89 |
+
stop_btn = gr.Button("Stop", size="sm", variant="stop")
|
90 |
|
91 |
with gr.Row():
|
92 |
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
|
|
|
112 |
"https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
|
113 |
"tower",
|
114 |
),
|
115 |
+
],
|
116 |
+
height=200,
|
117 |
)
|
118 |
|
119 |
with gr.Row():
|
|
|
141 |
|
142 |
|
143 |
if __name__ == "__main__":
|
144 |
+
demo.queue().launch()
|
themes/[email protected]
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"theme": {"_font": [{"__gradio_font__": true, "name": "Source Sans Pro", "class": "google"}, {"__gradio_font__": true, "name": "ui-sans-serif", "class": "font"}, {"__gradio_font__": true, "name": "system-ui", "class": "font"}, {"__gradio_font__": true, "name": "sans-serif", "class": "font"}], "_font_mono": [{"__gradio_font__": true, "name": "IBM Plex Mono", "class": "google"}, {"__gradio_font__": true, "name": "ui-monospace", "class": "font"}, {"__gradio_font__": true, "name": "Consolas", "class": "font"}, {"__gradio_font__": true, "name": "monospace", "class": "font"}], "_stylesheets": ["https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap", "https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap"], "background_fill_primary": "white", "background_fill_primary_dark": "*neutral_950", "background_fill_secondary": "*neutral_50", "background_fill_secondary_dark": "*neutral_900", "block_background_fill": "*background_fill_primary", "block_background_fill_dark": "*neutral_800", "block_border_color": "*border_color_primary", "block_border_color_dark": "*border_color_primary", "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_lg - 1px) 0 calc(*radius_lg - 1px) 0", "block_label_right_radius": "0 calc(*radius_lg - 1px) 0 calc(*radius_lg - 1px)", "block_label_shadow": "*block_shadow", "block_label_text_color": "*neutral_500", "block_label_text_color_dark": "*neutral_200", "block_label_text_size": "*text_sm", "block_label_text_weight": "400", "block_padding": "*spacing_xl calc(*spacing_xl + 2px)", "block_radius": "*radius_lg", "block_shadow": "none", "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": "*neutral_500", "block_title_text_color_dark": "*neutral_200", "block_title_text_size": "*text_md", "block_title_text_weight": "400", "body_background_fill": "*background_fill_primary", "body_background_fill_dark": "*background_fill_primary", "body_text_color": "*neutral_800", "body_text_color_dark": "*neutral_100", "body_text_color_subdued": "*neutral_400", "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": "*input_border_width", "button_border_width_dark": "*input_border_width", "button_cancel_background_fill": "*button_secondary_background_fill", "button_cancel_background_fill_dark": "*button_secondary_background_fill", "button_cancel_background_fill_hover": "*button_cancel_background_fill", "button_cancel_background_fill_hover_dark": "*button_cancel_background_fill", "button_cancel_border_color": "*button_secondary_border_color", "button_cancel_border_color_dark": "*button_secondary_border_color", "button_cancel_border_color_hover": "*button_cancel_border_color", "button_cancel_border_color_hover_dark": "*button_cancel_border_color", "button_cancel_text_color": "*button_secondary_text_color", "button_cancel_text_color_dark": "*button_secondary_text_color", "button_cancel_text_color_hover": "*button_cancel_text_color", "button_cancel_text_color_hover_dark": "*button_cancel_text_color", "button_large_padding": "*spacing_lg calc(2 * *spacing_lg)", "button_large_radius": "*radius_lg", "button_large_text_size": "*text_lg", "button_large_text_weight": "600", "button_primary_background_fill": "#0063a3", "button_primary_background_fill_dark": "*primary_700", "button_primary_background_fill_hover": "#004f83", "button_primary_background_fill_hover_dark": "*button_primary_background_fill", "button_primary_border_color": "*primary_200", "button_primary_border_color_dark": "*primary_600", "button_primary_border_color_hover": "*button_primary_border_color", "button_primary_border_color_hover_dark": "*button_primary_border_color", "button_primary_text_color": "#ffffff", "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": "#fbad26", "button_secondary_background_fill_dark": "*neutral_600", "button_secondary_background_fill_hover": "#e49325", "button_secondary_background_fill_hover_dark": "*button_secondary_background_fill", "button_secondary_border_color": "*neutral_200", "button_secondary_border_color_dark": "*neutral_600", "button_secondary_border_color_hover": "*button_secondary_border_color", "button_secondary_border_color_hover_dark": "*button_secondary_border_color", "button_secondary_text_color": "#252a2e", "button_secondary_text_color_dark": "white", "button_secondary_text_color_hover": "*button_secondary_text_color", "button_secondary_text_color_hover_dark": "*button_secondary_text_color", "button_shadow": "none", "button_shadow_active": "none", "button_shadow_hover": "none", "button_small_padding": "*spacing_sm calc(2 * *spacing_sm)", "button_small_radius": "*radius_lg", "button_small_text_size": "*text_md", "button_small_text_weight": "400", "button_transition": "background-color 0.2s ease", "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": "*secondary_600", "checkbox_background_color_selected_dark": "*secondary_600", "checkbox_border_color": "*neutral_300", "checkbox_border_color_dark": "*neutral_700", "checkbox_border_color_focus": "*secondary_500", "checkbox_border_color_focus_dark": "*secondary_500", "checkbox_border_color_hover": "*neutral_300", "checkbox_border_color_hover_dark": "*neutral_600", "checkbox_border_color_selected": "*secondary_600", "checkbox_border_color_selected_dark": "*secondary_600", "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": "*checkbox_label_background_fill", "checkbox_label_background_fill_selected_dark": "*checkbox_label_background_fill", "checkbox_label_border_color": "*border_color_primary", "checkbox_label_border_color_dark": "*border_color_primary", "checkbox_label_border_color_hover": "*checkbox_label_border_color", "checkbox_label_border_color_hover_dark": "*checkbox_label_border_color", "checkbox_label_border_width": "*input_border_width", "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": "none", "checkbox_label_text_color": "*body_text_color", "checkbox_label_text_color_dark": "*body_text_color", "checkbox_label_text_color_selected": "*checkbox_label_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": "*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_lg", "embed_radius": "*radius_lg", "error_background_fill": "#fef2f2", "error_background_fill_dark": "*background_fill_primary", "error_border_color": "#b91c1c", "error_border_color_dark": "#ef4444", "error_border_width": "1px", "error_icon_color": "#b91c1c", "error_icon_color_dark": "#ef4444", "error_text_color": "#b91c1c", "error_text_color_dark": "#fef2f2", "font": "'Source Sans Pro', 'ui-sans-serif', 'system-ui', sans-serif", "font_mono": "'IBM Plex Mono', 'ui-monospace', 'Consolas', monospace", "form_gap_width": "0px", "input_background_fill": "#ffffff", "input_background_fill_dark": "*neutral_700", "input_background_fill_focus": "*secondary_500", "input_background_fill_focus_dark": "*secondary_600", "input_background_fill_hover": "*input_background_fill", "input_background_fill_hover_dark": "*input_background_fill", "input_border_color": "#cbcdd6", "input_border_color_dark": "*border_color_primary", "input_border_color_focus": "#cbcdd6", "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": "*neutral_400", "input_placeholder_color_dark": "*neutral_500", "input_radius": "*radius_lg", "input_shadow": "none", "input_shadow_focus": "*input_shadow", "input_text_size": "*text_md", "input_text_weight": "400", "layout_gap": "*spacing_xxl", "link_text_color": "*secondary_600", "link_text_color_active": "*secondary_600", "link_text_color_active_dark": "*secondary_500", "link_text_color_dark": "*secondary_500", "link_text_color_hover": "*secondary_700", "link_text_color_hover_dark": "*secondary_400", "link_text_color_visited": "*secondary_500", "link_text_color_visited_dark": "*secondary_600", "loader_color": "*color_accent", "name": "base", "neutral_100": "#cbcdd6", "neutral_200": "#b7b9c3", "neutral_300": "#a3a6b1", "neutral_400": "#90939f", "neutral_50": "#e0e1e9", "neutral_500": "#7d808d", "neutral_600": "#6a6e79", "neutral_700": "#585c65", "neutral_800": "#454b52", "neutral_900": "#353a40", "neutral_950": "#24292d", "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": "#dcedf9", "primary_200": "#dcedf9", "primary_300": "#217cbb", "primary_400": "#217cbb", "primary_50": "#dcedf9", "primary_500": "#217cbb", "primary_600": "#0063a3", "primary_700": "#0063a3", "primary_800": "#0063a3", "primary_900": "#0e416c", "primary_950": "#0e416c", "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": "8px", "radius_md": "6px", "radius_sm": "4px", "radius_xl": "12px", "radius_xs": "2px", "radius_xxl": "22px", "radius_xxs": "1px", "secondary_100": "#fff5e4", "secondary_200": "#fff5e4", "secondary_300": "#fec157", "secondary_400": "#fec157", "secondary_50": "#fff5e4", "secondary_500": "#fec157", "secondary_600": "#fbad26", "secondary_700": "#fbad26", "secondary_800": "#fbad26", "secondary_900": "#e49325", "secondary_950": "#e49325", "section_header_text_size": "*text_md", "section_header_text_weight": "400", "shadow_drop": "rgba(0,0,0,0.05) 0px 1px 2px 0px", "shadow_drop_lg": "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)", "shadow_inset": "rgba(0,0,0,0.05) 0px 2px 4px 0px inset", "shadow_spread": "3px", "shadow_spread_dark": "1px", "slider_color": "#2563eb", "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": "*neutral_300", "table_border_color_dark": "*neutral_700", "table_even_background_fill": "white", "table_even_background_fill_dark": "*neutral_950", "table_odd_background_fill": "*neutral_50", "table_odd_background_fill_dark": "*neutral_900", "table_radius": "*radius_lg", "table_row_focus": "*color_accent_soft", "table_row_focus_dark": "*color_accent_soft", "text_lg": "16px", "text_md": "14px", "text_sm": "12px", "text_xl": "22px", "text_xs": "10px", "text_xxl": "26px", "text_xxs": "9px"}, "version": "0.0.3"}
|