-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12ColumnsPromptGeneratorNSFW.html
More file actions
2467 lines (2268 loc) · 60.3 KB
/
Copy path12ColumnsPromptGeneratorNSFW.html
File metadata and controls
2467 lines (2268 loc) · 60.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>12 Columns Random Image Prompt Generator NSFW</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<style>
body {
font-family: Arial, sans-serif;
max-width: 1900px;
margin: 20px auto;
background: #0d1117;
color: #c9d1d9;
}
h1 {
text-align: center;
color: #58a6ff;
margin-bottom: 10px;
}
.column-labels {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 5px;
}
.column-labels input {
width: 100%;
padding: 5px;
font-size: 12px;
font-weight: 600;
text-align: center;
background: #0d1117;
color: #58a6ff;
border: 2px solid #30363d;
border-radius: 4px;
box-sizing: border-box;
}
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 30px;
}
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 10px;
margin-bottom: 30px;
}
textarea {
width: 100%;
height: 260px;
padding: 10px;
font-size: 12px;
font-family: monospace;
background: #161b22;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
resize: vertical;
box-sizing: border-box;
}
.settings-row {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: start;
margin: 20px 0;
background: #161b22;
padding: 20px;
border-radius: 8px;
}
.settings-left {
grid-column: 1;
display: flex;
gap: 20px;
align-items: start;
}
.always-wrapper {
flex: 0 0 250px;
}
.always-wrapper h3 {
color: #58a6ff;
margin-bottom: 10px;
font-size: 13px;
font-weight: 600;
margin-top: 0;
}
.always-wrapper textarea {
width: 100%;
height: 120px;
padding: 10px;
font-size: 12px;
font-family: monospace;
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
resize: vertical;
box-sizing: border-box;
}
.toggles-wrapper {
display: flex;
flex-direction: column;
gap: 10px;
/* flex: 1; Removed to separate actions */
align-content: flex-start;
}
/* .settings-right CSS block removed from here as it is redefined below */
.action-wrapper {
grid-column: 2;
display: flex;
flex-direction: row;
gap: 10px;
justify-content: center;
align-self: end;
padding-bottom: 5px;
/* Slight offset from very bottom for visual balance */
}
.top-bar {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
margin-bottom: 20px;
}
.top-bar h1 {
grid-column: 2;
margin: 0;
}
.top-buttons {
grid-column: 3;
justify-self: end;
display: flex;
gap: 10px;
}
button {
padding: 15px 35px;
margin: 0;
font-size: 18px;
border: none;
border-radius: 12px;
/* Rounded corners */
cursor: pointer;
white-space: nowrap;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Depth */
transition: all 0.2s ease;
/* Smooth animation */
font-weight: 600;
letter-spacing: 0.5px;
}
button:hover {
transform: translateY(-2px);
/* Lift effect */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
button:active {
transform: translateY(1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.action-btn {
padding: 10px 15px;
font-size: 14px;
color: white;
border-radius: 8px;
}
.btn-prefill {
background: #1f6feb;
}
/* Blue */
.btn-prefill:hover {
background: #388bfd;
}
.btn-danger {
background: #da3633;
}
/* Red */
.btn-danger:hover {
background: #f85149;
}
.generate {
background: #238636;
color: white;
font-size: 22px;
padding: 18px 90px;
}
.generate:hover {
background: #2ea043;
}
.copy {
background: #1f6feb;
color: white;
}
.copy:hover {
background: #388bfd;
}
.toggle {
background: #da3633;
/* Red = OFF */
color: white;
padding: 10px 15px;
font-size: 14px;
border: 2px solid transparent;
/* fixed width border to prevent jump */
min-width: 180px;
text-align: center;
}
.toggle:hover {
background: #f85149;
}
.toggle.active {
background: #238636;
/* Green = ON */
border-color: #2ea043;
}
#output {
text-align: center;
font-size: 30px;
font-weight: bold;
line-height: 1.7;
padding: 40px;
background: #161b22;
border: 2px dashed #30363d;
border-radius: 12px;
margin: 30px auto;
max-width: 1700px;
word-wrap: break-word;
}
.settings-right {
grid-column: 3;
display: flex;
justify-content: flex-end;
align-items: flex-start;
/* Changed from center to flex-start for alignment */
gap: 15px;
/* Added gap */
height: 100%;
}
.preset-panel {
background: #0d1117;
border: 1px solid #30363d;
border-radius: 8px;
padding: 15px;
display: flex;
flex-direction: column;
gap: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
width: 250px;
/* Fixed width */
}
.preset-title {
font-size: 13px;
font-weight: 600;
color: #58a6ff;
margin-bottom: 5px;
margin-top: 0;
text-transform: none;
letter-spacing: normal;
}
.preset-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.preset-select {
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
padding: 5px 10px;
height: 36px;
font-size: 14px;
outline: none;
width: 100%;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.preset-btn {
color: white;
border: none;
border-radius: 8px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0 5px;
font-size: 14px;
transition: all 0.2s;
font-weight: normal;
white-space: nowrap;
width: 100%;
box-shadow: none;
}
.preset-btn:hover {
transform: none;
}
.preset-btn.save {
background: #238636;
grid-column: 2;
}
.preset-btn.save:hover {
background: #2ea043;
}
.preset-btn.load {
background: #1f6feb;
grid-column: 1;
}
.preset-btn.load:hover {
background: #388bfd;
}
.preset-btn.delete {
background: #da3633;
grid-column: span 2;
margin-top: 5px;
}
.preset-btn.delete:hover {
background: #f85149;
}
.preset-btn.export,
.preset-btn.import {
background: #21262d;
border: 1px solid #30363d;
color: #c9d1d9;
}
.preset-btn.export:hover,
.preset-btn.import:hover {
background: #30363d;
border-color: #8b949e;
}
.preset-btn.export {
grid-column: 1;
}
.preset-btn.import {
grid-column: 2;
}
/* Modal Styles */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 10000;
backdrop-filter: blur(2px);
}
.modal-content {
background: #161b22;
border: 1px solid #30363d;
border-radius: 12px;
padding: 24px;
width: 400px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
gap: 15px;
}
.modal-header {
color: #58a6ff;
font-size: 18px;
font-weight: 600;
}
.modal-body {
color: #c9d1d9;
font-size: 14px;
line-height: 1.5;
}
.modal-input {
background: #0d1117;
color: #c9d1d9;
border: 2px solid #30363d;
border-radius: 8px;
padding: 8px 12px;
font-size: 14px;
outline: none;
width: 100%;
box-sizing: border-box;
}
.modal-input:focus {
border-color: #58a6ff;
}
.modal-footer {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 10px;
}
.modal-btn {
padding: 8px 16px;
font-size: 14px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.2s;
}
.modal-btn.primary {
background: #238636;
color: white;
}
.modal-btn.primary:hover {
background: #2ea043;
}
.modal-btn.secondary {
background: #21262d;
color: #c9d1d9;
border: 1px solid #30363d;
}
.modal-btn.secondary:hover {
background: #30363d;
}
.modal-btn.danger {
background: #da3633;
color: white;
}
.modal-btn.danger:hover {
background: #f85149;
}
</style>
</head>
<body>
<div class="top-bar">
<a href="index.html" class="action-btn"
style="text-decoration: none; background: #30363d; justify-self: start;">Homepage</a>
<h1>12 Columns Random Image Prompt Generator <span style="color: red;">NSFW</span></h1>
<div class="top-buttons">
<button class="action-btn btn-prefill" onclick="prefillColumns()">Pre-fill Columns</button>
<button class="action-btn btn-danger" onclick="emptyColumns()">Empty All</button>
<button class="action-btn btn-danger" onclick="clearTitles()">Clear Titles</button>
</div>
</div>
<div class="column-labels">
<input type="text" id="label1" placeholder="Column 1">
<input type="text" id="label2" placeholder="Column 2">
<input type="text" id="label3" placeholder="Column 3">
<input type="text" id="label4" placeholder="Column 4">
<input type="text" id="label5" placeholder="Column 5">
<input type="text" id="label6" placeholder="Column 6">
<input type="text" id="label7" placeholder="Column 7">
<input type="text" id="label8" placeholder="Column 8">
<input type="text" id="label9" placeholder="Column 9">
<input type="text" id="label10" placeholder="Column 10">
<input type="text" id="label11" placeholder="Column 11">
<input type="text" id="label12" placeholder="Column 12">
</div>
<div class="container">
<textarea id="col1"></textarea><textarea id="col2"></textarea><textarea id="col3"></textarea><textarea
id="col4"></textarea>
<textarea id="col5"></textarea><textarea id="col6"></textarea><textarea id="col7"></textarea><textarea
id="col8"></textarea>
<textarea id="col9"></textarea><textarea id="col10"></textarea><textarea id="col11"></textarea><textarea
id="col12"></textarea>
</div>
<div class="settings-row">
<div class="settings-left">
<div class="always-wrapper">
<h3>Always Add Tags</h3>
<textarea id="alwaysText" placeholder="Tags..."></textarea>
</div>
<div class="toggles-wrapper">
<button class="toggle" id="titleBtn" onclick="toggleTitles()">Column Titles: ON</button>
<button class="toggle" id="alwaysBtn" onclick="toggleAlways()">Include Tags: ON</button>
<button class="toggle" id="sepBtn" onclick="toggleSep()">Comma Mode: ON</button>
</div>
</div>
<div class="action-wrapper">
<button class="generate" onclick="generate()">Generate New</button>
<button class="copy" onclick="copyPrompt()">Copy Prompt</button>
<button class="action-btn copy" onclick="copyJsonPrompt()">Copy JSON Prompt</button>
</div>
<div class="settings-right">
<div class="preset-panel">
<div class="preset-title">Manage Presets</div>
<select id="presetSelect" class="preset-select">
<option value="">Select Preset...</option>
</select>
<div class="preset-grid">
<button class="preset-btn load" title="Load Preset" onclick="loadPreset()">📂 Load</button>
<button class="preset-btn save" title="Save Preset" onclick="savePreset()">💾 Save</button>
<button class="preset-btn export" title="Export Presets" onclick="exportPresets()">⬇️ Export</button>
<button class="preset-btn import" title="Import Presets"
onclick="document.getElementById('importInput').click()">⬆️ Import</button>
<button class="preset-btn delete" title="Delete Preset" onclick="deletePreset()">🗑️ Delete</button>
</div>
<input type="file" id="importInput" style="display: none" accept=".json" onchange="importPresets(event)">
</div>
</div>
</div>
<div id="customModal" class="modal-overlay">
<div class="modal-content">
<div id="modalHeader" class="modal-header"></div>
<div id="modalBody" class="modal-body"></div>
<input type="text" id="modalInput" class="modal-input" style="display: none;">
<div class="modal-footer">
<button id="modalSecondaryBtn" class="modal-btn secondary">Cancel</button>
<button id="modalPrimaryBtn" class="modal-btn primary">OK</button>
</div>
</div>
</div>
<div id="output">Fill columns → click Generate → only ONE line from each column appears</div>
<script>
const defaultTitles = ["Subject", "Hair Type", "Hair Color", "Eyes", "Body Type", "Breasts", "Skin & Marks", "Expression", "NSFW Action", "Clothing", "Lighting", "Quality"];
const defaultContent = {
1: `solo female
beautiful young woman
stunning young woman
gorgeous woman in her 20s
elegant woman in her 30s
mature beauty in her 40s
timeless beauty
breathtakingly beautiful woman
ethereal beauty
girl next door
alluring woman
seductive woman
sensual woman
innocent-looking woman
sweet innocent face
corrupt innocence
fallen innocence
mysterious woman
enigmatic beauty
confident woman
elegant lady
sophisticated woman
glamorous woman
high fashion model
runway model
victorian lady
1920s flapper
1950s pinup
1970s bombshell
1980s supermodel
modern instagram model
fitness model
lingerie model
nude art model
bride in white
widow in black veil
nun in habit
corrupted nun aesthetic
gothic beauty
dark romantic
pale gothic woman
vintage hollywood starlet
old money heiress
trophy wife
mistress
secretary
office siren
strict teacher
naughty librarian
french maid outfit
classic maid
nurse in uniform
policewoman
flight attendant
cheerleader
college student
sorority girl
party girl
raver girl
tattooed alternative girl
punk rock girl
goth girl
emo girl
scene queen
biker chick
cowgirl
country girl
farm girl
beach babe
surfer girl
yoga instructor
ballet dancer
ballroom dancer
burlesque performer
cabaret dancer
stripper
pole dancer
camgirl
onlyfans model
sugar baby
kept woman
trophy girlfriend
devoted housewife
single mom
boss lady
corporate executive
powerful ceo
femme fatale
spy assassin
bond girl
final girl horror
scream queen
hitchcock blonde
marilyn monroe lookalike
audrey hepburn lookalike
grace kelly lookalike
modern muse
dream girl
perfect girlfriend
loving wife
passionate lover
shy virgin
experienced woman
recently single woman
heartbroken woman
freshly divorced woman
woman next door
mysterious stranger`, // Subject
2: `long flowing hair
waist-length straight hair
hip-length silky hair
long layered hair
long tousled hair
long loose waves
soft beach waves
mermaid waves
long soft curls
long tight curls
long voluminous hair
shoulder-length wavy hair
shoulder-length straight hair
collarbone-length bob
sleek blunt bob
textured lob
sleek chin-length bob
short pixie cut
textured pixie with undercut
asymmetrical bob
side-swept long hair
center-parted long hair
deep side part
curtain bangs
face-framing layers
wispy bangs
long feathered hair
70s feathered haircut
90s supermodel blowout
vintage hollywood waves
soft romantic curls
victory rolls
high ponytail
low ponytail
messy top knot
sleek high bun
low messy bun
half-up half-down
french braid
dutch braids
fishtail braid
side braid
crown braid
long dreadlocks
medium-length dreadlocks
curly afro
voluminous afro
short natural curls
wolf cut
long shag cut
medium shag with bangs
money piece highlights
face-framing highlights
balayage hair
platinum blonde hair
strawberry blonde hair
rich auburn hair
jet black hair
chestnut brown hair
honey blonde hair
ash blonde hair
wet look hair
freshly washed wet hair
dripping wet hair
windblown hair
tousled bed hair
freshly blown-out hair
silky smooth hair
frizz-controlled hair
slightly messy hair
hair tucked behind ears
hair falling over one eye
strands stuck to cheek
strands stuck to lip
sweat-dampened hairline
baby hairs along forehead
loose strands around face
hair catching golden hour light
backlit hair glow
shiny healthy hair
glossy hair with oil
pearl hair pins
delicate gold hair chain
small diamond hair clips
silk ribbon in hair
fresh flowers tucked in hair
small rose in hair
hair swept over one shoulder
gentle waves from braiding
salt-spray beach texture
voluminous roots
flat-iron sleek hair
natural part
slightly off-center part
wind-swept strands
soft ombre hair
caramel highlights
dark roots with lighter ends`, // Hair Type
3: `platinum blonde
icy platinum blonde
scandinavian blonde
ash blonde
cool ash blonde
beige blonde
sandy blonde
honey blonde
golden blonde
buttery blonde
champagne blonde
strawberry blonde
light strawberry blonde
rose gold blonde
warm peach blonde
caramel blonde
light caramel hair
chestnut brown
rich chestnut hair
warm chocolate brown
cool espresso brown
dark chocolate brown
mocha brown
hazelnut brown
medium auburn
copper auburn
fiery copper red
natural redhead
ginger hair
bright ginger
deep wine red
mahogany red
cherry cola hair
raven black hair
jet black hair
blue-black hair
glossy black hair
soft black hair
dark brown almost black
ash brown
cool-toned dark brown
warm golden brown
light golden brown
sandy brown
dirty blonde
dark blonde
natural blonde
bleached white blonde
silver white hair
natural silver gray
salt and pepper hair
pure white hair (albino)
platinum with dark roots
honey blonde balayage
caramel balayage
ash blonde balayage
soft ombre blonde
dark roots to light ends
money piece blonde highlights
face-framing blonde highlights
subtle babylights
warm honey highlights
copper highlights on brown
strawberry blonde highlights
soft ash brown with cool highlights
light auburn with golden streaks
jet black with subtle blue sheen
deep espresso with warm undertones`, // Hair Color
4: `piercing ice-blue eyes
deep sapphire blue eyes
bright sky blue eyes
stormy gray-blue eyes
emerald green eyes
hazel eyes with golden flecks
warm amber eyes
honey brown eyes
deep chocolate brown eyes
dark almost black brown eyes
steel gray eyes
violet-blue eyes
complete heterochromia
sectoral heterochromia
central heterochromia
slightly dilated pupils
constricted pupils
sharp iris limbal ring
detailed iris texture
catchlight in eyes
subtle light reflections in eyes
intense eye contact
piercing gaze
seductive half-lidded eyes
bedroom eyes
sultry gaze
innocent doe eyes
teary eyes
glassy tear-filled eyes
pleading eyes
loving soft gaze
shy glance
dominant stare
submissive gaze
hateful glare
cold dead stare
empty soulless eyes
thousand-yard stare
manic intense eyes
crazed wide eyes
fearful wide eyes
sad melancholy eyes
warm kind eyes
mischievous glint in eyes
smudged eyeliner
running mascara
black mascara tears
subtle eyeliner
thick winged eyeliner
smoky eye makeup
long dark lashes
wet eyelashes
teardrops on lashes
bloodshot eyes
red-rimmed eyes
pale gray-blue eyes
golden-yellow eyes
very dark red-brown eyes`, // Eyes
5: `perfect hourglass figure
extreme hourglass
slim thick
voluptuous bombshell
petite and delicate
short stack
tall amazonian
amazonian tall strong woman
athletic toned body
muscular fitness model
slender runway model
chubby soft body
plump BBW
pear shape bottom heavy
apple shape top heavy
inverted triangle swimmer build
perfectly symmetrical body
realistic proportions
exaggerated proportions
hyper curves
cartoonish proportions
impossibly tiny waist
exaggerated S-curve spine
tiny waist
corset-trained waist
wide breeding hips
child-bearing hips
massive flared hips
dramatic hip-to-waist ratio
narrow waist wide hips
thick thighs
massive thunder thighs
slim thighs
thigh gap
no thigh gap
thick calves
toned calves
long elegant legs
short thick legs
dancer legs
runner legs
delicate ankles
thick ankles
bubble butt
heart-shaped ass
huge round ass
small perky ass
muscular glutes
soft jiggly ass
huge jiggly buttocks
peach-shaped ass
massive hips and ass
cellulite on thighs
dimpled thighs
smooth flawless legs
toned abs
visible abs
soft belly
chubby tummy
slight pudge
long torso
short torso
wide shoulders
narrow shoulders
long neck
thick arms
toned arms
delicate thin arms
thick forearms
delicate wrists
small elegant hands
long slender fingers
big strong hands
thick fingers
tiny breasts flat chest
small perky breasts
perky C-cup
large natural breasts
massive natural breasts
huge hanging breasts