HAissa commited on
Commit
9c9e62d
·
verified ·
1 Parent(s): d1df5db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -43,8 +43,11 @@ def get_answer(question, ans_a, ans_b, ans_c, ans_d):
43
 
44
  # --- Gradio Interface ---
45
 
46
- # Define a soft theme with a green primary color for a more modern look
47
- theme = gr.themes.Soft(primary_hue="green")
 
 
 
48
 
49
  with gr.Blocks(theme=theme) as demo:
50
  gr.Markdown("# EdNA: MCQ Answering App")
 
43
 
44
  # --- Gradio Interface ---
45
 
46
+ # Define a soft theme with a green primary color and a custom font for a more modern look
47
+ theme = gr.themes.Soft(
48
+ primary_hue="green",
49
+ font=[gr.themes.GoogleFont("Karla"), "Arial", "sans-serif"]
50
+ )
51
 
52
  with gr.Blocks(theme=theme) as demo:
53
  gr.Markdown("# EdNA: MCQ Answering App")