Update app.py
Browse files
app.py
CHANGED
@@ -146,9 +146,10 @@ theme = gr.themes.Monochrome(
|
|
146 |
primary_hue="amber", #okay this did NOT work lmaoo
|
147 |
secondary_hue="rose",
|
148 |
).set(
|
|
|
149 |
background_fill_primary='#81A4CD', # BACKGROUND
|
150 |
background_fill_primary_dark='#81A4CD',
|
151 |
-
background_fill_secondary='#
|
152 |
background_fill_secondary_dark='#EDDEC0', #LOADING BAR
|
153 |
border_color_accent='#EDDEC0',
|
154 |
border_color_accent_dark='#EDDEC0',
|
@@ -157,6 +158,7 @@ theme = gr.themes.Monochrome(
|
|
157 |
block_border_color='#F17300',
|
158 |
button_primary_background_fill='#054A91',
|
159 |
button_primary_background_fill_dark='#054A91'
|
|
|
160 |
)
|
161 |
# Setup the Gradio Blocks interface with custom layout components
|
162 |
with gr.Blocks(theme=theme) as demo:
|
|
|
146 |
primary_hue="amber", #okay this did NOT work lmaoo
|
147 |
secondary_hue="rose",
|
148 |
).set(
|
149 |
+
body_text_color='#FFFFFF',
|
150 |
background_fill_primary='#81A4CD', # BACKGROUND
|
151 |
background_fill_primary_dark='#81A4CD',
|
152 |
+
background_fill_secondary='#884e4c', # BUTTON HOVER
|
153 |
background_fill_secondary_dark='#EDDEC0', #LOADING BAR
|
154 |
border_color_accent='#EDDEC0',
|
155 |
border_color_accent_dark='#EDDEC0',
|
|
|
158 |
block_border_color='#F17300',
|
159 |
button_primary_background_fill='#054A91',
|
160 |
button_primary_background_fill_dark='#054A91'
|
161 |
+
|
162 |
)
|
163 |
# Setup the Gradio Blocks interface with custom layout components
|
164 |
with gr.Blocks(theme=theme) as demo:
|