Spaces:
Running
on
Zero
Running
on
Zero
adamelliotfields
commited on
Commit
•
053b3a4
1
Parent(s):
cb5daed
Improve style templates
Browse files- app.css +6 -3
- app.py +11 -3
- config.py +2 -1
- generate.py +4 -4
- styles/twri.json +458 -267
- usage.md +4 -0
app.css
CHANGED
@@ -41,9 +41,12 @@
|
|
41 |
|
42 |
.icon-button {
|
43 |
max-width: 42px;
|
|
|
|
|
|
|
44 |
position: relative;
|
45 |
}
|
46 |
-
.
|
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 |
-
.
|
62 |
content: 'Clear gallery';
|
63 |
}
|
64 |
-
.
|
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"
|
|
|
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 = "
|
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
|
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,
|
229 |
global styles
|
230 |
-
if not
|
231 |
return prompt
|
232 |
for style in styles:
|
233 |
-
if style["
|
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 |
-
|
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 |
]
|
|
|
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
|