Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
|
| 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")
|