| import gradio as gr | |
| def build_theme() -> gr.themes.Base: | |
| return gr.themes.Base( | |
| primary_hue=gr.themes.colors.orange, | |
| neutral_hue=gr.themes.colors.gray, | |
| font=[gr.themes.GoogleFont("DM Sans"), "system-ui", "sans-serif"], | |
| font_mono=[gr.themes.GoogleFont("JetBrains Mono"), "monospace"], | |
| ).set( | |
| body_background_fill="#0a0c10", | |
| body_text_color="#e8eaed", | |
| block_background_fill="#12161e", | |
| block_border_color="rgba(255,255,255,0.08)", | |
| button_primary_background_fill="#c98a3c", | |
| button_primary_text_color="#0a0c10", | |
| ) | |