Spaces:
Runtime error
Runtime error
Commit
·
ed83f52
1
Parent(s):
e2eee11
Adding self.set to the ArtemisiaThem class
Browse files
app.py
CHANGED
@@ -80,6 +80,12 @@ class ArtemisiaTheme(Base):
|
|
80 |
neutral_hue=colors.gray,
|
81 |
**kwargs
|
82 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
# Background settings
|
85 |
self.body_background_fill = "#4f008c"
|
|
|
80 |
neutral_hue=colors.gray,
|
81 |
**kwargs
|
82 |
)
|
83 |
+
|
84 |
+
# Set text colors to white
|
85 |
+
self.set(
|
86 |
+
body_text_color=colors.white,
|
87 |
+
text_color=colors.white,
|
88 |
+
)
|
89 |
|
90 |
# Background settings
|
91 |
self.body_background_fill = "#4f008c"
|