-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12ColumnsPromptGeneratorNormal.html
More file actions
2444 lines (2245 loc) · 71.3 KB
/
12ColumnsPromptGeneratorNormal.html
File metadata and controls
2444 lines (2245 loc) · 71.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>12 Columns Random Image Prompt Generator Normal</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<style>
body {
font-family: Arial, sans-serif;
max-width: 1900px;
margin: 20px auto;
background: #0d1117;
color: #c9d1d9;
}
h1 {
text-align: center;
color: #58a6ff;
margin-bottom: 10px;
}
.column-labels {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 5px;
}
.column-labels input {
width: 100%;
padding: 5px;
font-size: 12px;
font-weight: 600;
text-align: center;
background: #0d1117;
color: #58a6ff;
border: 2px solid #30363d;
border-radius: 4px;
box-sizing: border-box;
}
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 30px;
}
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 30px;
}
textarea {
width: 100%;
height: 260px;
padding: 10px;
font-size: 12px;
font-family: monospace;
background: #161b22;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
resize: vertical;
box-sizing: border-box;
}
.settings-row {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: start;
margin: 20px 0;
background: #161b22;
padding: 20px;
border-radius: 8px;
}
.settings-left {
grid-column: 1;
display: flex;
gap: 20px;
align-items: start;
}
.always-wrapper {
flex: 0 0 250px;
}
.always-wrapper h3 {
color: #58a6ff;
margin-bottom: 10px;
font-size: 13px;
font-weight: 600;
margin-top: 0;
}
.always-wrapper textarea {
width: 100%;
height: 120px;
padding: 10px;
font-size: 12px;
font-family: monospace;
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
resize: vertical;
box-sizing: border-box;
}
.toggles-wrapper {
display: flex;
flex-direction: column;
gap: 10px;
/* flex: 1; Removed to separate actions */
align-content: flex-start;
}
/* .settings-right CSS block removed from here as it is redefined below */
.action-wrapper {
grid-column: 2;
display: flex;
flex-direction: row;
gap: 10px;
justify-content: center;
align-self: end;
padding-bottom: 5px;
/* Slight offset from very bottom for visual balance */
}
.top-bar {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
margin-bottom: 20px;
}
.top-bar h1 {
grid-column: 2;
margin: 0;
}
.top-buttons {
grid-column: 3;
justify-self: end;
display: flex;
gap: 10px;
}
button {
padding: 15px 35px;
margin: 0;
font-size: 18px;
border: none;
border-radius: 12px;
/* Rounded corners */
cursor: pointer;
white-space: nowrap;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Depth */
transition: all 0.2s ease;
/* Smooth animation */
font-weight: 600;
letter-spacing: 0.5px;
}
button:hover {
transform: translateY(-2px);
/* Lift effect */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
button:active {
transform: translateY(1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.action-btn {
padding: 10px 15px;
font-size: 14px;
color: white;
border-radius: 8px;
}
.btn-prefill {
background: #1f6feb;
}
/* Blue */
.btn-prefill:hover {
background: #388bfd;
}
.btn-danger {
background: #da3633;
}
/* Red */
.btn-danger:hover {
background: #f85149;
}
.generate {
background: #238636;
color: white;
font-size: 22px;
padding: 18px 90px;
}
.generate:hover {
background: #2ea043;
}
.copy {
background: #1f6feb;
color: white;
}
.copy:hover {
background: #388bfd;
}
.toggle {
background: #da3633;
/* Red = OFF */
color: white;
padding: 10px 15px;
font-size: 14px;
border: 2px solid transparent;
/* fixed width border to prevent jump */
min-width: 180px;
text-align: center;
}
.toggle:hover {
background: #f85149;
}
.toggle.active {
background: #238636;
/* Green = ON */
border-color: #2ea043;
}
#output {
text-align: center;
font-size: 30px;
font-weight: bold;
line-height: 1.7;
padding: 40px;
background: #161b22;
border: 2px dashed #30363d;
border-radius: 12px;
margin: 30px auto;
max-width: 1700px;
word-wrap: break-word;
}
.settings-right {
grid-column: 3;
display: flex;
justify-content: flex-end;
align-items: flex-start;
/* Changed from center to flex-start for alignment */
gap: 15px;
/* Added gap */
height: 100%;
}
.preset-panel {
background: #0d1117;
border: 1px solid #30363d;
border-radius: 8px;
padding: 15px;
display: flex;
flex-direction: column;
gap: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
width: 250px;
/* Fixed width */
}
.preset-title {
font-size: 13px;
font-weight: 600;
color: #58a6ff;
margin-bottom: 5px;
margin-top: 0;
text-transform: none;
letter-spacing: normal;
}
.preset-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.preset-select {
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
padding: 5px 10px;
height: 36px;
font-size: 14px;
outline: none;
width: 100%;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.preset-btn {
color: white;
border: none;
border-radius: 8px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0 5px;
font-size: 14px;
transition: all 0.2s;
font-weight: normal;
white-space: nowrap;
width: 100%;
box-shadow: none;
}
.preset-btn:hover {
transform: none;
}
.preset-btn.save {
background: #238636;
grid-column: 2;
}
.preset-btn.save:hover {
background: #2ea043;
}
.preset-btn.load {
background: #1f6feb;
grid-column: 1;
}
.preset-btn.load:hover {
background: #388bfd;
}
.preset-btn.delete {
background: #da3633;
grid-column: span 2;
margin-top: 5px;
}
.preset-btn.delete:hover {
background: #f85149;
}
.preset-btn.export,
.preset-btn.import {
background: #21262d;
border: 1px solid #30363d;
color: #c9d1d9;
}
.preset-btn.export:hover,
.preset-btn.import:hover {
background: #30363d;
border-color: #8b949e;
}
.preset-btn.export {
grid-column: 1;
}
.preset-btn.import {
grid-column: 2;
}
/* Modal Styles */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 10000;
backdrop-filter: blur(2px);
}
.modal-content {
background: #161b22;
border: 1px solid #30363d;
border-radius: 12px;
padding: 24px;
width: 400px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
gap: 15px;
}
.modal-header {
color: #58a6ff;
font-size: 18px;
font-weight: 600;
}
.modal-body {
color: #c9d1d9;
font-size: 14px;
line-height: 1.5;
}
.modal-input {
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
padding: 8px 12px;
font-size: 14px;
outline: none;
width: 100%;
box-sizing: border-box;
}
.modal-input:focus {
border-color: #58a6ff;
}
.modal-footer {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 10px;
}
.modal-btn {
padding: 8px 16px;
font-size: 14px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.2s;
}
.modal-btn.primary {
background: #238636;
color: white;
}
.modal-btn.primary:hover {
background: #2ea043;
}
.modal-btn.secondary {
background: #21262d;
color: #c9d1d9;
border: 1px solid #30363d;
}
.modal-btn.secondary:hover {
background: #30363d;
}
.modal-btn.danger {
background: #da3633;
color: white;
}
.modal-btn.danger:hover {
background: #f85149;
}
</style>
</head>
<body>
<div class="top-bar">
<a href="index.html" class="action-btn"
style="text-decoration: none; background: #30363d; justify-self: start;">Homepage</a>
<h1>12 Columns Random Image Prompt Generator Normal</h1>
<div class="top-buttons">
<button class="action-btn btn-prefill" onclick="prefillColumns()">Pre-fill Columns</button>
<button class="action-btn btn-danger" onclick="emptyColumns()">Empty All</button>
<button class="action-btn btn-danger" onclick="clearTitles()">Clear Titles</button>
</div>
</div>
<div class="column-labels">
<input type="text" id="label1" placeholder="Column 1">
<input type="text" id="label2" placeholder="Column 2">
<input type="text" id="label3" placeholder="Column 3">
<input type="text" id="label4" placeholder="Column 4">
<input type="text" id="label5" placeholder="Column 5">
<input type="text" id="label6" placeholder="Column 6">
<input type="text" id="label7" placeholder="Column 7">
<input type="text" id="label8" placeholder="Column 8">
<input type="text" id="label9" placeholder="Column 9">
<input type="text" id="label10" placeholder="Column 10">
<input type="text" id="label11" placeholder="Column 11">
<input type="text" id="label12" placeholder="Column 12">
</div>
<div class="container">
<textarea id="col1"></textarea><textarea id="col2"></textarea><textarea id="col3"></textarea><textarea
id="col4"></textarea>
<textarea id="col5"></textarea><textarea id="col6"></textarea><textarea id="col7"></textarea><textarea
id="col8"></textarea>
<textarea id="col9"></textarea><textarea id="col10"></textarea><textarea id="col11"></textarea><textarea
id="col12"></textarea>
</div>
<div class="settings-row">
<div class="settings-left">
<div class="always-wrapper">
<h3>Always Add Tags</h3>
<textarea id="alwaysText" placeholder="Tags..."></textarea>
</div>
<div class="toggles-wrapper">
<button class="toggle" id="titleBtn" onclick="toggleTitles()">Column Titles: ON</button>
<button class="toggle" id="alwaysBtn" onclick="toggleAlways()">Include Tags: ON</button>
<button class="toggle" id="sepBtn" onclick="toggleSep()">Comma Mode: ON</button>
</div>
</div>
<div class="action-wrapper">
<button class="generate" onclick="generate()">Generate New</button>
<button class="copy" onclick="copyPrompt()">Copy Prompt</button>
<button class="action-btn copy" onclick="copyJsonPrompt()">Copy JSON Prompt</button>
</div>
<div class="settings-right">
<div class="preset-panel">
<div class="preset-title">Manage Presets</div>
<select id="presetSelect" class="preset-select">
<option value="">Select Preset...</option>
</select>
<div class="preset-grid">
<button class="preset-btn load" title="Load Preset" onclick="loadPreset()">📂 Load</button>
<button class="preset-btn save" title="Save Preset" onclick="savePreset()">💾 Save</button>
<button class="preset-btn export" title="Export Presets" onclick="exportPresets()">⬇️ Export</button>
<button class="preset-btn import" title="Import Presets"
onclick="document.getElementById('importInput').click()">⬆️ Import</button>
<button class="preset-btn delete" title="Delete Preset" onclick="deletePreset()">🗑️ Delete</button>
</div>
<input type="file" id="importInput" style="display: none" accept=".json" onchange="importPresets(event)">
</div>
</div>
</div>
<div id="customModal" class="modal-overlay">
<div class="modal-content">
<div id="modalHeader" class="modal-header"></div>
<div id="modalBody" class="modal-body"></div>
<input type="text" id="modalInput" class="modal-input" style="display: none;">
<div class="modal-footer">
<button id="modalSecondaryBtn" class="modal-btn secondary">Cancel</button>
<button id="modalPrimaryBtn" class="modal-btn primary">OK</button>
</div>
</div>
</div>
<div id="output">Fill columns → click Generate → only ONE line from each column appears</div>
<script>
const defaultTitles = ["Subject", "Action", "Setting", "Style", "Mood", "Colors", "Composition", "Details", "Camera", "Time", "Lighting", "Quality"];
const defaultContent = {
1: `anthropomorphic red panda DJ
tiny astronaut riding a corgi in space
steampunk goldfish in a mechanical bowl
gothic lolita raccoon drinking boba
cyberpunk capybara with neon sunglasses
victorian ghost cat wearing a top hat
samurai penguin slicing watermelons
fluffy alpaca wizard casting spells
1950s diner waitress T-rex
robot butler serving tea to a dragon
chubby unicorn eating ramen
pirate octopus with eight cutlasses
sleepy axolotl in a hammock
disco ball hedgehog dancing
mecha-squirrel piloting a nut-shaped robot
vampire hamster with tiny cape
cyber samurai shiba inu
grandma yeti knitting a scarf
astronaut sloth floating in zero gravity
kawaii toast with arms and legs
steampunk flamingo on a bicycle
tiny kraken in a coffee mug
retro robot feeding pigeons
punk rock pigeon with mohawk
magical girl raccoon transformation sequence
fox barista making latte art
jellyfish wearing sneakers
corgi knight riding a giant carrot
goth crow perched on a streetlamp
panda chef flipping burgers
cardboard robot falling in love
mermaid cat swimming in a fishbowl
cowboy beaver on a mechanical bull
neon frog on a skateboard
sleepy dragon curled around a pizza
tiny astronaut planting flag on a cookie
raccoon thief stealing moon cheese
victorian gentleman walrus with monocle
cyberpunk grandma with holographic walker
chubby phoenix reborn as a chicken nugget
otter detective in trench coat
steampunk turtle with gear shell
hamster pilot in a paper airplane
disco walrus under a mirror ball
samurai hamster with bamboo sword
ghost shark in a haunted aquarium
alpaca astronaut exploring cotton candy planet
tiny Godzilla made of gummy bears
penguin secret agent in tuxedo
fox wizard with glowing staff
cat wizard wearing starry robes
robot penguin sliding on ice
chameleon street artist painting itself
hedgehog barista with tiny espresso machine
cyberpunk tanuki with holographic tail
sleepy koala DJ wearing headphones
steampunk octopus librarian
raccoon astronaut planting trash on the moon
fluffy moth attracted to a neon lamp
axolotl mermaid princess
bunny knight with carrot sword
retro alien eating cereal
panda samurai meditating under bamboo
tiny kaiju kitten destroying a toy city
crow magician pulling coins from ears
sloth superhero in slow motion
ferret pirate with tiny ship
neon jellyfish DJ underwater rave
corgi wizard casting "fetch" spell
robot cat chasing laser pointer
gothic squirrel collecting acorns at midnight
astronaut hamster in a wheel spaceship
steampunk seahorse riding a bicycle
chubby dragon hoarding donuts
raccoon mechanic fixing a tiny car
penguin rockstar shredding guitar
cyberpunk owl with glowing eyes
sleepy red panda napping on a cloud
fox chef cooking tiny sushi
robot turtle winning a race in slow-mo
vampire bat barista at night
magical girl capybara with sparkly wand
tiny triceratops in a teacup
steampunk ladybug pilot
otter wizard floating on a lily pad
goth moth wearing black lace
panda astronaut eating bamboo on Mars
disco ball octopus at an underwater party
sleepy ghost bunny haunting a pillow
cyberpunk tanuki hacker
corgi samurai with wasabi blade
fluffy sheep cloud shepherd
raccoon wizard summoning trash magic
tiny astronaut riding a paper boat
neon axolotl dancing in the rain
robot flamingo standing on one leg forever
hedgehog knight with pinecone shield
sleepy dragon accountant
punk rock goldfish in a bowl mosh pit
happy little trash panda king wearing a crown of cans`, // Subject
2: `breakdancing on a giant vinyl record
riding a rocket-powered skateboard
juggling flaming pineapples
surfing on a giant pizza slice
doing a backflip off a rainbow
playing electric guitar made of lightning
blowing massive bubblegum bubbles
riding a mechanical bull made of clouds
doing parkour across floating donuts
sword-fighting with a baguette
flying with a jetpack made of fireworks
headbanging at an underwater concert
drifting a tiny car around a teacup
casting a spell that turns everything into candy
crowd-surfing on floating pancakes
lassoing the moon with a jump rope
DJing with turntables made of pizza
riding a unicycle on a tightrope of spaghetti
doing the moonwalk on actual moon dust
breakdancing inside a snow globe
fighting a duel with oversized lollipops
skateboarding down a waterfall of soda
riding a shopping cart at supersonic speed
doing karate kicks in zero gravity
painting the sky with a giant paint roller
surfing inside a giant wave of ramen
playing drums on floating water lilies
doing a cannonball into a pool of glitter
riding a bicycle made of french fries
performing magic tricks with exploding cards
sliding down a rainbow like a slide
racing a tiny car against a cheetah
doing ballet on a giant spinning record
breakdancing on top of a moving train
riding a hoverboard through a candy storm
juggling tiny planets like marbles
doing a handstand on a floating cloud
skateboarding inside a giant hamster wheel
performing a guitar solo on a cloud
riding a pogo stick across lava
doing the worm across a field of flowers
surfing on a giant leaf in the wind
playing air guitar with actual lightning
riding a rollercoaster made of licorice
doing cartwheels through a field of bubbles
breakdancing on a giant lily pad
riding a scooter made of bubblegum
juggling chainsaws made of rainbows
doing a triple backflip into a pile of marshmallows
playing hopscotch on floating asteroids
riding a magic carpet made of pizza
doing the robot dance… as an actual robot
surfing on a giant wave of coffee
riding a skateboard pulled by tiny dragons
performing a slam dunk on a basketball hoop made of clouds
breakdancing on a giant spinning donut
doing parkour across giant floating books
riding a bicycle with square wheels (and it still works)
playing violin on a tightrope
doing the floss dance in a hurricane
surfing down a waterfall of melted chocolate
riding a jetpack made of soda cans
juggling glowing orbs of pure energy
doing a backflip over a sleeping dragon
breakdancing inside a giant snowflake
riding a tiny motorcycle up a candy cane
performing magic that makes stars explode into confetti
doing the macarena with a skeleton crew
surfing on a giant taco shell
riding a unicycle across a pool of lava
playing drums on exploding barrels
doing a handstand on a shooting star
skateboarding through a tunnel of neon rings
riding a pogo stick on the moon
breakdancing on a giant spinning vinyl in space
juggling tiny black holes
doing parkour on floating jellybeans
riding a rocket-powered shopping cart
performing a guitar solo while falling from the sky
surfing on a wave of pure glitter
doing the hustle in a disco volcano
riding a bicycle made of lightning bolts
playing hopscotch on clouds
breakdancing on a giant spinning pizza
doing a backflip into a pool of stars
riding a skateboard made of ice down a volcano
juggling flaming marshmallows
performing a drum solo on thunderclouds
surfing inside a giant bubble
doing cartwheels across Saturn’s rings
riding a tiny car through a fireworks show
breakdancing on a giant spinning top
playing electric guitar with teeth
doing the worm on a conveyor belt of sushi
riding a hoverboard through a cotton-candy storm
juggling tiny suns like hot potatoes
performing a magic trick that makes the moon wink
surfing on a giant wave of molten gold
doing a backflip off a giant rubber duck
crowd-surfing on a sea of floating corgis`, // Action
3: `neon-soaked Tokyo alley at midnight
glowing bioluminescent cave system
abandoned Soviet space station orbiting Earth
floating lantern festival over ancient rice fields
crystal palace inside a giant geode
rainy 1940s film-noir street with fedoras
endless library that stretches into infinity
post-apocalyptic Tokyo overtaken by cherry trees
inside a massive stained-glass whale
retro-futuristic 1950s diner on Mars
overgrown Mayan temple reclaimed by jungle
arctic research station during aurora borealis
underwater ruined Atlantis with glowing ruins
steampunk London with massive clockwork gears
candy kingdom made of gingerbread and gumdrops
foggy Victorian graveyard at midnight
floating Japanese torii gate in the clouds
cyberpunk night market with holographic food stalls
inside a giant hollow tree with fairy lights
abandoned amusement park at golden hour
surreal desert with giant floating mirrors
cozy hobbit-hole library with round windows
neon ramen shop during a rainstorm
ancient Greek temple on a stormy cliff
inside a snow globe being shaken
rooftop garden in a cyberpunk megacity
enchanted winter forest with glowing blue trees
pirate ship sailing through purple nebula
retro arcade glowing in the 1980s night
massive treehouse city connected by rope bridges
volcanic lava river with black glass islands
dreamy cotton-candy clouds with floating castles
abandoned subway station turned underground garden
giant aquarium hallway with sharks swimming overhead
mystical bamboo forest at sunrise
dystopian favela stacked to the sky
glowing mushroom valley under twin moons
art deco skyscraper penthouse at sunset
inside a massive hourglass with falling galaxies
haunted carnival frozen in time
floating market on a lilypad lake
cyber-samurai dojo with paper walls and holograms
endless staircase in a pink void
cozy witch’s cottage covered in vines
neon-lit skateboard park under overpass
ancient Egyptian tomb lit by torchlight
crystal cave with glowing underground lake
retro vaporwave mall with palm trees
massive greenhouse full of alien plants
rooftop pool party in a thunderstorm
inside a giant seashell palace underwater
abandoned cathedral with vines and birds
floating hot-air balloon city at dusk
cyberpunk laundromat at 3 a.m.
enchanted bookstore where books fly
icy palace throne room with aurora windows
desert ghost town with tumbleweeds and neon signs
inside a massive grandfather clock’s gears
glowing jellyfish forest underwater
retro roller rink with disco lights
hidden speakeasy behind a waterfall
overgrown rooftop jungle in a megacity
massive steampunk train cutting through clouds
candy cane forest in winter
abandoned space colony on a red planet
misty Scottish highlands with standing stones
inside a giant music box with dancing figurines
neon karaoke bar with holographic singers
floating sky whale migration
ancient Roman bathhouse with marble and steam
cyberpunk rooftop shrine with torii gates
endless cornfield with UFO lights above
cozy attic full of glowing fireflies
underwater disco with glowing sea creatures
massive library with rolling ladders and starlight
retro gas station in the middle of nowhere at night
giant lotus flower pond at twilight
abandoned toy factory with giant teddy bears
floating tea party in the stratosphere
cyberpunk fish market with holographic fish
hidden cave behind a waterfall with treasure
massive greenhouse on a spaceship
neon-lit bowling alley in the 1970s
ancient tree with doors leading to other worlds
rooftop cinema under the stars
inside a snow-covered lantern
cyberpunk tattoo parlor with glowing ink
floating pagoda temple in the clouds
abandoned opera house with velvet seats
giant bird’s nest city in the treetops
retro drive-in theater showing old monster movies
glowing ice cave with frozen waterfalls
candy-colored coral reef
steampunk submarine interior
hidden valley with dinosaur skeletons
neon-lit arcade crane game heaven
massive bubble floating through space
cozy rainforest treehouse during rain
cyberpunk shrine with glowing fox statues
endless marble hallway with mirrors and chandeliers`, // Setting
4: `cinematic anamorphic lens
hyperrealistic 8k photography
detailed matte painting
studio lighting portrait
vibrant gouache illustration
retro 90s anime cel-shaded
octane render unreal engine
dreamlike surrealism
intricate art nouveau
dark moody baroque oil painting
soft pastel chalk drawing
cyberpunk vaporwave aesthetic
studio ghibli background art
gritty 35mm film grain
comic book ink and color
low-poly playstation 1 style
hyperdetailed zbrush sculpt
watercolor splash art
neon noir photography
golden hour national geographic
cute kawaii chibi style
retro pixel art 16-bit
dramatic caravaggio lighting
vibrant pop art roy lichtenstein
intricate steampunk blueprint
soft oil on canvas
epic fantasy book cover art
pastel dreamcore aesthetic
brutalist architecture render
holographic iridescent material
detailed colored pencil
moody cyberpunk blade runner
whimsical children’s book illustration
high-fashion editorial photography
retrofuturism 1960s
intricate mandala art
dark gothic victorian painting
vibrant acrylic pour art
isometrics cozy pixel art
macro photography close-up
soft studio ghibli watercolor
bold graffiti street art
dreamy double exposure
hyperrealistic wildlife photography
retro anime 80s ova
intricate henna tattoo style
luminous ethereal digital painting
gritty war photography
cute sanrio-style illustration
dramatic renaissance portrait
vibrant synthwave aesthetic
detailed mechanical blueprint
soft pastel anime key visual
cinematic 70mm film still
intricate fantasy map art
moody monochrome ink wash
vibrant risograph print
hyperdetailed sci-fi concept art
cozy cottagecore aesthetic
bold woodblock print style
glowing neon sign photography
intricate art deco illustration
soft storybook watercolor
dramatic low-key photography
retro vhs glitch art
detailed botanical illustration
epic norse saga painting
dreamy lofi aesthetic
hyperrealistic food photography
intricate tarot card art
vibrant miami vice pastel
soft impasto oil painting
detailed dungeon map style
cinematic imax establishing shot
cute felted wool art
dark horror comic style
vibrant afrofuturism
soft pastel chalk portrait
hyperdetailed miniature model
retro space age illustration
intricate stained glass window
moody dutch masters lighting
vibrant psychedelic 60s poster
detailed character turnaround sheet
soft golden hour portrait
cyberpunk tokyo street photography
intricate celtic knot work
cute pusheen-style doodle
dramatic chiaroscuro lighting
vibrant fauvism colors
detailed medical illustration style
soft anime screenshot
epic wlop digital painting
retro propaganda poster
intricate paper cutout art
moody rain-soaked noir
vibrant holographic foil
detailed fantasy token art
soft children’s picture book
ultra-sharp macro lens photography`, // Style
5: `pure unfiltered joy
quiet melancholy at 3 a.m.
electric anticipation
cozy rainy afternoon
hauntingly beautiful
chaotic carnival energy
soft golden nostalgia
icy existential dread
mischievous grin
warm summer night romance
epic last-stand heroism
dreamy lucid-dream haze