Spaces:
Runtime error
Runtime error
added light theme
Browse files
app.py
CHANGED
|
@@ -45,17 +45,18 @@ def get_relevant_context(query, top_k=3):
|
|
| 45 |
|
| 46 |
|
| 47 |
custom_theme = gr.themes.Soft(
|
| 48 |
-
primary_hue="
|
| 49 |
-
secondary_hue="
|
| 50 |
-
neutral_hue="
|
| 51 |
-
spacing_size="md",
|
| 52 |
-
radius_size="md",
|
| 53 |
-
text_size="md",
|
| 54 |
font=["Roboto", "sans-serif"],
|
| 55 |
font_mono=["Roboto Mono", "monospace"],
|
| 56 |
)
|
| 57 |
|
| 58 |
|
|
|
|
| 59 |
client = InferenceClient("google/gemma-2-2b-it")
|
| 60 |
|
| 61 |
|
|
|
|
| 45 |
|
| 46 |
|
| 47 |
custom_theme = gr.themes.Soft(
|
| 48 |
+
primary_hue="#6eb53d", # Light green for buttons, highlights
|
| 49 |
+
secondary_hue="#d7dbca", # Soft beige/stone for subtle backgrounds or accents
|
| 50 |
+
neutral_hue="#f5f3eb", # Off-white/beige background
|
| 51 |
+
spacing_size="md",
|
| 52 |
+
radius_size="md",
|
| 53 |
+
text_size="md",
|
| 54 |
font=["Roboto", "sans-serif"],
|
| 55 |
font_mono=["Roboto Mono", "monospace"],
|
| 56 |
)
|
| 57 |
|
| 58 |
|
| 59 |
+
|
| 60 |
client = InferenceClient("google/gemma-2-2b-it")
|
| 61 |
|
| 62 |
|