adamelliotfields commited on
Commit
053b3a4
1 Parent(s): cb5daed

Improve style templates

Browse files
Files changed (6) hide show
  1. app.css +6 -3
  2. app.py +11 -3
  3. config.py +2 -1
  4. generate.py +4 -4
  5. styles/twri.json +458 -267
  6. usage.md +4 -0
app.css CHANGED
@@ -41,9 +41,12 @@
41
 
42
  .icon-button {
43
  max-width: 42px;
 
 
 
44
  position: relative;
45
  }
46
- .icon-button:hover::after {
47
  white-space: nowrap;
48
  position: absolute;
49
  left: 50%;
@@ -58,10 +61,10 @@
58
  font-weight: var(--section-header-text-weight);
59
  font-size: var(--section-header-text-size);
60
  }
61
- .icon-button#clear:hover::after {
62
  content: 'Clear gallery';
63
  }
64
- .icon-button#random:hover::after {
65
  /* see config.py for default seed */
66
  content: var(--seed, "-1");
67
  }
 
41
 
42
  .icon-button {
43
  max-width: 42px;
44
+ }
45
+
46
+ .popover {
47
  position: relative;
48
  }
49
+ .popover:hover::after {
50
  white-space: nowrap;
51
  position: absolute;
52
  left: 50%;
 
61
  font-weight: var(--section-header-text-weight);
62
  font-size: var(--section-header-text-size);
63
  }
64
+ .popover#clear:hover::after {
65
  content: 'Clear gallery';
66
  }
67
+ .popover#random:hover::after {
68
  /* see config.py for default seed */
69
  content: var(--seed, "-1");
70
  }
