Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,15 @@ def arithmetic(num1, num2, operation):
|
|
27 |
|
28 |
with gr.Blocks(
|
29 |
title="R-Powered Calculator",
|
30 |
-
theme=gr.themes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
css="footer {display: none !important;}"
|
32 |
) as app:
|
33 |
gr.HTML(
|
|
|
27 |
|
28 |
with gr.Blocks(
|
29 |
title="R-Powered Calculator",
|
30 |
+
theme=gr.themes.Soft().set(
|
31 |
+
body_text_size="18px", # Increase base text size
|
32 |
+
text_size="18px", # Alternative way to ensure text size
|
33 |
+
input_text_color="#ffffff", # Input text color
|
34 |
+
input_background_fill="#2a2a2a", # Dark background for input
|
35 |
+
button_primary_background="linear-gradient(135deg, #4568dc, #0f4c81)", # Gradient button
|
36 |
+
button_primary_text_color="#ffffff", # Button text color
|
37 |
+
output_text_color="#ffffff" # Output text color
|
38 |
+
),
|
39 |
css="footer {display: none !important;}"
|
40 |
) as app:
|
41 |
gr.HTML(
|