Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -139,3 +139,22 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
|
139 |
|
140 |
# Launch the Gradio app to allow user interaction
|
141 |
demo.launch(share = True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
# Launch the Gradio app to allow user interaction
|
141 |
demo.launch(share = True)
|
142 |
+
|
143 |
+
theme = gr.themes.Monochrome(
|
144 |
+
primary_hue="amber",
|
145 |
+
secondary_hue="rose",
|
146 |
+
).set(
|
147 |
+
background_fill_primary='*primary_200',
|
148 |
+
background_fill_primary_dark='*primary_200',
|
149 |
+
background_fill_secondary='*secondary_300',
|
150 |
+
background_fill_secondary_dark='*secondary_300',
|
151 |
+
border_color_accent='*secondary_200',
|
152 |
+
border_color_accent_dark='*secondary_600',
|
153 |
+
border_color_accent_subdued='*secondary_200',
|
154 |
+
border_color_primary='*secondary_300',
|
155 |
+
block_border_color='*secondary_200',
|
156 |
+
button_primary_background_fill='*secondary_300',
|
157 |
+
button_primary_background_fill_dark='*secondary_300'
|
158 |
+
)
|
159 |
+
|
160 |
+
|