TenPoisk commited on
Commit
f7da895
·
1 Parent(s): 736fe2c

Update app-lic.py

Browse files
Files changed (1) hide show
  1. app-lic.py +11 -1
app-lic.py CHANGED
@@ -1,5 +1,13 @@
1
  import gradio as gr
2
 
 
 
 
 
 
 
 
 
3
  title = "viaIT License"
4
 
5
  description = \
@@ -94,4 +102,6 @@ article = \
94
  <p style='text-align: center'>
95
  <a href='https://hf.co/spaces/viait/stable-diffusion-2-1' target='_blank'>🌐 Try</a> | <a href='https://hf.co/viait' target='_blank'>👑 Owner</a>
96
  </p>
97
- """
 
 
 
1
  import gradio as gr
2
 
3
+ theme = gr.themes.Monochrome(
4
+ primary_hue="indigo",
5
+ secondary_hue="blue",
6
+ neutral_hue="slate",
7
+ radius_size=gr.themes.sizes.radius_sm,
8
+ font=[gr.themes.GoogleFont("Open Sans"), "ui-sans-serif", "system-ui", "sans-serif"],
9
+ )
10
+
11
  title = "viaIT License"
12
 
13
  description = \
 
102
  <p style='text-align: center'>
103
  <a href='https://hf.co/spaces/viait/stable-diffusion-2-1' target='_blank'>🌐 Try</a> | <a href='https://hf.co/viait' target='_blank'>👑 Owner</a>
104
  </p>
105
+ """
106
+
107
+ gr.load(title=title, description=description, article=article, theme=theme).launch(share=True)