File size: 603 Bytes
f1c01f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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",
)
|