Keiraj commited on
Commit
b855294
·
verified ·
1 Parent(s): 9168941

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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=style.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