Spaces:
Sleeping
Sleeping
updated theme
Browse files
app.py
CHANGED
|
@@ -114,20 +114,21 @@ class MyCustomTheme(gr.themes.Base):
|
|
| 114 |
def __init__(self):
|
| 115 |
super().__init__(
|
| 116 |
primary_hue=colors.green, # You can still use named hues for accents
|
| 117 |
-
neutral_hue=colors.Color(
|
| 118 |
name="custom_offwhite",
|
| 119 |
-
c50="#fcf1db",
|
| 120 |
-
c100="#fcf1db",
|
| 121 |
-
c200="#
|
| 122 |
-
c300="#
|
| 123 |
-
c400="#
|
| 124 |
-
c500="#
|
| 125 |
-
c600="#
|
| 126 |
-
c700="#
|
| 127 |
-
c800="#
|
| 128 |
-
c900="#
|
| 129 |
-
c950="#
|
| 130 |
-
|
|
|
|
| 131 |
font=fonts.GoogleFont("Poppins")
|
| 132 |
)
|
| 133 |
|
|
|
|
| 114 |
def __init__(self):
|
| 115 |
super().__init__(
|
| 116 |
primary_hue=colors.green, # You can still use named hues for accents
|
| 117 |
+
neutral_hue = colors.Color(
|
| 118 |
name="custom_offwhite",
|
| 119 |
+
c50="#fcf1db",
|
| 120 |
+
c100="#fcf1db",
|
| 121 |
+
c200="#fcf1db",
|
| 122 |
+
c300="#fcf1db",
|
| 123 |
+
c400="#fcf1db",
|
| 124 |
+
c500="#fcf1db",
|
| 125 |
+
c600="#fcf1db",
|
| 126 |
+
c700="#fcf1db",
|
| 127 |
+
c800="#fcf1db",
|
| 128 |
+
c900="#fcf1db",
|
| 129 |
+
c950="#fcf1db",
|
| 130 |
+
text="#0c265b", # Set navy blue text color
|
| 131 |
+
),
|
| 132 |
font=fonts.GoogleFont("Poppins")
|
| 133 |
)
|
| 134 |
|