aidn commited on
Commit
7cd771e
·
verified ·
1 Parent(s): 1f2b3f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -7
app.py CHANGED
@@ -38,10 +38,11 @@ def generate_image(prompt, height, width, num_inference_steps, seed, randomize_s
38
 
39
  # Example prompts
40
  examples = [
41
- ["A Woman standing next to a porsche facing towards the camera."],
42
- ["A meeting room full of it consultant people working."],
43
- ["Cozy coffee shop interior, warm lighting, rain on windows, plants on shelves, vintage aesthetic, photorealistic, with people sitting in front."],
44
- ["Portrait of a wise old wizard with a long white beard, holding a glowing crystal staff, magical forest background"],
 
45
  ]
46
 
47
 
@@ -284,13 +285,36 @@ input[type="range"]::-webkit-slider-runnable-track {
284
  }
285
 
286
  /* Examples section */
 
 
 
 
287
  .gr-samples table, .examples-holder table {
288
- border: 1px solid #00f5ff11 !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  }
290
 
291
- .gr-samples tr:hover, .examples-holder tr:hover {
292
- background: #00f5ff0a !important;
293
  color: #00f5ff !important;
 
294
  }
295
 
296
  /* Footer */
 
38
 
39
  # Example prompts
40
  examples = [
41
+ ["A cyberpunk street market at night, neon signs reflecting on rain-soaked asphalt, vendors selling illegal tech implants, dense fog, cinematic lighting, ultra-detailed."],
42
+ ["Portrait of a female netrunner with glowing cyan eye implants, chrome jaw augmentation, plugged-in data cables, dark industrial background, dramatic rim lighting, hyperrealistic."],
43
+ ["Megacity skyline at dusk, towering brutalist skyscrapers covered in holographic advertisements, flying vehicles, smoggy orange sky, blade runner aesthetic, photorealistic."],
44
+ ["Abandoned neural interface lab, flickering monitors showing brain scans, cables everywhere, dust particles in neon light beams, eerie atmosphere, ultra-detailed."],
45
+ ["Close-up of a human hand merging with circuit board implants, biopunk aesthetic, glowing veins, copper traces under translucent skin, macro photography style."],
46
  ]
47
 
48
 
 
285
  }
286
 
287
  /* Examples section */
288
+ .gr-samples, .examples-holder, div[class*="examples"] {
289
+ background: #070c1a !important;
290
+ }
291
+
292
  .gr-samples table, .examples-holder table {
293
+ border: 1px solid #00f5ff22 !important;
294
+ border-collapse: collapse !important;
295
+ width: 100% !important;
296
+ }
297
+
298
+ .gr-samples td, .examples-holder td {
299
+ font-family: 'Rajdhani', sans-serif !important;
300
+ font-size: 0.92rem !important;
301
+ font-weight: 600 !important;
302
+ color: #b8d8e8 !important;
303
+ background: #0a1220 !important;
304
+ border: 1px solid #00f5ff15 !important;
305
+ padding: 0.45em 0.8em !important;
306
+ cursor: pointer !important;
307
+ transition: color 0.2s, background 0.2s !important;
308
+ white-space: nowrap;
309
+ overflow: hidden;
310
+ text-overflow: ellipsis;
311
+ max-width: 380px;
312
  }
313
 
314
+ .gr-samples tr:hover td, .examples-holder tr:hover td {
315
+ background: #0d1e30 !important;
316
  color: #00f5ff !important;
317
+ text-shadow: 0 0 6px #00f5ff66 !important;
318
  }
319
 
320
  /* Footer */