app.py CHANGED
@@ -100,7 +100,8 @@ with gr.Blocks(
100
  style = gr.Dropdown(
101
  value=cfg.STYLE,
102
  label="Style",
103
- choices=["None"] + [f"{style['name']}" for style in styles],
 
104
  )
105
  scheduler = gr.Dropdown(
106
  value=cfg.SCHEDULER,
@@ -169,6 +170,7 @@ with gr.Blocks(
169
  scale=1,
170
  )
171
  upscale_4x = gr.Checkbox(
 
172
  elem_classes=["checkbox"],
173
  label="Upscale 4x",
174
  value=False,
@@ -241,7 +243,7 @@ with gr.Blocks(
241
  with gr.Row():
242
  generate_btn = gr.Button("Generate", variant="primary", scale=6, elem_classes=[])
243
  random_btn = gr.Button(
244
- elem_classes=["icon-button"],
245
  variant="secondary",
246
  elem_id="random",
247
  min_width=0,
@@ -249,7 +251,7 @@ with gr.Blocks(
249
  scale=1,
250
  )
251
  clear_btn = gr.ClearButton(
252
- elem_classes=["icon-button"],
253
  components=[output_images],
254
  variant="secondary",
255
  elem_id="clear",
@@ -268,6 +270,12 @@ with gr.Blocks(
268
  js=seed_js,
269
  )
270
 
 
 
 
 
 
 
271
  file_format.change(
272
  lambda f: gr.Gallery(format=f),
273
  inputs=[file_format],
 
100
  style = gr.Dropdown(
101
  value=cfg.STYLE,
102
  label="Style",
103
+ choices=[("None", None)]
104
+ + [(style["name"], style["id"]) for style in styles],
105
  )
106
  scheduler = gr.Dropdown(
107
  value=cfg.SCHEDULER,
 
170
  scale=1,
171
  )
172
  upscale_4x = gr.Checkbox(
173
+ interactive=cfg.NUM_IMAGES == 1,
174
  elem_classes=["checkbox"],
175
  label="Upscale 4x",
176
  value=False,
 
243
  with gr.Row():
244
  generate_btn = gr.Button("Generate", variant="primary", scale=6, elem_classes=[])
245
  random_btn = gr.Button(
246
+ elem_classes=["icon-button", "popover"],
247
  variant="secondary",
248
  elem_id="random",
249
  min_width=0,
 
251
  scale=1,
252
  )
253
  clear_btn = gr.ClearButton(
254
+ elem_classes=["icon-button", "popover"],
255
  components=[output_images],
256
  variant="secondary",
257
  elem_id="clear",
 
270
  js=seed_js,
271
  )
272
 
273
+ num_images.change(
274
+ lambda n, upscale: gr.Checkbox(interactive=n == 1, value=upscale if n == 1 else False),
275
+ inputs=[num_images, upscale_4x],
276
+ outputs=[upscale_4x],
277
+ )
278
+
279
  file_format.change(
280
  lambda f: gr.Gallery(format=f),
281
  inputs=[file_format],
config.py CHANGED
@@ -8,6 +8,7 @@ SANS_FONTS = [
8
  "Noto Color Emoji",
9
  ]
10
 
 
11
  NEGATIVE_PROMPT = "<fast_negative>"
12
 
13
  MODEL = "Lykon/dreamshaper-8"
@@ -33,7 +34,7 @@ SCHEDULERS = [
33
  "PNDM",
34
  ]
35
 
36
- STYLE = "None"
37
 
38
  WIDTH = 448
39
 
 
8
  "Noto Color Emoji",
9
  ]
10
 
11
+ # embeddings loaded and renamed in generate.py
12
  NEGATIVE_PROMPT = "<fast_negative>"
13
 
14
  MODEL = "Lykon/dreamshaper-8"
 
34
  "PNDM",
35
  ]
36
 
37
+ STYLE = "sai-enhance"
38
 
39
  WIDTH = 448
40
 
generate.py CHANGED
@@ -166,7 +166,7 @@ class Loader:
166
  self.pipe = None
167
  torch.cuda.empty_cache()
168
 
169
- # no fp16 available
170
  if not ZERO_GPU and model_lower not in [
171
  "sg161222/realistic_vision_v5.1_novae",
172
  "prompthero/openjourney-v4",
@@ -225,12 +225,12 @@ def parse_prompt(prompt: str) -> list[str]:
225
  return prompts
226
 
227
 
228
- def apply_style(prompt, style_name, negative=False):
229
  global styles
230
- if not style_name or style_name == "None":
231
  return prompt
232
  for style in styles:
233
- if style["name"] == style_name:
234
  if negative:
235
  return prompt + " . " + style["negative_prompt"]
236
  else:
 
166
  self.pipe = None
167
  torch.cuda.empty_cache()
168
 
169
+ # no fp16 variant
170
  if not ZERO_GPU and model_lower not in [
171
  "sg161222/realistic_vision_v5.1_novae",
172
  "prompthero/openjourney-v4",
 
225
  return prompts
226
 
227
 
228
+ def apply_style(prompt, style_id, negative=False):
229
  global styles
230
+ if not style_id or style_id == "None":
231
  return prompt
232
  for style in styles:
233
+ if style["id"] == style_id:
234
  if negative:
235
  return prompt + " . " + style["negative_prompt"]
236
  else:
styles/twri.json CHANGED
@@ -1,447 +1,638 @@
1
  [
2
  {
3
- "name": "ads-advertising",
4
- "prompt": "advertising poster style {prompt} . Professional, modern, product-focused, commercial, eye-catching, highly detailed",
5
- "negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
 
6
  },
7
  {
8
- "name": "ads-automotive",
9
- "prompt": "automotive advertisement style {prompt} . sleek, dynamic, professional, commercial, vehicle-focused, high-resolution, highly detailed",
10
- "negative_prompt": "noisy, blurry, unattractive, sloppy, unprofessional"
 
11
  },
12
  {
13
- "name": "ads-corporate",
14
- "prompt": "corporate branding style {prompt} . professional, clean, modern, sleek, minimalist, business-oriented, highly detailed",
15
- "negative_prompt": "noisy, blurry, grungy, sloppy, cluttered, disorganized"
 
16
  },
17
  {
18
- "name": "ads-fashion editorial",
19
- "prompt": "fashion editorial style {prompt} . high fashion, trendy, stylish, editorial, magazine style, professional, highly detailed",
20
- "negative_prompt": "outdated, blurry, noisy, unattractive, sloppy"
 
21
  },
22
  {
23
- "name": "ads-food photography",
24
- "prompt": "food photography style {prompt} . appetizing, professional, culinary, high-resolution, commercial, highly detailed",
25
- "negative_prompt": "unappetizing, sloppy, unprofessional, noisy, blurry"
 
26
  },
27
  {
28
- "name": "ads-gourmet food photography",
29
- "prompt": "gourmet food photo of {prompt} . soft natural lighting, macro details, vibrant colors, fresh ingredients, glistening textures, bokeh background, styled plating, wooden tabletop, garnished, tantalizing, editorial quality",
30
- "negative_prompt": "cartoon, anime, sketch, grayscale, dull, overexposed, cluttered, messy plate, deformed"
 
31
  },
32
  {
33
- "name": "ads-luxury",
34
- "prompt": "luxury product style {prompt} . elegant, sophisticated, high-end, luxurious, professional, highly detailed",
35
- "negative_prompt": "cheap, noisy, blurry, unattractive, amateurish"
 
36
  },
37
  {
38
- "name": "ads-real estate",
39
- "prompt": "real estate photography style {prompt} . professional, inviting, well-lit, high-resolution, property-focused, commercial, highly detailed",
40
- "negative_prompt": "dark, blurry, unappealing, noisy, unprofessional"
 
41
  },
42
  {
43
- "name": "ads-retail",
44
- "prompt": "retail packaging style {prompt} . vibrant, enticing, commercial, product-focused, eye-catching, professional, highly detailed",
45
- "negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
 
46
  },
47
  {
48
- "name": "artstyle-abstract",
49
- "prompt": "abstract style {prompt} . non-representational, colors and shapes, expression of feelings, imaginative, highly detailed",
50
- "negative_prompt": "realistic, photographic, figurative, concrete"
 
51
  },
52
  {
53
- "name": "artstyle-abstract expressionism",
54
- "prompt": "abstract expressionist painting {prompt} . energetic brushwork, bold colors, abstract forms, expressive, emotional",
55
- "negative_prompt": "realistic, photorealistic, low contrast, plain, simple, monochrome"
 
56
  },
57
  {
58
- "name": "artstyle-art deco",
59
- "prompt": "art deco style {prompt} . geometric shapes, bold colors, luxurious, elegant, decorative, symmetrical, ornate, detailed",
60
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
 
61
  },
62
  {
63
- "name": "artstyle-art nouveau",
64
- "prompt": "art nouveau style {prompt} . elegant, decorative, curvilinear forms, nature-inspired, ornate, detailed",
65
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
 
66
  },
67
  {
68
- "name": "artstyle-constructivist",
69
- "prompt": "constructivist style {prompt} . geometric shapes, bold colors, dynamic composition, propaganda art style",
70
- "negative_prompt": "realistic, photorealistic, low contrast, plain, simple, abstract expressionism"
 
71
  },
72
  {
73
- "name": "artstyle-cubist",
74
- "prompt": "cubist artwork {prompt} . geometric shapes, abstract, innovative, revolutionary",
75
- "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
 
76
  },
77
  {
78
- "name": "artstyle-expressionist",
79
- "prompt": "expressionist {prompt} . raw, emotional, dynamic, distortion for emotional effect, vibrant, use of unusual colors, detailed",
80
- "negative_prompt": "realism, symmetry, quiet, calm, photo"
 
81
  },
82
  {
83
- "name": "artstyle-graffiti",
84
- "prompt": "graffiti style {prompt} . street art, vibrant, urban, detailed, tag, mural",
85
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
 
86
  },
87
  {
88
- "name": "artstyle-hyperrealism",
89
- "prompt": "hyperrealistic art {prompt} . extremely high-resolution details, photographic, realism pushed to extreme, fine texture, incredibly lifelike",
90
- "negative_prompt": "simplified, abstract, unrealistic, impressionistic, low resolution"
 
91
  },
92
  {
93
- "name": "artstyle-impressionist",
94
- "prompt": "impressionist painting {prompt} . loose brushwork, vibrant color, light and shadow play, captures feeling over form",
95
- "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
 
96
  },
97
  {
98
- "name": "artstyle-pointillism",
99
- "prompt": "pointillism style {prompt} . composed entirely of small, distinct dots of color, vibrant, highly detailed",
100
- "negative_prompt": "line drawing, smooth shading, large color fields, simplistic"
 
101
  },
102
  {
103
- "name": "artstyle-pop art",
104
- "prompt": "pop Art style {prompt} . bright colors, bold outlines, popular culture themes, ironic or kitsch",
105
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, minimalist"
 
106
  },
107
  {
108
- "name": "artstyle-psychedelic",
109
- "prompt": "psychedelic style {prompt} . vibrant colors, swirling patterns, abstract forms, surreal, trippy",
110
- "negative_prompt": "monochrome, black and white, low contrast, realistic, photorealistic, plain, simple"
 
111
  },
112
  {
113
- "name": "artstyle-renaissance",
114
- "prompt": "renaissance style {prompt} . realistic, perspective, light and shadow, religious or mythological themes, highly detailed",
115
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, modernist, minimalist, abstract"
 
116
  },
117
  {
118
- "name": "artstyle-steampunk",
119
- "prompt": "steampunk style {prompt} . antique, mechanical, brass and copper tones, gears, intricate, detailed",
120
- "negative_prompt": "deformed, glitch, noisy, low contrast, anime, photorealistic"
 
121
  },
122
  {
123
- "name": "artstyle-surrealist",
124
- "prompt": "surrealist art {prompt} . dreamlike, mysterious, provocative, symbolic, intricate, detailed",
125
- "negative_prompt": "anime, photorealistic, realistic, deformed, glitch, noisy, low contrast"
 
126
  },
127
  {
128
- "name": "artstyle-typography",
129
- "prompt": "typographic art {prompt} . stylized, intricate, detailed, artistic, text-based",
130
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
 
131
  },
132
  {
133
- "name": "artstyle-watercolor",
134
- "prompt": "watercolor painting {prompt} . vibrant, beautiful, painterly, detailed, textural, artistic",
135
- "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
 
136
  },
137
  {
138
- "name": "futuristic-biomechanical",
139
- "prompt": "biomechanical style {prompt} . blend of organic and mechanical elements, futuristic, cybernetic, detailed, intricate",
140
- "negative_prompt": "natural, rustic, primitive, organic, simplistic"
 
141
  },
142
  {
143
- "name": "futuristic-biomechanical cyberpunk",
144
- "prompt": "biomechanical cyberpunk {prompt} . cybernetics, human-machine fusion, dystopian, organic meets artificial, dark, intricate, highly detailed",
145
- "negative_prompt": "natural, colorful, deformed, sketch, low contrast, watercolor"
 
146
  },
147
  {
148
- "name": "futuristic-cybernetic",
149
- "prompt": "cybernetic style {prompt} . futuristic, technological, cybernetic enhancements, robotics, artificial intelligence themes",
150
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
 
151
  },
152
  {
153
- "name": "futuristic-cybernetic robot",
154
- "prompt": "cybernetic robot {prompt} . android, AI, machine, metal, wires, tech, futuristic, highly detailed",
155
- "negative_prompt": "organic, natural, human, sketch, watercolor, low contrast"
 
156
  },
157
  {
158
- "name": "futuristic-cyberpunk cityscape",
159
- "prompt": "cyberpunk cityscape {prompt} . neon lights, dark alleys, skyscrapers, futuristic, vibrant colors, high contrast, highly detailed",
160
- "negative_prompt": "natural, rural, deformed, low contrast, black and white, sketch, watercolor"
 
161
  },
162
  {
163
- "name": "futuristic-futuristic",
164
- "prompt": "futuristic style {prompt} . sleek, modern, ultramodern, high tech, detailed",
165
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vintage, antique"
 
166
  },
167
  {
168
- "name": "futuristic-retro cyberpunk",
169
- "prompt": "retro cyberpunk {prompt} . 80's inspired, synthwave, neon, vibrant, detailed, retro futurism",
170
- "negative_prompt": "modern, desaturated, black and white, realism, low contrast"
 
171
  },
172
  {
173
- "name": "futuristic-retro futurism",
174
- "prompt": "retro-futuristic {prompt} . vintage sci-fi, 50s and 60s style, atomic age, vibrant, highly detailed",
175
- "negative_prompt": "contemporary, realistic, rustic, primitive"
 
176
  },
177
  {
178
- "name": "futuristic-sci-fi",
179
- "prompt": "sci-fi style {prompt} . futuristic, technological, alien worlds, space themes, advanced civilizations",
180
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
 
181
  },
182
  {
183
- "name": "futuristic-vaporwave",
184
- "prompt": "vaporwave style {prompt} . retro aesthetic, cyberpunk, vibrant, neon colors, vintage 80s and 90s style, highly detailed",
185
- "negative_prompt": "monochrome, muted colors, realism, rustic, minimalist, dark"
 
186
  },
187
  {
188
- "name": "game-bubble bobble",
189
- "prompt": "Bubble Bobble style {prompt} . 8-bit, cute, pixelated, fantasy, vibrant, reminiscent of Bubble Bobble game",
190
- "negative_prompt": "realistic, modern, photorealistic, violent, horror"
 
191
  },
192
  {
193
- "name": "game-cyberpunk game",
194
- "prompt": "cyberpunk game style {prompt} . neon, dystopian, futuristic, digital, vibrant, detailed, high contrast, reminiscent of cyberpunk genre video games",
195
- "negative_prompt": "historical, natural, rustic, low detailed"
 
196
  },
197
  {
198
- "name": "game-fighting game",
199
- "prompt": "fighting game style {prompt} . dynamic, vibrant, action-packed, detailed character design, reminiscent of fighting video games",
200
- "negative_prompt": "peaceful, calm, minimalist, photorealistic"
 
201
  },
202
  {
203
- "name": "game-gta",
204
- "prompt": "GTA-style artwork {prompt} . satirical, exaggerated, pop art style, vibrant colors, iconic characters, action-packed",
205
- "negative_prompt": "realistic, black and white, low contrast, impressionist, cubist, noisy, blurry, deformed"
 
206
  },
207
  {
208
- "name": "game-mario",
209
- "prompt": "Super Mario style {prompt} . vibrant, cute, cartoony, fantasy, playful, reminiscent of Super Mario series",
210
- "negative_prompt": "realistic, modern, horror, dystopian, violent"
 
211
  },
212
  {
213
- "name": "game-minecraft",
214
- "prompt": "Minecraft style {prompt} . blocky, pixelated, vibrant colors, recognizable characters and objects, game assets",
215
- "negative_prompt": "smooth, realistic, detailed, photorealistic, noise, blurry, deformed"
 
216
  },
217
  {
218
- "name": "game-pokemon",
219
- "prompt": "Pokémon style {prompt} . vibrant, cute, anime, fantasy, reminiscent of Pokémon series",
220
- "negative_prompt": "realistic, modern, horror, dystopian, violent"
 
221
  },
222
  {
223
- "name": "game-retro arcade",
224
- "prompt": "retro arcade style {prompt} . 8-bit, pixelated, vibrant, classic video game, old school gaming, reminiscent of 80s and 90s arcade games",
225
- "negative_prompt": "modern, ultra-high resolution, photorealistic, 3D"
 
226
  },
227
  {
228
- "name": "game-retro game",
229
- "prompt": "retro game art {prompt} . 16-bit, vibrant colors, pixelated, nostalgic, charming, fun",
230
- "negative_prompt": "realistic, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
 
231
  },
232
  {
233
- "name": "game-rpg fantasy game",
234
- "prompt": "role-playing game (RPG) style fantasy {prompt} . detailed, vibrant, immersive, reminiscent of high fantasy RPG games",
235
- "negative_prompt": "sci-fi, modern, urban, futuristic, low detailed"
 
236
  },
237
  {
238
- "name": "game-strategy game",
239
- "prompt": "strategy game style {prompt} . overhead view, detailed map, units, reminiscent of real-time strategy video games",
240
- "negative_prompt": "first-person view, modern, photorealistic"
 
241
  },
242
  {
243
- "name": "game-streetfighter",
244
- "prompt": "Street Fighter style {prompt} . vibrant, dynamic, arcade, 2D fighting game, highly detailed, reminiscent of Street Fighter series",
245
- "negative_prompt": "3D, realistic, modern, photorealistic, turn-based strategy"
 
246
  },
247
  {
248
- "name": "game-zelda",
249
- "prompt": "Legend of Zelda style {prompt} . vibrant, fantasy, detailed, epic, heroic, reminiscent of The Legend of Zelda series",
250
- "negative_prompt": "sci-fi, modern, realistic, horror"
 
251
  },
252
  {
253
- "name": "misc-architectural",
254
- "prompt": "architectural style {prompt} . clean lines, geometric shapes, minimalist, modern, architectural drawing, highly detailed",
255
- "negative_prompt": "curved lines, ornate, baroque, abstract, grunge"
 
256
  },
257
  {
258
- "name": "misc-disco",
259
- "prompt": "disco-themed {prompt} . vibrant, groovy, retro 70s style, shiny disco balls, neon lights, dance floor, highly detailed",
260
- "negative_prompt": "minimalist, rustic, monochrome, contemporary, simplistic"
 
261
  },
262
  {
263
- "name": "misc-dreamscape",
264
- "prompt": "dreamscape {prompt} . surreal, ethereal, dreamy, mysterious, fantasy, highly detailed",
265
- "negative_prompt": "realistic, concrete, ordinary, mundane"
 
266
  },
267
  {
268
- "name": "misc-dystopian",
269
- "prompt": "dystopian style {prompt} . bleak, post-apocalyptic, somber, dramatic, highly detailed",
270
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, cheerful, optimistic, vibrant, colorful"
 
271
  },
272
  {
273
- "name": "misc-fairy tale",
274
- "prompt": "fairy tale {prompt} . magical, fantastical, enchanting, storybook style, highly detailed",
275
- "negative_prompt": "realistic, modern, ordinary, mundane"
 
276
  },
277
  {
278
- "name": "misc-gothic",
279
- "prompt": "gothic style {prompt} . dark, mysterious, haunting, dramatic, ornate, detailed",
280
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, cheerful, optimistic"
 
281
  },
282
  {
283
- "name": "misc-grunge",
284
- "prompt": "grunge style {prompt} . textured, distressed, vintage, edgy, punk rock vibe, dirty, noisy",
285
- "negative_prompt": "smooth, clean, minimalist, sleek, modern, photorealistic"
 
286
  },
287
  {
288
- "name": "misc-horror",
289
- "prompt": "horror-themed {prompt} . eerie, unsettling, dark, spooky, suspenseful, grim, highly detailed",
290
- "negative_prompt": "cheerful, bright, vibrant, light-hearted, cute"
 
291
  },
292
  {
293
- "name": "misc-kawaii",
294
- "prompt": "kawaii style {prompt} . cute, adorable, brightly colored, cheerful, anime influence, highly detailed",
295
- "negative_prompt": "dark, scary, realistic, monochrome, abstract"
 
296
  },
297
  {
298
- "name": "misc-lovecraftian",
299
- "prompt": "lovecraftian horror {prompt} . eldritch, cosmic horror, unknown, mysterious, surreal, highly detailed",
300
- "negative_prompt": "light-hearted, mundane, familiar, simplistic, realistic"
 
301
  },
302
  {
303
- "name": "misc-macabre",
304
- "prompt": "macabre style {prompt} . dark, gothic, grim, haunting, highly detailed",
305
- "negative_prompt": "bright, cheerful, light-hearted, cartoonish, cute"
 
306
  },
307
  {
308
- "name": "misc-manga",
309
- "prompt": "manga style {prompt} . vibrant, high-energy, detailed, iconic, Japanese comic style",
310
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style"
 
311
  },
312
  {
313
- "name": "misc-metropolis",
314
- "prompt": "metropolis-themed {prompt} . urban, cityscape, skyscrapers, modern, futuristic, highly detailed",
315
- "negative_prompt": "rural, natural, rustic, historical, simple"
 
316
  },
317
  {
318
- "name": "misc-minimalist",
319
- "prompt": "minimalist style {prompt} . simple, clean, uncluttered, modern, elegant",
320
- "negative_prompt": "ornate, complicated, highly detailed, cluttered, disordered, messy, noisy"
 
321
  },
322
  {
323
- "name": "misc-monochrome",
324
- "prompt": "monochrome {prompt} . black and white, contrast, tone, texture, detailed",
325
- "negative_prompt": "colorful, vibrant, noisy, blurry, deformed"
 
326
  },
327
  {
328
- "name": "misc-nautical",
329
- "prompt": "nautical-themed {prompt} . sea, ocean, ships, maritime, beach, marine life, highly detailed",
330
- "negative_prompt": "landlocked, desert, mountains, urban, rustic"
 
331
  },
332
  {
333
- "name": "misc-space",
334
- "prompt": "space-themed {prompt} . cosmic, celestial, stars, galaxies, nebulas, planets, science fiction, highly detailed",
335
- "negative_prompt": "earthly, mundane, ground-based, realism"
 
336
  },
337
  {
338
- "name": "misc-stained glass",
339
- "prompt": "stained glass style {prompt} . vibrant, beautiful, translucent, intricate, detailed",
340
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
 
341
  },
342
  {
343
- "name": "misc-techwear fashion",
344
- "prompt": "techwear fashion {prompt} . futuristic, cyberpunk, urban, tactical, sleek, dark, highly detailed",
345
- "negative_prompt": "vintage, rural, colorful, low contrast, realism, sketch, watercolor"
 
346
  },
347
  {
348
- "name": "misc-tribal",
349
- "prompt": "tribal style {prompt} . indigenous, ethnic, traditional patterns, bold, natural colors, highly detailed",
350
- "negative_prompt": "modern, futuristic, minimalist, pastel"
 
351
  },
352
  {
353
- "name": "misc-zentangle",
354
- "prompt": "zentangle {prompt} . intricate, abstract, monochrome, patterns, meditative, highly detailed",
355
- "negative_prompt": "colorful, representative, simplistic, large fields of color"
 
356
  },
357
  {
358
- "name": "papercraft-collage",
359
- "prompt": "collage style {prompt} . mixed media, layered, textural, detailed, artistic",
360
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
 
361
  },
362
  {
363
- "name": "papercraft-flat papercut",
364
- "prompt": "flat papercut style {prompt} . silhouette, clean cuts, paper, sharp edges, minimalist, color block",
365
- "negative_prompt": "3D, high detail, noise, grainy, blurry, painting, drawing, photo, disfigured"
 
366
  },
367
  {
368
- "name": "papercraft-kirigami",
369
- "prompt": "kirigami representation of {prompt} . 3D, paper folding, paper cutting, Japanese, intricate, symmetrical, precision, clean lines",
370
- "negative_prompt": "painting, drawing, 2D, noisy, blurry, deformed"
 
371
  },
372
  {
373
- "name": "papercraft-paper mache",
374
- "prompt": "paper mache representation of {prompt} . 3D, sculptural, textured, handmade, vibrant, fun",
375
- "negative_prompt": "2D, flat, photo, sketch, digital art, deformed, noisy, blurry"
 
376
  },
377
  {
378
- "name": "papercraft-paper quilling",
379
- "prompt": "paper quilling art of {prompt} . intricate, delicate, curling, rolling, shaping, coiling, loops, 3D, dimensional, ornamental",
380
- "negative_prompt": "photo, painting, drawing, 2D, flat, deformed, noisy, blurry"
 
381
  },
382
  {
383
- "name": "papercraft-papercut collage",
384
- "prompt": "papercut collage of {prompt} . mixed media, textured paper, overlapping, asymmetrical, abstract, vibrant",
385
- "negative_prompt": "photo, 3D, realistic, drawing, painting, high detail, disfigured"
 
386
  },
387
  {
388
- "name": "papercraft-papercut shadow box",
389
- "prompt": "3D papercut shadow box of {prompt} . layered, dimensional, depth, silhouette, shadow, papercut, handmade, high contrast",
390
- "negative_prompt": "painting, drawing, photo, 2D, flat, high detail, blurry, noisy, disfigured"
 
391
  },
392
  {
393
- "name": "papercraft-stacked papercut",
394
- "prompt": "stacked papercut art of {prompt} . 3D, layered, dimensional, depth, precision cut, stacked layers, papercut, high contrast",
395
- "negative_prompt": "2D, flat, noisy, blurry, painting, drawing, photo, deformed"
 
396
  },
397
  {
398
- "name": "papercraft-thick layered papercut",
399
- "prompt": "thick layered papercut art of {prompt} . deep 3D, volumetric, dimensional, depth, thick paper, high stack, heavy texture, tangible layers",
400
- "negative_prompt": "2D, flat, thin paper, low stack, smooth texture, painting, drawing, photo, deformed"
 
401
  },
402
  {
403
- "name": "photo-alien",
404
- "prompt": "alien-themed {prompt} . extraterrestrial, cosmic, otherworldly, mysterious, sci-fi, highly detailed",
405
- "negative_prompt": "earthly, mundane, common, realistic, simple"
 
406
  },
407
  {
408
- "name": "photo-film noir",
409
- "prompt": "film noir style {prompt} . monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic",
410
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vibrant, colorful"
 
411
  },
412
  {
413
- "name": "photo-glamour",
414
- "prompt": "glamorous photo {prompt} . high fashion, luxurious, extravagant, stylish, sensual, opulent, elegance, stunning beauty, professional, high contrast, detailed",
415
- "negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy, sketch, low contrast, dull, plain, modest"
 
416
  },
417
  {
418
- "name": "photo-hdr",
419
- "prompt": "HDR photo of {prompt} . High dynamic range, vivid, rich details, clear shadows and highlights, realistic, intense, enhanced contrast, highly detailed",
420
- "negative_prompt": "flat, low contrast, oversaturated, underexposed, overexposed, blurred, noisy"
 
421
  },
422
  {
423
- "name": "photo-iphone photographic",
424
- "prompt": "iphone photo {prompt} . large depth of field, deep depth of field, highly detailed",
425
- "negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, shallow depth of field, bokeh"
 
426
  },
427
  {
428
- "name": "photo-long exposure",
429
- "prompt": "long exposure photo of {prompt} . Blurred motion, streaks of light, surreal, dreamy, ghosting effect, highly detailed",
430
- "negative_prompt": "static, noisy, deformed, shaky, abrupt, flat, low contrast"
 
431
  },
432
  {
433
- "name": "photo-neon noir",
434
- "prompt": "neon noir {prompt} . cyberpunk, dark, rainy streets, neon signs, high contrast, low light, vibrant, highly detailed",
435
- "negative_prompt": "bright, sunny, daytime, low contrast, black and white, sketch, watercolor"
 
436
  },
437
  {
438
- "name": "photo-silhouette",
439
- "prompt": "silhouette style {prompt} . high contrast, minimalistic, black and white, stark, dramatic",
440
- "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, color, realism, photorealistic"
 
441
  },
442
  {
443
- "name": "photo-tilt-shift",
444
- "prompt": "tilt-shift photo of {prompt} . selective focus, miniature effect, blurred background, highly detailed, vibrant, perspective control",
445
- "negative_prompt": "blurry, noisy, deformed, flat, low contrast, unrealistic, oversaturated, underexposed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  }
447
  ]
 
1
  [
2
  {
3
+ "id": "ads-automotive",
4
+ "name": "Ads: Automotive",
5
+ "prompt": "automotive advertisement style {prompt} . sleek, dynamic, professional, commercial, vehicle-focused, high-resolution, highly detailed",
6
+ "negative_prompt": "noisy, blurry, unattractive, sloppy, unprofessional"
7
  },
8
  {
9
+ "id": "ads-corporate",
10
+ "name": "Ads: Corporate",
11
+ "prompt": "corporate branding style {prompt} . professional, clean, modern, sleek, minimalist, business-oriented, highly detailed",
12
+ "negative_prompt": "noisy, blurry, grungy, sloppy, cluttered, disorganized"
13
  },
14
  {
15
+ "id": "ads-fashion-editorial",
16
+ "name": "Ads: Fashion Editorial",
17
+ "prompt": "fashion editorial style {prompt} . high fashion, trendy, stylish, editorial, magazine style, professional, highly detailed",
18
+ "negative_prompt": "outdated, blurry, noisy, unattractive, sloppy"
19
  },
20
  {
21
+ "id": "ads-food-photography",
22
+ "name": "Ads: Food Photography",
23
+ "prompt": "food photography style {prompt} . appetizing, professional, culinary, high-resolution, commercial, highly detailed",
24
+ "negative_prompt": "unappetizing, sloppy, unprofessional, noisy, blurry"
25
  },
26
  {
27
+ "id": "ads-gourmet-food-photography",
28
+ "name": "Ads: Gourmet Food Photography",
29
+ "prompt": "gourmet food photo of {prompt} . soft natural lighting, macro details, vibrant colors, fresh ingredients, glistening textures, bokeh background, styled plating, wooden tabletop, garnished, tantalizing, editorial quality",
30
+ "negative_prompt": "cartoon, anime, sketch, grayscale, dull, overexposed, cluttered, messy plate, deformed"
31
  },
32
  {
33
+ "id": "ads-luxury",
34
+ "name": "Ads: Luxury",
35
+ "prompt": "luxury product style {prompt} . elegant, sophisticated, high-end, luxurious, professional, highly detailed",
36
+ "negative_prompt": "cheap, noisy, blurry, unattractive, amateurish"
37
  },
38
  {
39
+ "id": "ads-poster",
40
+ "name": "Ads: Poster",
41
+ "prompt": "advertising poster style {prompt} . Professional, modern, product-focused, commercial, eye-catching, highly detailed",
42
+ "negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
43
  },
44
  {
45
+ "id": "ads-real-estate",
46
+ "name": "Ads: Real Estate",
47
+ "prompt": "real estate photography style {prompt} . professional, inviting, well-lit, high-resolution, property-focused, commercial, highly detailed",
48
+ "negative_prompt": "dark, blurry, unappealing, noisy, unprofessional"
49
  },
50
  {
51
+ "id": "ads-retail",
52
+ "name": "Ads: Retail",
53
+ "prompt": "retail packaging style {prompt} . vibrant, enticing, commercial, product-focused, eye-catching, professional, highly detailed",
54
+ "negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive"
55
  },
56
  {
57
+ "id": "art-abstract",
58
+ "name": "Art: Abstract",
59
+ "prompt": "abstract style {prompt} . non-representational, colors and shapes, expression of feelings, imaginative, highly detailed",
60
+ "negative_prompt": "realistic, photographic, figurative, concrete"
61
  },
62
  {
63
+ "id": "art-abstract-expressionism",
64
+ "name": "Art: Abstract Expressionism",
65
+ "prompt": "abstract expressionist painting {prompt} . energetic brushwork, bold colors, abstract forms, expressive, emotional",
66
+ "negative_prompt": "realistic, photorealistic, low contrast, plain, simple, monochrome"
67
  },
68
  {
69
+ "id": "art-art-deco",
70
+ "name": "Art: Art Deco",
71
+ "prompt": "art deco style {prompt} . geometric shapes, bold colors, luxurious, elegant, decorative, symmetrical, ornate, detailed",
72
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
73
  },
74
  {
75
+ "id": "art-art-nouveau",
76
+ "name": "Art: Art Nouveau",
77
+ "prompt": "art nouveau style {prompt} . elegant, decorative, curvilinear forms, nature-inspired, ornate, detailed",
78
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"
79
  },
80
  {
81
+ "id": "art-constructivist",
82
+ "name": "Art: Constructivist",
83
+ "prompt": "constructivist style {prompt} . geometric shapes, bold colors, dynamic composition, propaganda art style",
84
+ "negative_prompt": "realistic, photorealistic, low contrast, plain, simple, abstract expressionism"
85
  },
86
  {
87
+ "id": "art-cubist",
88
+ "name": "Art: Cubist",
89
+ "prompt": "cubist artwork {prompt} . geometric shapes, abstract, innovative, revolutionary",
90
+ "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
91
  },
92
  {
93
+ "id": "art-expressionist",
94
+ "name": "Art: Expressionist",
95
+ "prompt": "expressionist {prompt} . raw, emotional, dynamic, distortion for emotional effect, vibrant, use of unusual colors, detailed",
96
+ "negative_prompt": "realism, symmetry, quiet, calm, photo"
97
  },
98
  {
99
+ "id": "art-graffiti",
100
+ "name": "Art: Graffiti",
101
+ "prompt": "graffiti style {prompt} . street art, vibrant, urban, detailed, tag, mural",
102
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
103
  },
104
  {
105
+ "id": "art-hyperrealism",
106
+ "name": "Art: Hyperrealism",
107
+ "prompt": "hyperrealistic art {prompt} . extremely high-resolution details, photographic, realism pushed to extreme, fine texture, incredibly lifelike",
108
+ "negative_prompt": "simplified, abstract, unrealistic, impressionistic, low resolution"
109
  },
110
  {
111
+ "id": "art-impressionist",
112
+ "name": "Art: Impressionist",
113
+ "prompt": "impressionist painting {prompt} . loose brushwork, vibrant color, light and shadow play, captures feeling over form",
114
+ "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
115
  },
116
  {
117
+ "id": "art-pointillism",
118
+ "name": "Art: Pointillism",
119
+ "prompt": "pointillism style {prompt} . composed entirely of small, distinct dots of color, vibrant, highly detailed",
120
+ "negative_prompt": "line drawing, smooth shading, large color fields, simplistic"
121
  },
122
  {
123
+ "id": "art-pop-art",
124
+ "name": "Art: Pop Art",
125
+ "prompt": "pop Art style {prompt} . bright colors, bold outlines, popular culture themes, ironic or kitsch",
126
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, minimalist"
127
  },
128
  {
129
+ "id": "art-psychedelic",
130
+ "name": "Art: Psychedelic",
131
+ "prompt": "psychedelic style {prompt} . vibrant colors, swirling patterns, abstract forms, surreal, trippy",
132
+ "negative_prompt": "monochrome, black and white, low contrast, realistic, photorealistic, plain, simple"
133
  },
134
  {
135
+ "id": "art-renaissance",
136
+ "name": "Art: Renaissance",
137
+ "prompt": "renaissance style {prompt} . realistic, perspective, light and shadow, religious or mythological themes, highly detailed",
138
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, modernist, minimalist, abstract"
139
  },
140
  {
141
+ "id": "art-steampunk",
142
+ "name": "Art: Steampunk",
143
+ "prompt": "steampunk style {prompt} . antique, mechanical, brass and copper tones, gears, intricate, detailed",
144
+ "negative_prompt": "deformed, glitch, noisy, low contrast, anime, photorealistic"
145
  },
146
  {
147
+ "id": "art-surrealist",
148
+ "name": "Art: Surrealist",
149
+ "prompt": "surrealist art {prompt} . dreamlike, mysterious, provocative, symbolic, intricate, detailed",
150
+ "negative_prompt": "anime, photorealistic, realistic, deformed, glitch, noisy, low contrast"
151
  },
152
  {
153
+ "id": "art-typography",
154
+ "name": "Art: Typography",
155
+ "prompt": "typographic art {prompt} . stylized, intricate, detailed, artistic, text-based",
156
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
157
  },
158
  {
159
+ "id": "art-watercolor",
160
+ "name": "Art: Watercolor",
161
+ "prompt": "watercolor painting {prompt} . vibrant, beautiful, painterly, detailed, textural, artistic",
162
+ "negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
163
  },
164
  {
165
+ "id": "futuristic-biomechanical",
166
+ "name": "Futuristic: Biomechanical",
167
+ "prompt": "biomechanical style {prompt} . blend of organic and mechanical elements, futuristic, cybernetic, detailed, intricate",
168
+ "negative_prompt": "natural, rustic, primitive, organic, simplistic"
169
  },
170
  {
171
+ "id": "futuristic-biomechanical-cyberpunk",
172
+ "name": "Futuristic: Biomechanical Cyberpunk",
173
+ "prompt": "biomechanical cyberpunk {prompt} . cybernetics, human-machine fusion, dystopian, organic meets artificial, dark, intricate, highly detailed",
174
+ "negative_prompt": "natural, colorful, deformed, sketch, low contrast, watercolor"
175
  },
176
  {
177
+ "id": "futuristic-cybernetic",
178
+ "name": "Futuristic: Cybernetic",
179
+ "prompt": "cybernetic style {prompt} . futuristic, technological, cybernetic enhancements, robotics, artificial intelligence themes",
180
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
181
  },
182
  {
183
+ "id": "futuristic-cybernetic-robot",
184
+ "name": "Futuristic: Cybernetic Robot",
185
+ "prompt": "cybernetic robot {prompt} . android, AI, machine, metal, wires, tech, futuristic, highly detailed",
186
+ "negative_prompt": "organic, natural, human, sketch, watercolor, low contrast"
187
  },
188
  {
189
+ "id": "futuristic-cyberpunk-cityscape",
190
+ "name": "Futuristic: Cyberpunk Cityscape",
191
+ "prompt": "cyberpunk cityscape {prompt} . neon lights, dark alleys, skyscrapers, futuristic, vibrant colors, high contrast, highly detailed",
192
+ "negative_prompt": "natural, rural, deformed, low contrast, black and white, sketch, watercolor"
193
  },
194
  {
195
+ "id": "futuristic-general",
196
+ "name": "Futuristic: General",
197
+ "prompt": "futuristic style {prompt} . sleek, modern, ultramodern, high tech, detailed",
198
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vintage, antique"
199
  },
200
  {
201
+ "id": "futuristic-retro-cyberpunk",
202
+ "name": "Futuristic: Retro Cyberpunk",
203
+ "prompt": "retro cyberpunk {prompt} . 80's inspired, synthwave, neon, vibrant, detailed, retro futurism",
204
+ "negative_prompt": "modern, desaturated, black and white, realism, low contrast"
205
  },
206
  {
207
+ "id": "futuristic-retro-futurism",
208
+ "name": "Futuristic: Retro Futurism",
209
+ "prompt": "retro-futuristic {prompt} . vintage sci-fi, 50s and 60s style, atomic age, vibrant, highly detailed",
210
+ "negative_prompt": "contemporary, realistic, rustic, primitive"
211
  },
212
  {
213
+ "id": "futuristic-sci-fi",
214
+ "name": "Futuristic: Sci-Fi",
215
+ "prompt": "sci-fi style {prompt} . futuristic, technological, alien worlds, space themes, advanced civilizations",
216
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"
217
  },
218
  {
219
+ "id": "futuristic-vaporwave",
220
+ "name": "Futuristic: Vaporwave",
221
+ "prompt": "vaporwave style {prompt} . retro aesthetic, cyberpunk, vibrant, neon colors, vintage 80s and 90s style, highly detailed",
222
+ "negative_prompt": "monochrome, muted colors, realism, rustic, minimalist, dark"
223
  },
224
  {
225
+ "id": "game-bubble-bobble",
226
+ "name": "Game: Bubble Bobble",
227
+ "prompt": "Bubble Bobble style {prompt} . 8-bit, cute, pixelated, fantasy, vibrant, reminiscent of Bubble Bobble game",
228
+ "negative_prompt": "realistic, modern, photorealistic, violent, horror"
229
  },
230
  {
231
+ "id": "game-cyberpunk",
232
+ "name": "Game: Cyberpunk",
233
+ "prompt": "cyberpunk game style {prompt} . neon, dystopian, futuristic, digital, vibrant, detailed, high contrast, reminiscent of cyberpunk genre video games",
234
+ "negative_prompt": "historical, natural, rustic, low detailed"
235
  },
236
  {
237
+ "id": "game-fighting",
238
+ "name": "Game: Fighting",
239
+ "prompt": "fighting game style {prompt} . dynamic, vibrant, action-packed, detailed character design, reminiscent of fighting video games",
240
+ "negative_prompt": "peaceful, calm, minimalist, photorealistic"
241
  },
242
  {
243
+ "id": "game-gta",
244
+ "name": "Game: GTA",
245
+ "prompt": "GTA-style artwork {prompt} . satirical, exaggerated, pop art style, vibrant colors, iconic characters, action-packed",
246
+ "negative_prompt": "realistic, black and white, low contrast, impressionist, cubist, noisy, blurry, deformed"
247
  },
248
  {
249
+ "id": "game-mario",
250
+ "name": "Game: Mario",
251
+ "prompt": "Super Mario style {prompt} . vibrant, cute, cartoony, fantasy, playful, reminiscent of Super Mario series",
252
+ "negative_prompt": "realistic, modern, horror, dystopian, violent"
253
  },
254
  {
255
+ "id": "game-minecraft",
256
+ "name": "Game: Minecraft",
257
+ "prompt": "Minecraft style {prompt} . blocky, pixelated, vibrant colors, recognizable characters and objects, game assets",
258
+ "negative_prompt": "smooth, realistic, detailed, photorealistic, noise, blurry, deformed"
259
  },
260
  {
261
+ "id": "game-pokemon",
262
+ "name": "Game: Pokémon",
263
+ "prompt": "Pokémon style {prompt} . vibrant, cute, anime, fantasy, reminiscent of Pokémon series",
264
+ "negative_prompt": "realistic, modern, horror, dystopian, violent"
265
  },
266
  {
267
+ "id": "game-retro",
268
+ "name": "Game: Retro",
269
+ "prompt": "retro game art {prompt} . 16-bit, vibrant colors, pixelated, nostalgic, charming, fun",
270
+ "negative_prompt": "realistic, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"
271
  },
272
  {
273
+ "id": "game-retro-arcade",
274
+ "name": "Game: Retro Arcade",
275
+ "prompt": "retro arcade style {prompt} . 8-bit, pixelated, vibrant, classic video game, old school gaming, reminiscent of 80s and 90s arcade games",
276
+ "negative_prompt": "modern, ultra-high resolution, photorealistic, 3D"
277
  },
278
  {
279
+ "id": "game-rpg-fantasy",
280
+ "name": "Game: RPG Fantasy",
281
+ "prompt": "role-playing game (RPG) style fantasy {prompt} . detailed, vibrant, immersive, reminiscent of high fantasy RPG games",
282
+ "negative_prompt": "sci-fi, modern, urban, futuristic, low detailed"
283
  },
284
  {
285
+ "id": "game-strategy",
286
+ "name": "Game: Strategy",
287
+ "prompt": "strategy game style {prompt} . overhead view, detailed map, units, reminiscent of real-time strategy video games",
288
+ "negative_prompt": "first-person view, modern, photorealistic"
289
  },
290
  {
291
+ "id": "game-street-fighter",
292
+ "name": "Game: Street Fighter",
293
+ "prompt": "Street Fighter style {prompt} . vibrant, dynamic, arcade, 2D fighting game, highly detailed, reminiscent of Street Fighter series",
294
+ "negative_prompt": "3D, realistic, modern, photorealistic, turn-based strategy"
295
  },
296
  {
297
+ "id": "game-zelda",
298
+ "name": "Game: Zelda",
299
+ "prompt": "Legend of Zelda style {prompt} . vibrant, fantasy, detailed, epic, heroic, reminiscent of The Legend of Zelda series",
300
+ "negative_prompt": "sci-fi, modern, realistic, horror"
301
  },
302
  {
303
+ "id": "misc-architectural",
304
+ "name": "Misc: Architectural",
305
+ "prompt": "architectural style {prompt} . clean lines, geometric shapes, minimalist, modern, architectural drawing, highly detailed",
306
+ "negative_prompt": "curved lines, ornate, baroque, abstract, grunge"
307
  },
308
  {
309
+ "id": "misc-disco",
310
+ "name": "Misc: Disco",
311
+ "prompt": "disco-themed {prompt} . vibrant, groovy, retro 70s style, shiny disco balls, neon lights, dance floor, highly detailed",
312
+ "negative_prompt": "minimalist, rustic, monochrome, contemporary, simplistic"
313
  },
314
  {
315
+ "id": "misc-dreamscape",
316
+ "name": "Misc: Dreamscape",
317
+ "prompt": "dreamscape {prompt} . surreal, ethereal, dreamy, mysterious, fantasy, highly detailed",
318
+ "negative_prompt": "realistic, concrete, ordinary, mundane"
319
  },
320
  {
321
+ "id": "misc-dystopian",
322
+ "name": "Misc: Dystopian",
323
+ "prompt": "dystopian style {prompt} . bleak, post-apocalyptic, somber, dramatic, highly detailed",
324
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, cheerful, optimistic, vibrant, colorful"
325
  },
326
  {
327
+ "id": "misc-fairy-tale",
328
+ "name": "Misc: Fairy Tale",
329
+ "prompt": "fairy tale {prompt} . magical, fantastical, enchanting, storybook style, highly detailed",
330
+ "negative_prompt": "realistic, modern, ordinary, mundane"
331
  },
332
  {
333
+ "id": "misc-gothic",
334
+ "name": "Misc: Gothic",
335
+ "prompt": "gothic style {prompt} . dark, mysterious, haunting, dramatic, ornate, detailed",
336
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, cheerful, optimistic"
337
  },
338
  {
339
+ "id": "misc-grunge",
340
+ "name": "Misc: Grunge",
341
+ "prompt": "grunge style {prompt} . textured, distressed, vintage, edgy, punk rock vibe, dirty, noisy",
342
+ "negative_prompt": "smooth, clean, minimalist, sleek, modern, photorealistic"
343
  },
344
  {
345
+ "id": "misc-horror",
346
+ "name": "Misc: Horror",
347
+ "prompt": "horror-themed {prompt} . eerie, unsettling, dark, spooky, suspenseful, grim, highly detailed",
348
+ "negative_prompt": "cheerful, bright, vibrant, light-hearted, cute"
349
  },
350
  {
351
+ "id": "misc-kawaii",
352
+ "name": "Misc: Kawaii",
353
+ "prompt": "kawaii style {prompt} . cute, adorable, brightly colored, cheerful, anime influence, highly detailed",
354
+ "negative_prompt": "dark, scary, realistic, monochrome, abstract"
355
  },
356
  {
357
+ "id": "misc-lovecraftian",
358
+ "name": "Misc: Lovecraftian",
359
+ "prompt": "lovecraftian horror {prompt} . eldritch, cosmic horror, unknown, mysterious, surreal, highly detailed",
360
+ "negative_prompt": "light-hearted, mundane, familiar, simplistic, realistic"
361
  },
362
  {
363
+ "id": "misc-macabre",
364
+ "name": "Misc: Macabre",
365
+ "prompt": "macabre style {prompt} . dark, gothic, grim, haunting, highly detailed",
366
+ "negative_prompt": "bright, cheerful, light-hearted, cartoonish, cute"
367
  },
368
  {
369
+ "id": "misc-manga",
370
+ "name": "Misc: Manga",
371
+ "prompt": "manga style {prompt} . vibrant, high-energy, detailed, iconic, Japanese comic style",
372
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style"
373
  },
374
  {
375
+ "id": "misc-metropolis",
376
+ "name": "Misc: Metropolis",
377
+ "prompt": "metropolis-themed {prompt} . urban, cityscape, skyscrapers, modern, futuristic, highly detailed",
378
+ "negative_prompt": "rural, natural, rustic, historical, simple"
379
  },
380
  {
381
+ "id": "misc-minimalist",
382
+ "name": "Misc: Minimalist",
383
+ "prompt": "minimalist style {prompt} . simple, clean, uncluttered, modern, elegant",
384
+ "negative_prompt": "ornate, complicated, highly detailed, cluttered, disordered, messy, noisy"
385
  },
386
  {
387
+ "id": "misc-monochrome",
388
+ "name": "Misc: Monochrome",
389
+ "prompt": "monochrome {prompt} . black and white, contrast, tone, texture, detailed",
390
+ "negative_prompt": "colorful, vibrant, noisy, blurry, deformed"
391
  },
392
  {
393
+ "id": "misc-nautical",
394
+ "name": "Misc: Nautical",
395
+ "prompt": "nautical-themed {prompt} . sea, ocean, ships, maritime, beach, marine life, highly detailed",
396
+ "negative_prompt": "landlocked, desert, mountains, urban, rustic"
397
  },
398
  {
399
+ "id": "misc-space",
400
+ "name": "Misc: Space",
401
+ "prompt": "space-themed {prompt} . cosmic, celestial, stars, galaxies, nebulas, planets, science fiction, highly detailed",
402
+ "negative_prompt": "earthly, mundane, ground-based, realism"
403
  },
404
  {
405
+ "id": "misc-stained-glass",
406
+ "name": "Misc: Stained Glass",
407
+ "prompt": "stained glass style {prompt} . vibrant, beautiful, translucent, intricate, detailed",
408
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
409
  },
410
  {
411
+ "id": "misc-techwear-fashion",
412
+ "name": "Misc: Techwear Fashion",
413
+ "prompt": "techwear fashion {prompt} . futuristic, cyberpunk, urban, tactical, sleek, dark, highly detailed",
414
+ "negative_prompt": "vintage, rural, colorful, low contrast, realism, sketch, watercolor"
415
  },
416
  {
417
+ "id": "misc-tribal",
418
+ "name": "Misc: Tribal",
419
+ "prompt": "tribal style {prompt} . indigenous, ethnic, traditional patterns, bold, natural colors, highly detailed",
420
+ "negative_prompt": "modern, futuristic, minimalist, pastel"
421
  },
422
  {
423
+ "id": "misc-zentangle",
424
+ "name": "Misc: Zentangle",
425
+ "prompt": "zentangle {prompt} . intricate, abstract, monochrome, patterns, meditative, highly detailed",
426
+ "negative_prompt": "colorful, representative, simplistic, large fields of color"
427
  },
428
  {
429
+ "id": "papercraft-collage",
430
+ "name": "Papercraft: Collage",
431
+ "prompt": "collage style {prompt} . mixed media, layered, textural, detailed, artistic",
432
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"
433
  },
434
  {
435
+ "id": "papercraft-flat-papercut",
436
+ "name": "Papercraft: Flat Papercut",
437
+ "prompt": "flat papercut style {prompt} . silhouette, clean cuts, paper, sharp edges, minimalist, color block",
438
+ "negative_prompt": "3D, high detail, noise, grainy, blurry, painting, drawing, photo, disfigured"
439
  },
440
  {
441
+ "id": "papercraft-kirigami",
442
+ "name": "Papercraft: Kirigami",
443
+ "prompt": "kirigami representation of {prompt} . 3D, paper folding, paper cutting, Japanese, intricate, symmetrical, precision, clean lines",
444
+ "negative_prompt": "painting, drawing, 2D, noisy, blurry, deformed"
445
  },
446
  {
447
+ "id": "papercraft-paper-mache",
448
+ "name": "Papercraft: Paper Mache",
449
+ "prompt": "paper mache representation of {prompt} . 3D, sculptural, textured, handmade, vibrant, fun",
450
+ "negative_prompt": "2D, flat, photo, sketch, digital art, deformed, noisy, blurry"
451
  },
452
  {
453
+ "id": "papercraft-paper-quilling",
454
+ "name": "Papercraft: Paper Quilling",
455
+ "prompt": "paper quilling art of {prompt} . intricate, delicate, curling, rolling, shaping, coiling, loops, 3D, dimensional, ornamental",
456
+ "negative_prompt": "photo, painting, drawing, 2D, flat, deformed, noisy, blurry"
457
  },
458
  {
459
+ "id": "papercraft-papercut-collage",
460
+ "name": "Papercraft: Papercut Collage",
461
+ "prompt": "papercut collage of {prompt} . mixed media, textured paper, overlapping, asymmetrical, abstract, vibrant",
462
+ "negative_prompt": "photo, 3D, realistic, drawing, painting, high detail, disfigured"
463
  },
464
  {
465
+ "id": "papercraft-papercut-shadow-box",
466
+ "name": "Papercraft: Papercut Shadow Box",
467
+ "prompt": "3D papercut shadow box of {prompt} . layered, dimensional, depth, silhouette, shadow, papercut, handmade, high contrast",
468
+ "negative_prompt": "painting, drawing, photo, 2D, flat, high detail, blurry, noisy, disfigured"
469
  },
470
  {
471
+ "id": "papercraft-stacked-papercut",
472
+ "name": "Papercraft: Stacked Papercut",
473
+ "prompt": "stacked papercut art of {prompt} . 3D, layered, dimensional, depth, precision cut, stacked layers, papercut, high contrast",
474
+ "negative_prompt": "2D, flat, noisy, blurry, painting, drawing, photo, deformed"
475
  },
476
  {
477
+ "id": "papercraft-thick-layered-papercut",
478
+ "name": "Papercraft: Thick Layered Papercut",
479
+ "prompt": "thick layered papercut art of {prompt} . deep 3D, volumetric, dimensional, depth, thick paper, high stack, heavy texture, tangible layers",
480
+ "negative_prompt": "2D, flat, thin paper, low stack, smooth texture, painting, drawing, photo, deformed"
481
  },
482
  {
483
+ "id": "photo-alien",
484
+ "name": "Photo: Alien",
485
+ "prompt": "alien-themed {prompt} . extraterrestrial, cosmic, otherworldly, mysterious, sci-fi, highly detailed",
486
+ "negative_prompt": "earthly, mundane, common, realistic, simple"
487
  },
488
  {
489
+ "id": "photo-film-noir",
490
+ "name": "Photo: Film Noir",
491
+ "prompt": "film noir style {prompt} . monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic",
492
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vibrant, colorful"
493
  },
494
  {
495
+ "id": "photo-glamour",
496
+ "name": "Photo: Glamour",
497
+ "prompt": "glamorous photo {prompt} . high fashion, luxurious, extravagant, stylish, sensual, opulent, elegance, stunning beauty, professional, high contrast, detailed",
498
+ "negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy, sketch, low contrast, dull, plain, modest"
499
  },
500
  {
501
+ "id": "photo-hdr",
502
+ "name": "Photo: HDR",
503
+ "prompt": "HDR photo of {prompt} . High dynamic range, vivid, rich details, clear shadows and highlights, realistic, intense, enhanced contrast, highly detailed",
504
+ "negative_prompt": "flat, low contrast, oversaturated, underexposed, overexposed, blurred, noisy"
505
  },
506
  {
507
+ "id": "photo-iphone-photographic",
508
+ "name": "Photo: iPhone Photographic",
509
+ "prompt": "iphone photo {prompt} . large depth of field, deep depth of field, highly detailed",
510
+ "negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, shallow depth of field, bokeh"
511
  },
512
  {
513
+ "id": "photo-long-exposure",
514
+ "name": "Photo: Long Exposure",
515
+ "prompt": "long exposure photo of {prompt} . Blurred motion, streaks of light, surreal, dreamy, ghosting effect, highly detailed",
516
+ "negative_prompt": "static, noisy, deformed, shaky, abrupt, flat, low contrast"
517
  },
518
  {
519
+ "id": "photo-neon-noir",
520
+ "name": "Photo: Neon Noir",
521
+ "prompt": "neon noir {prompt} . cyberpunk, dark, rainy streets, neon signs, high contrast, low light, vibrant, highly detailed",
522
+ "negative_prompt": "bright, sunny, daytime, low contrast, black and white, sketch, watercolor"
523
  },
524
  {
525
+ "id": "photo-silhouette",
526
+ "name": "Photo: Silhouette",
527
+ "prompt": "silhouette style {prompt} . high contrast, minimalistic, black and white, stark, dramatic",
528
+ "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, color, realism, photorealistic"
529
  },
530
  {
531
+ "id": "photo-tilt-shift",
532
+ "name": "Photo: Tilt-Shift",
533
+ "prompt": "tilt-shift photo of {prompt} . selective focus, miniature effect, blurred background, highly detailed, vibrant, perspective control",
534
+ "negative_prompt": "blurry, noisy, deformed, flat, low contrast, unrealistic, oversaturated, underexposed"
535
+ },
536
+ {
537
+ "id": "sai-3d-model",
538
+ "name": "SAI: 3D Model",
539
+ "prompt": "professional 3d model {prompt} . octane render, highly detailed, volumetric, dramatic lighting",
540
+ "negative_prompt": "ugly, deformed, noisy, low poly, blurry, painting"
541
+ },
542
+ {
543
+ "id": "sai-analog-film",
544
+ "name": "SAI: Analog Film",
545
+ "prompt": "analog film photo {prompt} . faded film, desaturated, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage",
546
+ "negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"
547
+ },
548
+ {
549
+ "id": "sai-anime",
550
+ "name": "SAI: Anime",
551
+ "prompt": "anime artwork {prompt} . anime style, key visual, vibrant, studio anime, highly detailed",
552
+ "negative_prompt": "photo, deformed, black and white, realism, disfigured, low contrast"
553
+ },
554
+ {
555
+ "id": "sai-cinematic",
556
+ "name": "SAI: Cinematic",
557
+ "prompt": "cinematic film still {prompt} . shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
558
+ "negative_prompt": "anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured"
559
+ },
560
+ {
561
+ "id": "sai-comic-book",
562
+ "name": "SAI: Comic Book",
563
+ "prompt": "comic {prompt} . graphic illustration, comic art, graphic novel art, vibrant, highly detailed",
564
+ "negative_prompt": "photograph, deformed, glitch, noisy, realistic, stock photo"
565
+ },
566
+ {
567
+ "id": "sai-craft-clay",
568
+ "name": "SAI: Craft Clay",
569
+ "prompt": "play-doh style {prompt} . sculpture, clay art, centered composition, Claymation",
570
+ "negative_prompt": "sloppy, messy, grainy, highly detailed, ultra textured, photo"
571
+ },
572
+ {
573
+ "id": "sai-digital-art",
574
+ "name": "SAI: Digital Art",
575
+ "prompt": "concept art {prompt} . digital artwork, illustrative, painterly, matte painting, highly detailed",
576
+ "negative_prompt": "photo, photorealistic, realism, ugly"
577
+ },
578
+ {
579
+ "id": "sai-enhance",
580
+ "name": "SAI: Enhance",
581
+ "prompt": "breathtaking {prompt} . award-winning, professional, highly detailed",
582
+ "negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy"
583
+ },
584
+ {
585
+ "id": "sai-fantasy-art",
586
+ "name": "SAI: Fantasy Art",
587
+ "prompt": "ethereal fantasy concept art of {prompt} . magnificent, celestial, ethereal, painterly, epic, majestic, magical, fantasy art, cover art, dreamy",
588
+ "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"
589
+ },
590
+ {
591
+ "id": "sai-isometric",
592
+ "name": "SAI: Isometric",
593
+ "prompt": "isometric style {prompt} . vibrant, beautiful, crisp, detailed, ultra detailed, intricate",
594
+ "negative_prompt": "deformed, mutated, ugly, disfigured, blur, blurry, noise, noisy, realistic, photographic"
595
+ },
596
+ {
597
+ "id": "sai-line-art",
598
+ "name": "SAI: Line Art",
599
+ "prompt": "line art drawing {prompt} . professional, sleek, modern, minimalist, graphic, line art, vector graphics",
600
+ "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"
601
+ },
602
+ {
603
+ "id": "sai-lowpoly",
604
+ "name": "SAI: Lowpoly",
605
+ "prompt": "low-poly style {prompt} . low-poly game art, polygon mesh, jagged, blocky, wireframe edges, centered composition",
606
+ "negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"
607
+ },
608
+ {
609
+ "id": "sai-neonpunk",
610
+ "name": "SAI: Neonpunk",
611
+ "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",
612
+ "negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"
613
+ },
614
+ {
615
+ "id": "sai-origami",
616
+ "name": "SAI: Origami",
617
+ "prompt": "origami style {prompt} . paper art, pleated paper, folded, origami art, pleats, cut and fold, centered composition",
618
+ "negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"
619
+ },
620
+ {
621
+ "id": "sai-photographic",
622
+ "name": "SAI: Photographic",
623
+ "prompt": "cinematic photo {prompt} . 35mm photograph, film, bokeh, professional, 4k, highly detailed",
624
+ "negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly"
625
+ },
626
+ {
627
+ "id": "sai-pixel-art",
628
+ "name": "SAI: Pixel Art",
629
+ "prompt": "pixel-art {prompt} . low-res, blocky, pixel art style, 8-bit graphics",
630
+ "negative_prompt": "sloppy, messy, blurry, noisy, highly detailed, ultra textured, photo, realistic"
631
+ },
632
+ {
633
+ "id": "sai-texture",
634
+ "name": "SAI: Texture",
635
+ "prompt": "texture {prompt} top down close-up",
636
+ "negative_prompt": "ugly, deformed, noisy, blurry"
637
  }
638
  ]
usage.md CHANGED
@@ -55,6 +55,10 @@ Optionally, the [Karras](https://arxiv.org/abs/2206.00364) noise schedule can be
55
  * [LMS](https://huggingface.co/docs/diffusers/api/schedulers/lms_discrete)
56
  * [PNDM](https://huggingface.co/docs/diffusers/api/schedulers/pndm)
57
 
 
 
 
 
58
  ### Advanced
59
 
60
  #### DeepCache
 
55
  * [LMS](https://huggingface.co/docs/diffusers/api/schedulers/lms_discrete)
56
  * [PNDM](https://huggingface.co/docs/diffusers/api/schedulers/pndm)
57
 
58
+ #### Upscaler
59
+
60
+ [AuraSR](https://huggingface.co/fal/AuraSR-v2) from [fal.ai](https://fal.ai) can be enabled to upscale your image 4x. It's disabled if `Images` is greater than **1**, so use it once you've finalized your parameters and found a seed.
61
+
62
  ### Advanced
63
 
64
  #### DeepCache