Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,10 @@ def greet(name):
|
|
6 |
|
7 |
|
8 |
css = """
|
9 |
-
|
|
|
|
|
|
|
10 |
|
11 |
|
12 |
"""
|
@@ -17,7 +20,7 @@ demo = gr.Interface(
|
|
17 |
outputs="text",
|
18 |
title="Cute Greeting App",
|
19 |
description="This app greets the user with a fun message!",
|
20 |
-
css=
|
21 |
)
|
22 |
|
23 |
# Launch the app
|
|
|
6 |
|
7 |
|
8 |
css = """
|
9 |
+
.gradio-container {
|
10 |
+
background-color: #c48fc4; /* Pink background */
|
11 |
+
font-family: "Comic Sans MS"; /* Fun font */
|
12 |
+
}
|
13 |
|
14 |
|
15 |
"""
|
|
|
20 |
outputs="text",
|
21 |
title="Cute Greeting App",
|
22 |
description="This app greets the user with a fun message!",
|
23 |
+
css=css
|
24 |
)
|
25 |
|
26 |
# Launch the app
|