forked from eniora/InstantID-Unlocked
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_template.py
More file actions
5774 lines (5773 loc) · 343 KB
/
style_template.py
File metadata and controls
5774 lines (5773 loc) · 343 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
style_list = [
{
"name": "(No style)",
"prompt": "{prompt}",
"negative_prompt": "",
},
{
"name": "Photographic",
"prompt": "cinematic photo {prompt}. 35mm photograph, film, bokeh, professional, 4k, highly detailed",
"negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly",
},
{
"name": "Film Noir",
"prompt": "film noir style, ink sketch|vector, {prompt} highly detailed, sharp focus, ultra sharpness, monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic",
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Neon",
"prompt": "masterpiece painting, buildings in the backdrop, kaleidoscope, lilac orange blue cream fuchsia bright vivid gradient colors, the scene is cinematic, {prompt}, emotional realism, double exposure, watercolor ink pencil, graded wash, color layering, magic realism, figurative painting, intricate motifs, organic tracery, polished",
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Jungle",
"prompt": 'waist-up "{prompt} in a Jungle" by Syd Mead, tangerine cold color palette, muted colors, detailed, 8k,photo r3al,dripping paint,3d toon style,3d style,Movie Still',
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Mars",
"prompt": "{prompt}, Post-apocalyptic. Mars Colony, Scavengers roam the wastelands searching for valuable resources, rovers, bright morning sunlight shining, (detailed) (intricate) (8k) (HDR) (cinematic lighting) (sharp focus)",
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Vibrant Color",
"prompt": "vibrant colorful, ink sketch|vector|2d colors, at nightfall, sharp focus, {prompt}, highly detailed, sharp focus, the clouds,colorful,ultra sharpness",
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Snow",
"prompt": "cinema 4d render, {prompt}, high contrast, vibrant and saturated, sico style, surrounded by magical glow,floating ice shards, snow crystals, cold, windy background, frozen natural landscape in background cinematic atmosphere,highly detailed, sharp focus, intricate design, 3d, unreal engine, octane render, CG best quality, highres, photorealistic, dramatic lighting, artstation, concept art, cinematic, epic Steven Spielberg movie still, sharp focus, smoke, sparks, art by pascal blanche and greg rutkowski and repin, trending on artstation, hyperrealism painting, matte painting, 4k resolution",
"negative_prompt": "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, (frame:1.2), deformed, ugly, blurry, deformed cat, deformed photo",
},
{
"name": "Line art",
"prompt": "line art drawing {prompt}. professional, sleek, modern, minimalist, graphic, line art, vector graphics",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, blurry, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, mutated, realism, realistic, impressionism, expressionism, oil, acrylic",
},
{
"name": "Cinematic",
"prompt": "cinematic still {prompt}. emotional, harmonious, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured",
},
{
"name": "Disney Charactor",
"prompt": "A Pixar animation character of {prompt}. pixar-style, studio anime, Disney, high-quality",
"negative_prompt": "lowres, bad anatomy, bad hands, text, bad eyes, bad arms, bad legs, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, blurry, grayscale, noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo",
},
{
"name": "Neonpunk",
"prompt": "neonpunk style {prompt}. cyberpunk, vaporwave, neon, vibes, vibrant, stunningly beautiful, crisp, detailed, sleek, ultramodern, magenta highlights, dark purple shadows, high contrast, cinematic, ultra detailed, intricate, professional",
"negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured",
},
{
"name": "Comic Book",
"prompt": "comic {prompt}. graphic illustration, comic art, graphic novel art, vibrant, highly detailed",
"negative_prompt": "photograph, deformed, glitch, noisy, realistic, stock photo",
},
{
"name": "Abstract",
"prompt": "Abstract style art of {prompt}, Non-representational, colors and shapes, expression of feelings, imaginative, highly detailed",
"negative_prompt": "realistic, photographic, figurative, concrete"
},
{
"name": "Abstract Expressionism",
"prompt": "abstract expressionist painting of {prompt}, energetic brushwork, bold colors, abstract forms, expressive, emotional",
"negative_prompt": "realistic, photorealistic, low contrast, plain, simple, monochrome"
},
{
"name": "Adorable 3D Character",
"prompt": "Adorable 3D Character of {prompt}, 3D render, adorable character, 3D art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, grunge, sloppy, unkempt, photograph, photo, realistic"
},
{
"name": "Adorable Kawaii",
"prompt": "Adorable Kawaii, {prompt}, pretty, cute, adorable, kawaii",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, gothic, dark, moody, monochromatic"
},
{
"name": "Advertising",
"prompt": "Advertising poster style, {prompt}, Professional, modern, product-focused, commercial, eye-catching, highly detailed",
"negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
},
{
"name": "Alien",
"prompt": "Alien-themed {prompt}, Extraterrestrial, cosmic, otherworldly, mysterious, sci-fi, highly detailed",
"negative_prompt": "earthly, mundane, common, realistic, simple"
},
{
"name": "Anime",
"prompt": "anime artwork of {prompt}, anime style, key visual, vibrant, studio anime, highly detailed",
"negative_prompt": "photo, deformed, black and white, realism, disfigured, low contrast"
},
{
"name": "Architectural",
"prompt": "Architectural style, {prompt}, Clean lines, geometric shapes, minimalist, modern, architectural drawing, highly detailed",
"negative_prompt": "curved lines, ornate, baroque, abstract, grunge"
},
{
"name": "Art Deco",
"prompt": "art deco style, {prompt}, geometric shapes, bold colors, luxurious, elegant, decorative, symmetrical, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
},
{
"name": "Art Deco 2",
"prompt": "Art Deco, {prompt}, sleek, geometric forms, art deco style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Art Nouveau",
"prompt": "art nouveau style, {prompt}, elegant, decorative, curvilinear forms, nature-inspired, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
},
{
"name": "Art Nouveau 2",
"prompt": "Art Nouveau art of {prompt}, sleek, organic forms, long, sinuous, art nouveau style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, industrial, mechanical"
},
{
"name": "Astral Aura",
"prompt": "Astral Aura, {prompt}, astral, colorful aura, vibrant energy",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Avant-garde",
"prompt": "Avant-garde, {prompt}, unusual, experimental, avant-garde art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Baroque",
"prompt": "Baroque, {prompt}, dramatic, exuberant, grandeur, baroque art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Bauhaus-Style Poster",
"prompt": "Bauhaus-Style Poster, {prompt}, simple geometric shapes, clean lines, primary colors, Bauhaus-Style Poster",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Biomechanical",
"prompt": "biomechanical style, {prompt}, blend of organic and mechanical elements, futuristic, cybernetic, detailed, intricate",
"negative_prompt": "natural, rustic, primitive, organic, simplistic"
},
{
"name": "Biomechanical Cyberpunk",
"prompt": "biomechanical cyberpunk, {prompt}, cybernetics, human-machine fusion, dystopian, organic meets artificial, dark, intricate, highly detailed",
"negative_prompt": "natural, colorful, deformed, sketch, low contrast, watercolor"
},
{
"name": "Blueprint Schematic Drawing",
"prompt": "Blueprint Schematic Drawing of {prompt}, technical drawing, blueprint, schematic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Bubble Bobble Game",
"prompt": "Bubble Bobble style, {prompt}, 8-bit, cute, pixelated, fantasy, vibrant, reminiscent of Bubble Bobble game",
"negative_prompt": "realistic, modern, photorealistic, violent, horror"
},
{
"name": "Caricature",
"prompt": "Caricature of {prompt}, exaggerated, comical, caricature",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic"
},
{
"name": "Cinematic Film",
"prompt": "cinematic film still of {prompt}, shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured"
},
{
"name": "Cinematic Photograph",
"prompt": "UHD, 4k, ultra detailed, cinematic, a photograph of {prompt}, epic, beautiful lighting, inpsiring",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic"
},
{
"name": "Classicism Art",
"prompt": "Classicism Art, {prompt}, inspired by Roman and Greek culture, clarity, harmonious, classicism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Collage",
"prompt": "Collage style, {prompt}, Mixed media, layered, textural, detailed, artistic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
},
{
"name": "Commercial Illustration 1920s",
"prompt": "1920s commercial illustration of {prompt}, magazine cover illustration from the 1920's, exaggerated realism, a hint of caricature",
"negative_prompt": "monochromatic, ugly, deformed, noisy, blurry, low contrast, photo, photograph, realistic, low res"
},
{
"name": "Comic Book 2",
"prompt": "comic book art of {prompt}, comic art, graphic novel illustration",
"negative_prompt": "photograph, deformed, glitch, noisy, realistic, stock photo"
},
{
"name": "Constructivism 1",
"prompt": "constructivist style, {prompt}, geometric shapes, bold colors, dynamic composition, propaganda art style",
"negative_prompt": "realistic, photorealistic, low contrast, plain, simple, abstract expressionism"
},
{
"name": "Constructivism 2",
"prompt": "Constructivism Art of {prompt}, minimalistic, geometric forms, flat, 2D, constructivism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Craft Clay",
"prompt": "play-doh style sculpture of {prompt}, sculpture, clay art, centered composition, Claymation",
"negative_prompt": "sloppy, messy, grainy, highly detailed, ultra textured, photo"
},
{
"name": "Cubism 1",
"prompt": "Cubist artwork of {prompt}, Geometric shapes, abstract, innovative, revolutionary",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
},
{
"name": "Cubism 2",
"prompt": "Cubism Art of {prompt}, flat geometric forms, 2D, limited color palette, cubism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Cybernetic",
"prompt": "cybernetic style, {prompt}, futuristic, technological, cybernetic enhancements, robotics, artificial intelligence themes",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
},
{
"name": "Cybernetic Robot",
"prompt": "cybernetic robot {prompt}, android, AI, machine, metal, wires, tech, futuristic, highly detailed",
"negative_prompt": "organic, natural, human, sketch, watercolor, low contrast"
},
{
"name": "Cyberpunk Cityscape",
"prompt": "cyberpunk cityscape, {prompt}, neon lights, dark alleys, skyscrapers, futuristic, vibrant colors, high contrast, highly detailed",
"negative_prompt": "natural, rural, deformed, low contrast, black and white, sketch, watercolor"
},
{
"name": "Cyberpunk",
"prompt": "cyberpunk style, {prompt}, neon, dystopian, futuristic, digital, vibrant, detailed, high contrast, reminiscent of cyberpunk genre",
"negative_prompt": "historical, natural, rustic, low detailed"
},
{
"name": "DMT Art Style",
"prompt": "DMT Art Style of {prompt}, bright colors, surreal visuals, swirling patterns, DMT art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Digital Art",
"prompt": "concept art of {prompt}, digital artwork, illustrative, painterly, matte painting, highly detailed",
"negative_prompt": "photo, photorealistic, realism, ugly"
},
{
"name": "Disco",
"prompt": "Disco-themed, {prompt}, Vibrant, groovy, retro 70s style, shiny disco balls, neon lights, dance floor, highly detailed",
"negative_prompt": "minimalist, rustic, monochrome, contemporary, simplistic"
},
{
"name": "Double Exposure",
"prompt": "Double Exposure photography, {prompt}, double image ghost effect, image combination, double exposure style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Dreamscape",
"prompt": "Dreamscape, {prompt}, Surreal, ethereal, dreamy, mysterious, fantasy, highly detailed",
"negative_prompt": "realistic, concrete, ordinary, mundane"
},
{
"name": "Dripping Paint Splatter Art",
"prompt": "Dripping Paint Splatter Art, {prompt}, dramatic, paint drips, splatters, dripping paint",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Dystopian",
"prompt": "Dystopian style, {prompt}, Bleak, post-apocalyptic, somber, dramatic, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, cheerful, optimistic, vibrant, colorful"
},
{
"name": "Enhance",
"prompt": "breathtaking, {prompt}, award-winning, professional, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy"
},
{
"name": "Expressionism 1",
"prompt": "expressionist, {prompt}, raw, emotional, dynamic, distortion for emotional effect, vibrant, use of unusual colors, detailed",
"negative_prompt": "realism, symmetry, quiet, calm, photo"
},
{
"name": "Expressionism 2",
"prompt": "Expressionism Art Style, an expressionist painting of {prompt}, visible brush strokes, contrast, emotional, exaggerated forms, expressionism art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic, photograph, photo"
},
{
"name": "Fairy Tale",
"prompt": "Fairy tale, {prompt}, Magical, fantastical, enchanting, storybook style, highly detailed",
"negative_prompt": "realistic, modern, ordinary, mundane"
},
{
"name": "Fantasy Art",
"prompt": "ethereal fantasy concept art of {prompt}, magnificent, celestial, ethereal, painterly, epic, majestic, magical, fantasy art, cover art, dreamy",
"negative_prompt": "photographic, realistic, realism, 35mm film, dslr, cropped, frame, text, deformed, glitch, noise, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, sloppy, duplicate, mutated, black and white"
},
{
"name": "Fighting Game",
"prompt": "Fighting game style, {prompt}, Dynamic, vibrant, action-packed, detailed character design, reminiscent of fighting video games",
"negative_prompt": "peaceful, calm, minimalist, photorealistic"
},
{
"name": "Film Noir 2",
"prompt": "Film noir style, {prompt}, Monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vibrant, colorful"
},
{
"name": "Flat 2D Art",
"prompt": "Flat 2D Art of {prompt}, simple flat color, 2-dimensional, Flat 2D Art Style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, 3D, photo, realistic"
},
{
"name": "Flat Papercut",
"prompt": "Flat papercut style, papercut art of {prompt}, Silhouette, clean cuts, paper, sharp edges, minimalist, color block",
"negative_prompt": "3D, high detail, noise, grainy, blurry, painting, drawing, photo, disfigured"
},
{
"name": "Futuristic",
"prompt": "futuristic style, {prompt}, sleek, modern, ultramodern, high tech, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vintage, antique"
},
{
"name": "Futuristic Sci-Fi",
"prompt": "sci-fi style, {prompt}, futuristic, technological, space themes, advanced civilizations",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
},
{
"name": "GTA",
"prompt": "GTA style art of {prompt}, satirical, exaggerated, GTA art style, vibrant colors, iconic characters, action-packed",
"negative_prompt": "realistic, black and white, low contrast, impressionist, cubist, noisy, blurry, deformed"
},
{
"name": "Glamour",
"prompt": "glamorous photo of {prompt}, high fashion, luxurious, extravagant, stylish, sensual, opulent, elegance, stunning beauty, professional, high contrast, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy, sketch, low contrast, dull, plain, modest"
},
{
"name": "Googie Art Style",
"prompt": "Googie Art Style, {prompt}, dynamic, dramatic, 1950's futurism, bold boomerang angles, Googie art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Gothic",
"prompt": "Gothic style, {prompt}, Dark, mysterious, haunting, dramatic, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, cheerful, optimistic"
},
{
"name": "Graffiti Art 1",
"prompt": "Graffiti art of {prompt}, Street art, vibrant, urban, detailed, tag, mural",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
},
{
"name": "Graffiti Art 2",
"prompt": "Graffiti art of {prompt}, dynamic, dramatic, vibrant colors, bold lines, graffiti art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Grunge",
"prompt": "Grunge style, {prompt}, Textured, distressed, vintage, edgy, punk rock vibe, dirty, noisy",
"negative_prompt": "smooth, clean, minimalist, sleek, modern, photorealistic"
},
{
"name": "HDR",
"prompt": "HDR photo of {prompt}, High dynamic range, vivid, rich details, clear shadows and highlights, realistic, intense, enhanced contrast, highly detailed",
"negative_prompt": "flat, low contrast, oversaturated, underexposed, overexposed, blurred, noisy"
},
{
"name": "Harlem Renaissance Art",
"prompt": "Harlem Renaissance Art Style, {prompt}, dynamic, dramatic, 1920s African American culture, Harlem Renaissance art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "High Fashion",
"prompt": "High Fashion, {prompt}, dynamic, dramatic, haute couture, elegant, ornate clothing, High Fashion",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Horror",
"prompt": "Horror-themed, {prompt}, Eerie, unsettling, dark, spooky, suspenseful, grim, highly detailed",
"negative_prompt": "cheerful, bright, vibrant, light-hearted, cute"
},
{
"name": "Hyperrealism",
"prompt": "Hyperrealistic art of {prompt}, Extremely high-resolution details, photographic, realism pushed to extreme, fine texture, incredibly lifelike",
"negative_prompt": "simplified, abstract, unrealistic, impressionistic, low resolution"
},
{
"name": "Idyllic",
"prompt": "Idyllic, {prompt}, peaceful, happy, pleasant, happy, harmonious, picturesque, charming",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Impressionism 1",
"prompt": "Impressionist painting of {prompt}, loose brushwork, vibrant color, light and shadow play, captures feeling over form",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
},
{
"name": "Impressionism 2",
"prompt": "Impressionism art of {prompt}, painterly, small brushstrokes, visible brushstrokes, impressionistic style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Ink Dripping Drawing",
"prompt": "Ink Dripping Drawing of {prompt}, ink drawing, ink splash, ink wash, dripping ink",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, colorful, vibrant"
},
{
"name": "Isometric Style",
"prompt": "isometric style, {prompt}, vibrant, beautiful, crisp, detailed, ultra detailed, intricate, isometric style",
"negative_prompt": "deformed, mutated, ugly, disfigured, blur, blurry, noise, noisy, realistic, photographic"
},
{
"name": "Japanese Ink Drawing",
"prompt": "Japanese Style Ink Drawing of {prompt}, ink drawing, inkwash, Japanese Style Ink Drawing",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, colorful, vibrant"
},
{
"name": "Kawaii",
"prompt": "kawaii style, {prompt}, cute, adorable, brightly colored, cheerful, anime influence, highly detailed",
"negative_prompt": "dark, scary, realistic, monochrome, abstract"
},
{
"name": "Kirigami",
"prompt": "Kirigami representation of {prompt}, 3D, paper folding, paper cutting, Japanese, intricate, symmetrical, precision, clean lines",
"negative_prompt": "painting, drawing, 2D, noisy, blurry, deformed"
},
{
"name": "Knolling Photography",
"prompt": "Knolling Photography, {prompt}, flat lay photography, object arrangment, knolling photography",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Legend of Zelda",
"prompt": "Legend of Zelda style art of {prompt}, Vibrant, fantasy, detailed, epic, heroic, reminiscent of The Legend of Zelda series",
"negative_prompt": "sci-fi, modern, realistic, horror"
},
{
"name": "Light Cheery Atmosphere",
"prompt": "Light Cheery Atmosphere, {prompt}, happy, joyful, cheerful, carefree, gleeful, lighthearted, pleasant atmosphere",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, monochromatic, dark, moody"
},
{
"name": "Long Exposure",
"prompt": "Long exposure photo of {prompt}, Blurred motion, streaks of light, surreal, dreamy, ghosting effect, highly detailed",
"negative_prompt": "static, noisy, deformed, shaky, abrupt, flat, low contrast"
},
{
"name": "Lovecraftian Horror",
"prompt": "lovecraftian horror, {prompt}, eldritch, cosmic horror, unknown, mysterious, surreal, highly detailed",
"negative_prompt": "light-hearted, mundane, familiar, simplistic, realistic"
},
{
"name": "Lowpoly",
"prompt": "low-poly style, {prompt}, low-poly game art, polygon mesh, jagged, blocky, wireframe edges, centered composition",
"negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"
},
{
"name": "Luxurious Elegance",
"prompt": "Luxurious Elegance, {prompt}, extravagant, ornate, designer, opulent, picturesque, lavish",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Macabre",
"prompt": "macabre style, {prompt}, dark, gothic, grim, haunting, highly detailed",
"negative_prompt": "bright, cheerful, light-hearted, cartoonish, cute"
},
{
"name": "Macro Photography",
"prompt": "Macro Photography, macro photograph of {prompt}, close-up, macro 100mm, macro photography",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Mandala Art",
"prompt": "Mandala style art of {prompt}, complex, circular design, mandala art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Manga",
"prompt": "manga style art of {prompt}, vibrant, high-energy, detailed, iconic, Japanese comic style, manga",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style"
},
{
"name": "Medievalism",
"prompt": "Medievalism, medival art of {prompt}, inspired by The Middle Ages, medieval art, elaborate patterns and decoration, Medievalism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Metropolis",
"prompt": "metropolis-themed, {prompt}, urban, cityscape, skyscrapers, modern, futuristic, highly detailed",
"negative_prompt": "rural, natural, rustic, historical, simple"
},
{
"name": "Minecraft",
"prompt": "Minecraft style art of {prompt}, Blocky, pixelated, vibrant colors, recognizable characters and objects, game assets, Minecraft style",
"negative_prompt": "smooth, realistic, detailed, photorealistic, noise, blurry, deformed"
},
{
"name": "Minimalism 1",
"prompt": "Minimalist, {prompt}, Simple, clean, uncluttered, modern, elegant",
"negative_prompt": "ornate, complicated, highly detailed, cluttered, disordered, messy, noisy"
},
{
"name": "Minimalism 2",
"prompt": "Minimalism art of {prompt}, abstract, simple geometric shapes, hard edges, sleek contours, Minimalism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Monochrome",
"prompt": "Monochrome, {prompt}, contrast, tone, texture, detailed, Monochromatic",
"negative_prompt": "colorful, vibrant, noisy, blurry, deformed"
},
{
"name": "Nautical",
"prompt": "Nautical-themed, {prompt}, Sea, ocean, ships, maritime, beach, marine life, highly detailed",
"negative_prompt": "landlocked, desert, mountains, urban, rustic"
},
{
"name": "Neo-Baroque",
"prompt": "Neo-Baroque, {prompt}, ornate and elaborate, dynamic, Neo-Baroque",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Neo-Byzantine",
"prompt": "Neo-Byzantine, {prompt}, grand decorative religious style, Orthodox Christian inspired, Neo-Byzantine",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Neo-Futurism",
"prompt": "Neo-Futurism, {prompt}, high-tech, curves, spirals, flowing lines, idealistic future, Neo-Futurism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Neo-Impressionism",
"prompt": "Neo-Impressionism, {prompt}, tiny dabs of color, Pointillism, painterly, Neo-Impressionism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photograph, realistic"
},
{
"name": "Neo-Rococo",
"prompt": "Neo-Rococo, {prompt}, curved forms, naturalistic ornamentation, elaborate, decorative, gaudy, Neo-Rococo",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Neoclassicism",
"prompt": "Neoclassicism, {prompt}, ancient Rome and Greece inspired, idealic, sober colors, Neoclassicism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Neon Noir",
"prompt": "Neon noir, {prompt}, Cyberpunk, dark, rainy streets, neon signs, high contrast, low light, vibrant, highly detailed",
"negative_prompt": "bright, sunny, daytime, low contrast, black and white, sketch, watercolor"
},
{
"name": "Origami",
"prompt": "origami style, {prompt}, paper art, pleated paper, folded, origami art, pleats, cut and fold, centered composition",
"negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"
},
{
"name": "Ornate and Intricate",
"prompt": "Ornate and Intricate, {prompt}, decorative, highly detailed, elaborate, ornate, intricate",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Paper Mache",
"prompt": "Paper mache representation of {prompt}, 3D, sculptural, textured, handmade, vibrant, fun",
"negative_prompt": "2D, flat, photo, sketch, digital art, deformed, noisy, blurry"
},
{
"name": "Paper Quilling",
"prompt": "Paper quilling art of {prompt}, Intricate, delicate, curling, rolling, shaping, coiling, loops, 3D, dimensional, ornamental",
"negative_prompt": "photo, painting, drawing, 2D, flat, deformed, noisy, blurry"
},
{
"name": "Papercut Collage",
"prompt": "Papercut collage of {prompt}, Mixed media, textured paper, overlapping, asymmetrical, abstract, vibrant",
"negative_prompt": "photo, 3D, realistic, drawing, painting, high detail, disfigured"
},
{
"name": "Papercut Shadow Box",
"prompt": "3D papercut shadow box of {prompt}, Layered, dimensional, depth, silhouette, shadow, papercut, handmade, high contrast",
"negative_prompt": "painting, drawing, photo, 2D, flat, high detail, blurry, noisy, disfigured"
},
{
"name": "Pencil Sketch",
"prompt": "Pencil Sketch Drawing of {prompt}, black and white drawing, pencil sketch, graphite drawing",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Pointillism",
"prompt": "Pointillism style painting of {prompt}, Composed entirely of small distinct dots of color, vibrant, highly detailed, pointillism",
"negative_prompt": "line drawing, smooth shading, large color fields, simplistic"
},
{
"name": "Pokémon",
"prompt": "Pokémon style art of {prompt}, Vibrant, cute, anime, fantasy, reminiscent of Pokémon series",
"negative_prompt": "realistic, modern, horror, dystopian, violent"
},
{
"name": "Pop Art 1",
"prompt": "Pop Art style, art of {prompt}, Bright colors, bold outlines, popular culture themes, ironic or kitsch",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, minimalist"
},
{
"name": "Pop Art 2",
"prompt": "Pop Art, art of {prompt}, vivid colors, flat color, 2D, strong lines, Pop Art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, realistic"
},
{
"name": "Psychedelic",
"prompt": "Psychedelic style, {prompt}, Vibrant colors, swirling patterns, abstract forms, surreal, trippy",
"negative_prompt": "monochrome, black and white, low contrast, realistic, photorealistic, plain, simple"
},
{
"name": "RPG Fantasy",
"prompt": "Role-playing game (RPG) style fantasy, {prompt}, Detailed, vibrant, immersive, reminiscent of fantasy RPG games",
"negative_prompt": "sci-fi, modern, urban, futuristic, low detailed"
},
{
"name": "Real Estate Photography",
"prompt": "Real estate photography style, {prompt}, Professional, inviting, well-lit, high-resolution, property-focused, commercial, highly detailed",
"negative_prompt": "dark, blurry, unappealing, noisy, unprofessional"
},
{
"name": "Renaissance",
"prompt": "Renaissance style, {prompt}, Realistic, perspective, light and shadow, religious or mythological themes, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, modernist, minimalist, abstract"
},
{
"name": "Retro Arcade",
"prompt": "Retro arcade style, {prompt}, 8-bit, pixelated, vibrant, classic video game, old school gaming, reminiscent of 80s and 90s arcade games",
"negative_prompt": "modern, ultra-high resolution, photorealistic, 3D"
},
{
"name": "Retro Game",
"prompt": "Retro game art of {prompt}, 16-bit, vibrant colors, pixelated, nostalgic, charming, fun",
"negative_prompt": "realistic, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
},
{
"name": "Retro Cyberpunk",
"prompt": "retro cyberpunk, {prompt}, 1980s inspired, synthwave, neon, vibrant, detailed, retro futurism",
"negative_prompt": "modern, desaturated, black and white, realism, low contrast"
},
{
"name": "Retro Futurism",
"prompt": "retro-futuristism, {prompt}, vintage sci-fi, 1950s and 1960s style, atomic age, vibrant, highly detailed, retro futurism",
"negative_prompt": "contemporary, realistic, rustic, primitive"
},
{
"name": "Rococo",
"prompt": "Rococo, {prompt}, flamboyant, pastel colors, curved lines, elaborate detail, Rococo",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Silhouette",
"prompt": "Silhouette style, {prompt}, High contrast, minimalistic, black and white, stark, dramatic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, color, realism, photorealistic"
},
{
"name": "Sketchup",
"prompt": "Sketchup, {prompt}, CAD, professional design, Sketchup",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, photograph"
},
{
"name": "Space",
"prompt": "Space-themed, {prompt}, Cosmic, celestial, stars, galaxies, nebulas, planets, science fiction, highly detailed",
"negative_prompt": "earthly, mundane, ground-based, realism"
},
{
"name": "Stacked Papercut",
"prompt": "Stacked papercut art of {prompt}, 3D, layered, dimensional, depth, precision cut, stacked layers, papercut, high contrast",
"negative_prompt": "2D, flat, noisy, blurry, painting, drawing, photo, deformed"
},
{
"name": "Stained Glass",
"prompt": "Stained glass style, {prompt}, Vibrant, beautiful, translucent, intricate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
},
{
"name": "Steampunk 1",
"prompt": "Steampunk style, {prompt}, antique, mechanical, brass and copper tones, gears, intricate, detailed",
"negative_prompt": "deformed, glitch, noisy, low contrast, anime, photorealistic"
},
{
"name": "Steampunk 2",
"prompt": "Steampunk, {prompt}, retrofuturistic science fantasy, steam-powered tech, vintage industry, gears, neo-victorian, steampunk",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Strategy Game",
"prompt": "Strategy game style, {prompt}, Overhead view, detailed map, units, reminiscent of real-time strategy video games",
"negative_prompt": "first-person view, modern, photorealistic"
},
{
"name": "Street Fighter",
"prompt": "Street Fighter style 2D art of {prompt}, Vibrant, dynamic, arcade, 2D fighting game, highly detailed, reminiscent of Street Fighter series",
"negative_prompt": "3D, realistic, modern, photorealistic, turn-based strategy"
},
{
"name": "Super Mario",
"prompt": "Super Mario style art of {prompt}, Vibrant, cute, cartoony, fantasy, playful, reminiscent of Super Mario series",
"negative_prompt": "realistic, modern, horror, dystopian, violent"
},
{
"name": "Suprematism",
"prompt": "Suprematism, {prompt}, abstract, limited color palette, geometric forms, Suprematism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic"
},
{
"name": "Surrealism 1",
"prompt": "Surrealist art {prompt}, dreamlike, mysterious, provocative, symbolic, intricate, detailed",
"negative_prompt": "anime, photorealistic, realistic, deformed, glitch, noisy, low contrast"
},
{
"name": "Surrealism 2",
"prompt": "Surrealism, {prompt}, expressive, dramatic, organic lines and forms, dreamlike, mysterious, Surrealism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic"
},
{
"name": "Techwear Fashion",
"prompt": "Techwear fashion, {prompt}, Futuristic, cyberpunk, urban, tactical, sleek, dark, highly detailed",
"negative_prompt": "vintage, rural, colorful, low contrast, realism, sketch, watercolor"
},
{
"name": "Terragen",
"prompt": "Terragen, {prompt}, beautiful massive landscape, epic scenery, Terragen",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Texture",
"prompt": "texture asset, seamless texture of {prompt}, close-up, texture detail, tileable texture",
"negative_prompt": "ugly, deformed, noisy, blurry"
},
{
"name": "Thick Layered Papercut",
"prompt": "Thick layered papercut art of {prompt}, Deep 3D, volumetric, dimensional, depth, thick paper, high stack, heavy texture, tangible layers",
"negative_prompt": "2D, flat, thin paper, low stack, smooth texture, painting, drawing, photo, deformed"
},
{
"name": "Tilt-Shift Photo",
"prompt": "Tilt-shift photo of {prompt}, selective focus, miniature effect, blurred background, highly detailed, vibrant, perspective control",
"negative_prompt": "blurry, noisy, deformed, flat, low contrast, unrealistic, oversaturated, underexposed"
},
{
"name": "Tranquil Relaxing Atmosphere",
"prompt": "Tranquil Relaxing Atmosphere, {prompt}, calming style, soothing colors, peaceful, idealic, Tranquil Relaxing Atmosphere",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, oversaturated"
},
{
"name": "Tribal",
"prompt": "Tribal style, {prompt}, Indigenous, ethnic, traditional patterns, bold, natural colors, highly detailed",
"negative_prompt": "modern, futuristic, minimalist, pastel"
},
{
"name": "Typography",
"prompt": "Typographic art of {prompt}, Stylized, intricate, detailed, artistic, text-based",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
},
{
"name": "Vaporwave",
"prompt": "vaporwave style, {prompt}, retro aesthetic, cyberpunk, vibrant, neon colors, vintage 80s and 90s style, highly detailed",
"negative_prompt": "monochrome, muted colors, realism, rustic, minimalist, dark"
},
{
"name": "Vibrant Rim Light",
"prompt": "Vibrant Rim Light, {prompt}, back lighting, beautiful lighting, colored rim light, high contrast",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast"
},
{
"name": "Watercolor 2",
"prompt": "Watercolor style painting, {prompt}, visible paper texture, colorwash, watercolor art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, realistic"
},
{
"name": "Whimsical and Playful",
"prompt": "Whimsical and Playful, {prompt}, imaginative, fantastical, bight colors, stylized, happy, Whimsical and Playful",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, drab, boring, moody"
},
{
"name": "Wild West",
"prompt": "wild west style, {prompt}, the old west, historical, rustic, the wild west",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, drab, boring, moody"
},
{
"name": "Zentangle",
"prompt": "Zentangle, {prompt}, Intricate, abstract, monochrome, patterns, meditative, highly detailed",
"negative_prompt": "colorful, representative, simplistic, large fields of color"
},
{
"name": "ads-corporate",
"prompt": "corporate branding style, {prompt}, professional, clean, modern, sleek, minimalist, business-oriented, highly detailed",
"negative_prompt": "noisy, blurry, grungy, sloppy, cluttered, disorganized"
},
{
"name": "ads-fashion editorial",
"prompt": "fashion editorial style, {prompt}, high fashion, trendy, stylish, editorial, magazine style, professional, highly detailed",
"negative_prompt": "outdated, blurry, noisy, unattractive, sloppy"
},
{
"name": "ads-food photography",
"prompt": "food photography style, {prompt}, appetizing, professional, culinary, high-resolution, commercial, highly detailed",
"negative_prompt": "unappetizing, sloppy, unprofessional, noisy, blurry"
},
{
"name": "ads-luxury",
"prompt": "luxury product style, {prompt}, elegant, sophisticated, high-end, luxurious, professional, highly detailed",
"negative_prompt": "cheap, noisy, blurry, unattractive, amateurish"
},
{
"name": "ads-retail",
"prompt": "retail packaging style, {prompt}, vibrant, enticing, commercial, product-focused, eye-catching, professional, highly detailed",
"negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
},
{
"name": "img2img 3d to photorealisim",
"prompt": "RAW photo, realistic, {prompt}, (high detailed skin:1.2), 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3",
"negative_prompt": "(deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.2), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck"
},
{
"name": "Magnetic Ink",
"prompt": "magnetic ink style of {prompt}, experimental, swirling magnetic fluid patterns, surreal, dark elegance, fine detail",
"negative_prompt": "realistic, flat, bland, overly bright, photorealistic, sketch, digital"
},
{
"name": "Mythological Mosaic",
"prompt": "mythological mosaic of {prompt}, intricate tiles, Byzantine influence, divine symbolism, ornamental, richly colored",
"negative_prompt": "plain, modern, simple, minimalistic, sketchy, blurry, noisy"
},
{
"name": "Nebula Dreams",
"prompt": "ethereal nebula of {prompt}, colorful gas clouds, cosmic glow, vibrant, surreal, deep space vision",
"negative_prompt": "earthly, monotone, deformed, low contrast, cartoon, flat design"
},
{
"name": "Oceanic Abstraction",
"prompt": "abstract oceanic interpretation of {prompt}, fluid motion, blues and greens, wave forms, flowing energy",
"negative_prompt": "stiff, rigid, geometric, land-themed, urban, black and white"
},
{
"name": "Paper Origami Galaxy",
"prompt": "galactic origami of {prompt}, folded paper representing space, stars, planets, artistic fusion of origami and cosmos",
"negative_prompt": "photo, 3D render, realism, low detail, dull, sketchy, natural"
},
{
"name": "Quantum Graffiti",
"prompt": "quantum graffiti of {prompt}, neon particles, motion trails, vibrant stencils, physics-themed abstract art",
"negative_prompt": "low energy, static, plain, dull, black and white, traditional"
},
{
"name": "Retro Botanical",
"prompt": "retro botanical print of {prompt}, vintage flora, 60s style, bold outlines, muted natural palette, textural detail",
"negative_prompt": "digital look, glitch, synthetic, geometric, sci-fi, horror"
},
{
"name": "Solarpunk Harmony",
"prompt": "solarpunk vision of {prompt}, hopeful eco-future, warm lighting, greenery-integrated architecture, golden hour, organic tech",
"negative_prompt": "dystopian, dark, monochrome, industrial, gritty, cyberpunk"
},
{
"name": "Tactile Velvet",
"prompt": "velvet texture visual of {prompt}, soft, lush, luxurious fabric aesthetic, deep shadows, high fidelity tactile style",
"negative_prompt": "rough, papery, low texture, flat, blurry, noisy, sketchy"
},
{
"name": "Ultraviolet Minimalism",
"prompt": "ultraviolet minimalist representation of {prompt}, clean lines, glowing neon, blacklight aesthetics, futuristic restraint",
"negative_prompt": "ornate, cluttered, dull colors, realism, heavy texture, painterly"
},
{
"name": "Vintage Newsprint",
"prompt": "vintage newsprint style of {prompt}, monochrome halftone, 1950s newspaper aesthetic, slightly yellowed paper, ink bleed",
"negative_prompt": "modern print, digital, color photography, glossy, high contrast"
},
{
"name": "Woven Textile Pattern",
"prompt": "woven textile pattern of {prompt}, thread textures, tapestry style, intricate weave, folk art inspired",
"negative_prompt": "flat, digital art, noisy, blurry, pixelated, neon colors"
},
{
"name": "Xerox Decay",
"prompt": "xerox photocopy decay of {prompt}, scanned texture, overexposed shadows, ghosted repetition, lo-fi print artifact",
"negative_prompt": "high detail, color accurate, realistic, high fidelity, vibrant"
},
{
"name": "Yarn Craft Illustration",
"prompt": "yarn-crafted illustration of {prompt}, embroidered edges, fiber texture, handcrafted warmth, cozy aesthetic",
"negative_prompt": "sharp lines, digital smoothness, 3D render, photo-real, cool tone"
},
{
"name": "Zen Minimal Brushwork",
"prompt": "Zen minimal ink brush style of {prompt}, sumi-e, focused form, intentional space, meditative, spiritual",
"negative_prompt": "colorful, busy, textured, complex, realistic, noisy"
},
{
"name": "Zero Gravity Fantasy",
"prompt": "zero gravity dreamscape of {prompt}, floating elements, anti-physics, surreal weightlessness, soft edges, luminous atmosphere",
"negative_prompt": "grounded, rigid, realistic, photographic, hard shadows, dry texture"
},
{
"name": "Zodiac Ritual Illustration",
"prompt": "mystical zodiac ritual illustration of {prompt}, celestial symbology, arcane circles, star charts, magical ink lines, parchment paper",
"negative_prompt": "modern, flat, digital, realism, cartoon, photo, sketch"
},
{
"name": "Zoological Scientific Plate",
"prompt": "vintage scientific plate of {prompt}, detailed zoological illustration, labeled anatomy, 19th century textbook style",
"negative_prompt": "photo, modern, stylized, blurry, cartoony, fantasy"
},
{
"name": "Ancient Fresco",
"prompt": "ancient fresco mural of {prompt}, weathered wall texture, Renaissance or Greco-Roman style, faded pigments, historical ambiance",
"negative_prompt": "digital, clean, photorealistic, modern, saturated, polished"
},
{
"name": "Bioluminescent Dreamscape",
"prompt": "bioluminescent dreamscape of {prompt}, glowing flora and fauna, surreal night environment, mystical lighting, soft hues",
"negative_prompt": "harsh light, realism, flat tones, washed out, gray, noisy"
},
{
"name": "Crystal Core Fantasy",
"prompt": "crystal core fantasy setting of {prompt}, glowing crystals, refracted light, geode textures, fantasy cavern",
"negative_prompt": "urban, plain, metallic, untextured, modernist, minimal"
},
{
"name": "Dream Journal Sketch",
"prompt": "dream journal sketch of {prompt}, hazy lines, half-remembered forms, scribbled notes, surreal and personal",
"negative_prompt": "sharp lines, high detail, vector art, polished, 3D"
},
{
"name": "Escher Maze",
"prompt": "Escher-inspired maze of {prompt}, impossible geometry, infinite staircases, optical illusions, paradoxical architecture",
"negative_prompt": "natural, flowing, organic, realistic, bright, earthy"
},
{
"name": "Floating Ink Surrealism",
"prompt": "floating ink surrealism of {prompt}, ink suspended mid-air, dreamlike visuals, dripping space, anti-gravity composition",
"negative_prompt": "concrete, photographic, sketchy, low saturation, earthy"
},
{
"name": "Glass Garden",
"prompt": "glass garden scene of {prompt}, crystalline plants, translucent flowers, stained-glass reflections, fantasy botany",
"negative_prompt": "muddy, opaque, textured, wooden, faded, dry"
},
{
"name": "Holographic Prism",
"prompt": "holographic prism style of {prompt}, iridescent reflections, rainbow interference patterns, tech-futuristic glow",
"negative_prompt": "flat color, grayscale, vintage, dull, matte"
},
{
"name": "Iridescent Oil Painting",
"prompt": "iridescent oil painting of {prompt}, shimmering textures, rich pigments, glowing brushstrokes, dynamic lighting",
"negative_prompt": "matte, flat, pastel, sketch, blurry, noise-heavy"
},
{
"name": "Jellyfish Bloom",
"prompt": "jellyfish bloom concept of {prompt}, ethereal underwater swarms, bioluminescent trails, oceanic glow, drifting composition",
"negative_prompt": "dry, sharp, solid, land-based, hot, structured"
},
{
"name": "Kaleidoscope Portal",
"prompt": "kaleidoscope portal view of {prompt}, fractal symmetry, mirrored shards, shifting colors, geometric chaos",
"negative_prompt": "flat, monochrome, photorealistic, linear, simple, minimal"
},
{
"name": "Lantern Festival",
"prompt": "lantern festival depiction of {prompt}, glowing paper lanterns, night celebration, ambient warmth, floating lights",
"negative_prompt": "daylight, dry, monochrome, indoor, noisy, sharp"
},
{
"name": "Meteorite Sketchbook",
"prompt": "meteorite sketchbook drawing of {prompt}, cosmic debris, space rock studies, charcoal shading, hand-drawn look",
"negative_prompt": "clean vector, colorful, 3D, polished, synthetic"
},
{
"name": "Nightlight Plush Scene",
"prompt": "cozy nightlight scene of {prompt}, plush textures, soft glowing light, dreamy bedtime aesthetic, childlike comfort",
"negative_prompt": "harsh lighting, sharp shadows, hard materials, realistic"
},
{
"name": "Opalescent Layered Glass",
"prompt": "opalescent layered glass art of {prompt}, milky translucent hues, layered texture, dreamlike glow, soft focus",
"negative_prompt": "matte, opaque, dry, flat, solid black and white"
},
{
"name": "Fooocus V2",
"prompt": "{prompt}, highly detailed, dramatic light, sharp focus, illuminated, cinematic, fine detail, polished, complex, color, pristine, attractive, celestial, symmetry, pretty, striking, extremely, coherent, cute, confident, united, passionate, professional, artistic, ambient, cheerful, intricate, magical, enchanted, magic, stunning, beautiful",
"negative_prompt": ""
},
{
"name": "Fooocus Sharp",
"prompt": "cinematic still {prompt}. emotional, harmonious, vignette, 4k epic detailed, shot on kodak, 35mm photo, sharp focus, high budget, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, (blur, blurry, bokeh), text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured"