anniesaxena commited on
Commit
7fd04ee
·
verified ·
1 Parent(s): 2fa20be

added light theme

Browse files
Files changed (1) hide show
  1. app.py +7 -6
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="cyan", # lighter, fresher than teal
49
- secondary_hue="stone", # softer neutral than stone
50
- neutral_hue="gray", # light neutral gray-blue tint
51
- spacing_size="md", # slightly smaller for balanced white space
52
- radius_size="md", # medium rounded corners for a modern look
53
- text_size="md", # slightly smaller text for crispness
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