Spaces:
Sleeping
Sleeping
fix: text color update to neutral_hue
Browse files
app.py
CHANGED
@@ -110,11 +110,11 @@ css = """
|
|
110 |
"""
|
111 |
|
112 |
theme = gr.themes.Default(
|
113 |
-
text_color="white",
|
114 |
spacing_size="sm",
|
115 |
font=[gr.themes.GoogleFont("Plus Jakarta Sans"), "Arial", "sans-serif"],
|
116 |
primary_hue="indigo",
|
117 |
-
secondary_hue="purple"
|
|
|
118 |
).set(
|
119 |
background_fill_primary="radial-gradient(circle at 90% 0%, rgba(255,255,255,0.15), #000000 25%)")
|
120 |
|
|
|
110 |
"""
|
111 |
|
112 |
theme = gr.themes.Default(
|
|
|
113 |
spacing_size="sm",
|
114 |
font=[gr.themes.GoogleFont("Plus Jakarta Sans"), "Arial", "sans-serif"],
|
115 |
primary_hue="indigo",
|
116 |
+
secondary_hue="purple",
|
117 |
+
neutral_hue="white",
|
118 |
).set(
|
119 |
background_fill_primary="radial-gradient(circle at 90% 0%, rgba(255,255,255,0.15), #000000 25%)")
|
120 |
|