···4545 detectColorScheme();
4646 </script>
47474848- <style>
4949- /* Fix bulma-prefers-dark table cells not fitting vanilla bulma layout */
5050- /* @media (prefers-color-scheme: dark) { */
5151- /* .table td, .table th { */
5252- /* border-width: 0 0 1px; */
5353- /* } */
5454- /* } */
5555- html.theme-dark .table td, html.theme-dark .table th {
5656- border-width: 0 0 1px;
5757- }
5858-5959- /* Display table vertically. Matches Bulma's threshold for stacking columns vertically. */
6060- @media screen and (max-width: 1023px) {
6161- .kinks-table tr { display: flex; float: left; width: 100%; flex-flow: column; }
6262- .kinks-table td { display: block; } /* Had th, see below for what we actually do */
6363-6464- /* Size choice button as a square that takes up the whole space */
6565- .choice {
6666- width: 100%;
6767- }
6868- .choice:after {
6969- content: "";
7070- display: block;
7171- padding-bottom: 100%;
7272- }
7373-7474- .kinks-legend .choice {
7575- width: 32px;
7676- height: 32px;
7777- }
7878-7979- .kinks-table td:last-child {
8080- /* Place the kink label before the options */
8181- order: -1;
8282- /* Hide the border for the kink label */
8383- border-bottom: none !important;
8484- }
8585-8686- /* Due to the display:block above the table headers will not match the vertical layout. So we put them side-by-side (and then make them look pretty) */
8787- .kinks-table th {
8888- display: inline-block;
8989- }
9090-9191- /* They're side-by-side, but we still need to remove the padding to make it seem as one single element */
9292- .kinks-table th:not(:first-child) {
9393- padding-left: 0;
9494- }
9595- .kinks-table th:not(:last-child) {
9696- padding-right: 0;
9797- }
9898- /* Then, we add a comma separating them. */
9999- .kinks-table th:not(:last-child)::after {
100100- content: ', ';
101101- white-space: pre;
102102- }
103103-104104- /* Now we have to add the Self/Partner text to each set of choices so the reader doesn't get confused. */
105105- /* This is only applied when there is more than one choice. */
106106- /* https://stackoverflow.com/a/12198561 */
107107- .kinks-table:not([data-num-participants="1"]) td::before { /* We have to set this manually for every table. */
108108- color: #363636;
109109- font-style: italic;
110110- content: attr(data-choice-type); /* We have to set this manually for every td. */
111111- }
112112- }
113113- @media screen and (min-width: 1024px) {
114114- .choice {
115115- width: 16px;
116116- height: 16px;
117117- }
118118-119119- /* Make the table stretch out to the entire available width for the outer masonry element. This may be a hack. */
120120- .kinks-table td:last-child {
121121- width: 100%; /* Stretches out the last column as far as possible, which the browser limits to the masonry's width */
122122- }
123123- .kinks-table {
124124- margin-right: 1rem; /* Adds a small margin to the table so they don't all touch each other */
125125- }
126126- }
127127-128128- .column {
129129- margin-right: 1% !important;
130130- }
131131-132132- kinks {
133133- display: none !important;
134134- }
135135-136136- /* Margin in between choices */
137137- .choices .columns.is-gapless .column:not(:last-child) {
138138- margin-right: 3px !important;
139139- }
140140-141141- .choice {
142142- padding: 0;
143143- font-size: 0;
144144- outline: none;
145145- border: 1px solid black;
146146- border-radius: 50%;
147147- transition: opacity 0.3s ease-in-out;
148148- vertical-align: middle;
149149- opacity: 0.35;
150150- cursor: pointer;
151151- }
152152-153153- .choice:not([disabled]):hover {
154154- opacity: 0.7;
155155- }
156156-157157- .choice[disabled] {
158158- cursor: inherit;
159159- }
160160-161161- .choice.selected {
162162- opacity: 1;
163163- border-width: 2px;
164164- }
165165-166166- .choice.not-entered { background-color: #FFFFFF; }
167167- .choice.favorite { background-color: #6DB5FE; }
168168- .choice.like { background-color: #23FD22; }
169169- .choice.okay { background-color: #FDFD6B; }
170170- .choice.maybe { background-color: #DB6C00; }
171171- .choice.no { background-color: #920000; }
172172- .choice.try {
173173- background-color: white;
174174- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNScgaGVpZ2h0PScxNSc+CiAgPHJlY3Qgd2lkdGg9JzE1JyBoZWlnaHQ9JzE1JyBmaWxsPSd3aGl0ZScvPgogIDxwYXRoIGQ9J00tMSwxIGwyLC0yCiAgICAgICAgICAgTTAsNSBsMTUsLTE1CiAgICAgICAgICAgTTAsMTAgbDE1LC0xNQogICAgICAgICAgIE0wLDE1IGwxNSwtMTUKICAgICAgICAgICBNMCwyMCBsMTUsLTE1CiAgICAgICAgICAgTTAsMjUgbDE1LC0xNQogICAgICAgICAgIE0xNCwxNiBsMiwtMicgc3Ryb2tlPSdibGFjaycgc3Ryb2tlLXdpZHRoPScxJy8+Cjwvc3ZnPgo=);
175175- background-repeat: repeat;
176176- }
177177-178178- .kinks-subtitle {
179179- margin-top: 1.5rem;
180180- margin-bottom: 0 !important;
181181- }
182182-183183- .kinks-section {
184184- padding-top: 0;
185185- }
186186-187187- /* Legend: Bulma's Level does not come with margins by default. We pad the inner element instead. */
188188- .kinks-legend {
189189- padding-left: 12px;
190190- }
191191-192192- /* Margin between the choice button reference and the text that describes it */
193193- .kinks-legend .choice {
194194- margin-right: 4px;
195195- }
196196-197197- /* Increases margin between elements, matching Bulma's behavior to only do anything when not displaying vertically */
198198- @media screen and (min-width: 769px) {
199199- .kinks-legend > .level-item {
200200- margin-right: 1rem !important;
201201- }
202202- }
203203-204204- .has-description {
205205- text-decoration: underline;
206206- text-decoration-style: dotted;
207207- }
208208-209209- .has-subtitle-description {
210210- font-size: 70%;
211211-212212-213213- background-image: linear-gradient(to right, black 33%, rgba(255,255,255,0) 0%);
214214- background-position: bottom;
215215- background-size: 3px 1px;
216216- background-repeat: repeat-x;
217217- }
218218-219219- /* Use white-colored border for choice buttons when dark theme is enabled */
220220- html.theme-dark .choice {
221221- border-color: white;
222222- }
223223- </style>
224224-225225- <kinks>
226226- #Bodies
227227- (Self, Partner)
228228- * Skinny
229229- * Chubby
230230- * Hyper ? Unrealistically gigantic proportions, either in body size or muscle.
231231- * Twink ? Slim to average-looking masculine participants, generally younger.
232232- * Bear ? Larger, generally hairier masculine participants.
233233- * Breasts (in general) ? Individuals that have breasts.
234234- * Penis (in general) ? Individuals that have a penis.
235235- * Vagina (in general) ? Individuals that have a vagina.
236236- * Both genitals ? Both a penis and a vagina, at the same time.
237237- * Small breasts ? Specifically small breasts.
238238- * Large breasts ? Specifically large (but humanly possible) breasts.
239239- * Hyper breasts ? Unrealistically large breasts.
240240- * Small cocks ? Specifically small cocks.
241241- * Large cocks ? Specifically large (but humanly possible) cocks.
242242- * Hyper cocks ? Unrealistically large cocks.
243243- * Beard ? Presence of noticeable facial hair.
244244- * Hairy body ? Presence of noticeable body hair.
245245- * Shaven body ? Lack of noticeable body hair.
246246-247247- #Clothing
248248- (Self, Partner)
249249- * Clothed sex
250250- * Skirts
251251- * Lingerie
252252- * Stockings
253253- * Heels
254254- * Leather
255255- * Latex
256256- * Uniform / costume
257257- * Zettai ryoiki ? Miniskirt or shorts, with overknee socks, showing a gap of skin between the skirt and socks.
258258- * Gothic ? Dark, mysterious fashion style, sometimes referring to Victorian clothing style.
259259- * Bodysuits
260260- * Cross-dressing ? Participants dressing with clothing typical of a gender opposite to that which they identify as.
261261- * Animal ears ? Can refer to wearing a headband with animal ears or the presence of characters with animal ears in roleplay.
262262- * Piercings ? Presence of piercings, such as facial, or genital.
263263- * Nipple piercings ? Presence of piercings specifically on the nipples.
264264-265265- #Interactions & Groupings ? What kind of participants you are interested in having sexual interactions with, in addition to yourself, and what kind of sexual encounters you are interested in.
266266- (General)
267267- * You and 1 male
268268- * You and 1 female
269269- * You and 1 enby
270270- * You and MtF trans
271271- * You and FtM trans
272272- * You and 1 male, 1 female
273273- * You and 2 males
274274- * You and 2 females
275275- * You and 2 enby
276276- * Group sex ? Sexual interactions with more partners than listed here.
277277- * ERPing ? Your interest in taking part in erotic role-play.
278278-279279- #General
280280- (Giving, Receiving)
281281- * Romance / Affection ? Affectionate interactions typically within a sexual context, such as cuddling.
282282- * Handjob / Fingering ? Stimulation of the genitals using the hands.
283283- * Blowjob / Cunnilingus ? Stimulation of the genitals using the tongue or lips.
284284- * Deepthroat ? A type of blowjob where the receiving participant has most of the penis in their mouth.
285285- * Swallowing ? Swallowing semen.
286286- * Facials ? The act of ejaculating on a participant's face.
287287- * Face-sitting
288288- * Edging
289289- * Teasing
290290- * JOI, SI ? "Jack-off instruction" or "Squirt instruction", Involves a participant "instructing" the audience how and when to stroke and how/when to ejaculate while often teasing or performing other sexual acts.
291291-292292- #Butt play
293293- (Giving, Receiving)
294294- * Anal sex
295295- * Rimming ? A participant using their tongue on the anal rim of another person in order to gain and/or give sexual pleasure.
296296- * Double penetration
297297- * Anal fisting
298298-299299- #Restrictive
300300- (Self, Partner)
301301- * Gag
302302- * Collar
303303- * Leash
304304- * Blindfold
305305- * Gas mask
306306- * Chastity ? Bondage toys with the intention of making a participant unable to receive physical sexual pleasure.
307307- * Rope bondage / Kinbaku ? Tying a participant with ropes with the intention of restricting movement, sometimes using patterns which are simple yet visually intricate.
308308- * Suspension bondage ? A form of sexual bondage where a bound person is hung from one or more overhead suspension points, typically with rope.
309309- * Bondage (Light) ? Bondage involving softer and more comfortable materials and less restrictive ties.
310310- * Bondage (Heavy) ? Bondage involving very restrictive materials or materials that cover most of the body, giving the participant very little wiggle room.
311311- * Cages ? Refers to a participant being in a cage, such as a steel cage, wooden box, or other type of container intended to be restrictive. This differs from encasement in that the participant is still able to move inside the cage.
312312- * Encasement ? Refers to part of a participant's body being encased in a very restrictive material, giving them no room to move. This can include sensory deprivation play.
313313-314314- #Toys
315315- (Self, Partner)
316316- * Dildos
317317- * Dragon dildo ? A dildo resembling a dragon, or other fictional creature's penis.
318318- * Horse dildo ? A dildo resembling an equine penis.
319319- * Gaping ? Inserting a large object in the participant's anus (such as a dildo), and then removing it quickly leaving the anus temporarily stretched open.
320320- * Butt plug
321321- * Tail plug ? A kind of butt plug with an animal-styled tail at the end.
322322- * Anal beads
323323- * Vibrators
324324- * Sounding ? The act of sticking toys into the urethra.
325325-326326- #Domination ? In this section, "dominant" refers to the participant performing the actions to the submissive participant.
327327- (Dominant, Submissive)
328328- * Dominant / Submissive ? Involves roleplay where parties takes pleasure or erotic enjoyment from either dominating or being dominated.
329329- * Domestic servitude ? Can refer to maid/master roleplay, but also the act of the dominant party making the submissive participant perform a household act such as cleaning or washing dishes.
330330- * Slavery ? Sex slavery roleplay, an extension of domestic servitude to sex acts. Can involve degradation and non-con play elements, but not always.
331331- * Pet play ? Roleplay where one participant pretends to be a pet, and the other participant is their owner. Can be oriented to degradation or affection, as some participants may enjoy the thought of being cared for like a pet.
332332- * Daddy/Mommy ? Calling your partner daddy/mommy or having your partner call you daddy/mommy. This is not inherently related to incest or ageplay.
333333- * Discipline ? When a dominant party sets rules for the submissive party to follow, and punishes them if they don't. The submissive party may purposefully choose to break the rules in order to receive sexual gratification through punishment.
334334- * Begging ? When a submissive party begs the dominant party for sex or punishment. The dominant party may receive pleasure from the thought of being begged for.
335335- * Forced orgasm ? When the dominant party takes the submissive party to orgasm by force, typically meaning resistance leading to a very intense orgasm.
336336- * Orgasm control ? When the dominant party controls when the submissive party is allowed to orgasm, regardless of the sexual intercourse they're partaking in. This can involve edging, suddenly stopping sex, or the submissive party begging for orgasm, or punishing the submissive party for orgasming.
337337- * Orgasm denial ? A subset of orgasm control, when the dominant party prevents the submissive party from orgasming, by way of edging, or punishing them if they orgasm.
338338- * Power exchange ? When the dominant party allows the submissive party to do normally dominant acts, while still remaining submissive.
339339- * Neglect play ? Can refer to the dominant party purposefully refusing to have sex with the submissive party for the purposes of dominance, or leaving the submissive party tied up/with a vibrator on, while not interacting with them.
340340- * Fear play ? When the submissive party intentionally disorients themselves, often including wearing a blindfold, in order to reduce spatial awareness and induce anxiety, raising adrenaline levels, which can lead to more intense sexual enjoyment.
341341- * Breathplay ? Refers to any kind of play where the submissive party has their ability to breathe controlled by the dominant party, such as by covering the submissive party's mouth and nose, or using a towel on their face.
342342- * Choking ? Refers to specifically breathplay through choking.
343343- * Water bondage (w/o breath control) ? A form of sexual restraint common in BDSM where water is used for play in addition to other restraints. Water bondage involves restraining the submissive and either spraying them or dunking them into a body of water. This entry refers to water play where the participant's head is not under water.
344344- * Water bondage (breath control) ? A combination of water play and breathplay where the submissive party is held underwater, having to hold their breath until the dominant party lets them breathe again.
345345- * Hypnoplay / Erotic Hypnosis ? A type of roleplay where a party is hypnotized into a state of trance, where they can then be induced to temporarily feel different, or feel like they are someone or something else.
346346- * Droneplay ? Droneplay or dronification is a kind of hypnoplay where a submissive party (referred to as a drone) wears latex and a gas mask, and a dominant party (referred to as a programmer) hypnotizes ("reprograms") the drone into feeling like an obedient, mindless drone. Droneplay can involve aspects of degradation and dehumanization.
347347-348348- #Fantasy / Characters ? Entries here can refer to having a sexual attraction to characters fitting the descriptions, or wanting to roleplay as them/with them.
349349- (Self, Partner)
350350- * Nekomimi / Cat features ? Human character with cat features, such as ears and a tail.
351351- * Kitsunemimi / Fox features ? Human character with fox features, such as ears and a tail. Fox ears are larger and pointier than cat ears, and fox tails are wider and fluffier.
352352- * Kemonomimi / Animal features ? Human character with features of any animal, such as wolf, cows etc.
353353- * Furry ? Anthropomorphic animal characters, which may include fursuits.
354354- * Cows ? A subset of furry specifically for anthropomorphic bovine characters.
355355- * Rodents ? A subset of furry specifically for anthropomorphic rodent characters (rats, etc.).
356356- * Animal Crossing characters ? A subset of furry specifically for Animal Crossing characters, or characters based on them
357357- * Clowns
358358-359359- #Fantasy / Interactions
360360- (Self, Partner)
361361- * Vore ? Short for "voraphilia" or "vorarephilia", the fantasy of being eaten alive whole, or eating another creature alive whole.
362362- * Digestion ? A subset of vore where a creature, after being eaten, is digested in the other creature's stomach, or relevant body part. This can later involve the creature that was eaten being brought back.
363363- * Transformation ? Sexual attraction to the fantasy of being transformed into an object, or a different creature.
364364- * Bimbofication ? The fantasy of being turned into an airheaded, skimpy slut who adores sex.
365365- * Inflation ? A fantasy involving the belly of a participant being inflated like a balloon, by being pumped with air or fluid.
366366- * Growth ? A fantasy involving a participant growing without being related to inflation. This can be a result of eating or some other fictional elixir.
367367- * Macrophilia ? The sexual fetish of being an unrealistically large giant/giantess or being around a giant/giantess.
368368- * Microphilia ? The sexual fetish of being an unrealistically tiny person or being around one.
369369- * Tentacles ? Sexual interactions with fantasy creatures that possess phallic-shaped tentacles intended for sex. The tentacles can also be used to restrain the person being fucked. Sometimes the tentacles can have suction cups or other accessory parts, and can include oviposition.
370370- * Consentacles ? A subtype of tentacle fetish where the character being fucked by the tentacles is willing and welcoming. This can involve the tentacle creature and the character being friends.
371371- * Oviposition ? A kink that involves laying eggs into someone, usually involving aliens, bugs, tentacles, etc. Can be related to inflation.
372372- * Monster or alien ? Any character that is some kind of non-earthly monster or alien creature.
373373- * Living clothes ? Refers to when a person is wearing a creature on them, like clothes, but with a living creature. The creature can then be implied to sexually please the person wearing them.
374374- * Force-feeding ? The fantasy of a dominant participant repeatedly feeding the submissive participant, often for the purposes of weight gain.
375375- * Dullahan / Detachable head ? The fantasy of having a detachable head that can be removed and put back on without hurting the character.
376376- * Detachable body parts (not head) ? The fantasy of having detachable body parts that can function despite being detached, and can be removed without dismemberment.
377377- * Clone / selfcest ? Having sex with a clone of someone or yourself; not the same as masturbation.
378378-379379- #Fantasy / Con-non-con ? Consensual non-con, sometimes known as rapeplay, is a type of sexual roleplay where an aggressor pretends to "forcibly" have sex with the other participant. This interaction is fully consensual and both parties are willing and aware of what's going on.
380380- (Aggressor, Target)
381381- * Non-con / rape
382382- * Mindbreak ? A furthering of non-con where a target participant no longer exhibits thought or logical thinking after being induced to repeated or intense sex.
383383- * Blackmail / coercion
384384- * Kidnapping
385385- * Drugs / alcohol ? Interactions involving the target being drugged, under the influence or intoxicated. The target participant doesn't have to actually be under the influence for this to apply.
386386- * Sleep play ? Roleplay involving sex where one party pretends to be asleep.
387387- * Slavery play ? Sex slavery roleplay, but with an implied aspect of non-con to the interactions. Unlike the entry for Slavery in the Domination section, this always implies non-con and the person may wish not to appear to be enjoying the context.
388388-389389- #Fantasy / Taboo
390390- (General)
391391- * Incest ? The fantasy that the participant you're having a sexual interaction with is part of your immediate family.
392392- * Exhibitionism ? The act of having sexual interactions in public or out in the open, even if nobody's around.
393393- * Voyeurism ? The fantasy of peeping on your partner while they don't know you're looking.
394394-395395- #Fluids
396396- (General)
397397- * Blood ? Sexual arousal derived from the sight of blood.
398398- * Watersports ? Sexual interactions involving urine and urination.
399399- * Lactation ? Sexual interactions involving lactation and breast milk.
400400- * Cum play ? Sexual interactions such as licking someone clean after ejaculation, holding or smearing cum.
401401- * Excessive cum ? Sexual arousal from the presence of unrealistically large amounts of cum, such as a tank full of it.
402402- * Gas (farts etc) ? Sexual arousal derived from the sight of farts. In fantasy situations the farts can have different colors and smell.
403403- * Scat ? Sexual arousal derived from the sight of feces, as well as the act of holding or eating feces.
404404- * Diapers ? Sexual arousal derived from adults wearing diapers, which may or may not be related to watersports/scat.
405405-406406- #Degradation
407407- (Giving, Receiving)
408408- * Glory hole ? A receiving participant giving a blowjob to someone standing behind a wall, with only their penis visible through a hole.
409409- * Name calling ? Consensual insults/verbal assault.
410410- * Humiliation ? Consensual psychological humiliation performed in order to produce erotic excitement or arousal, involving the receiving partner being demeaned or put into humiliating situations, such as being naked.
411411- * Cleaning up ? The act of being told to clean something by a dominant party after sex, such as bodily fluids (cum, etc.)
412412-413413- #Touch & Stimulation
414414- (Actor, Subject)
415415- * Cock/Pussy worship ? The sex act of worshipping a partner's genitals, which can be used in foreplay, as an affectionate gesture, or for degradation.
416416- * Ass worship ? The sex act of worshipping a partner's ass, which can be used in foreplay, as an affectionate gesture, or for degradation.
417417- * Foot play
418418- * Tickling
419419- * Sensation play ? Sexual gratification from touching erogenous parts of the body, without penetration.
420420- * Electro stimulation ? Bondage sex play using toys that shock you.
421421-422422- #Misc. Fetish
423423- (Giving, Receiving)
424424- * Fisting
425425- * Gangbang ? Many people having sex with one person.
426426- * Impregnation ? Sex for the purpose of impregnation, can refer to creampies.
427427- * Pregnancy sex ? Sex during pregnancy.
428428- * Feminization ? Similar to bimbofication, a fantasy of taking a masculine individual and "feminizing" them by making them take on feminine traits or clothing.
429429- * Cuckold / Cuckquean ? The fantasy where someone else cheats on your partner or you cheat on your partner, while all parties are aware of the situation.
430430-431431- #Pain
432432- (Giving, Receiving)
433433- * Light pain ? Pain play where the pain is not the focus of the interaction, such as lighter slapping and whipping.
434434- * Heavy pain ? Pain play where the pain is heavily the focus of the interaction, and can border on the limit of the receiving party's pain tolerance.
435435- * Nipple clamps
436436- * Clothespins ? Clothespins used on the body or nipples. These can be pulled off for an intense pain feeling.
437437- * Spanking ? Open hand spanking, typically on the butt or face.
438438- * Beating ? Closed fist beating, typically on the belly, face, or butt.
439439- * Flogging ? Whips, or similar instruments used on the body of the receiving party for a pleasuresome pain response. Typically whipping is aimed at the butt, which can be more tolerable for some people.
440440- * Caning ? Hitting or being hit with a cane, which can be very painful, but enjoyable for a masochist partner.
441441- * Cock/Pussy slapping ? Slapping a participant's genitals, not involving other genital torture interactions.
442442- * Cock/Pussy torture ? Genital torture is a sexual activity involving the application of pain or constriction to the genitals, for pleasure by a masochist participant.
443443- * Hot wax ? Holding a burning candle over a participant's body and letting hot wax drip onto their bare skin, leading to a sensation of burning which can be sexually pleasing.
444444- * Scratching ? Love scratches, or any kind of sexually-oriented skin scratching that doesn't draw blood.
445445- * Biting ? Bites, typically on the neck, that don't draw blood.
446446- * Cutting ? Purposefully cutting the skin to draw blood, can refer to knife play but also applies to physical interactions that draw blood in general.
447447- </kinks>
4848+ <link rel="stylesheet" href="style.css">
44849</head>
4495045051<body>
+223
public/kinks.ts
···11+export const kinkText = `
22+#Bodies
33+(Self, Partner)
44+* Skinny
55+* Chubby
66+* Hyper ::: Unrealistically gigantic proportions, either in body size or muscle.
77+* Twink ::: Slim to average-looking masculine participants, generally younger.
88+* Bear ::: Larger, generally hairier masculine participants.
99+* Breasts (in general) ::: Individuals that have breasts.
1010+* Penis (in general) ::: Individuals that have a penis.
1111+* Vagina (in general) ::: Individuals that have a vagina.
1212+* Both genitals ::: Both a penis and a vagina, at the same time.
1313+* Small breasts ::: Specifically small breasts.
1414+* Large breasts ::: Specifically large (but humanly possible) breasts.
1515+* Hyper breasts ::: Unrealistically large breasts.
1616+* Small cocks ::: Specifically small cocks.
1717+* Large cocks ::: Specifically large (but humanly possible) cocks.
1818+* Hyper cocks ::: Unrealistically large cocks.
1919+* Beard ::: Presence of noticeable facial hair.
2020+* Hairy body ::: Presence of noticeable body hair.
2121+* Shaven body ::: Lack of noticeable body hair.
2222+2323+#Clothing
2424+(Self, Partner)
2525+* Clothed sex
2626+* Skirts
2727+* Lingerie
2828+* Stockings
2929+* Heels
3030+* Leather
3131+* Latex
3232+* Uniform / costume
3333+* Zettai ryoiki ::: Miniskirt or shorts, with overknee socks, showing a gap of skin between the skirt and socks.
3434+* Gothic ::: Dark, mysterious fashion style, sometimes referring to Victorian clothing style.
3535+* Bodysuits
3636+* Cross-dressing ::: Participants dressing with clothing typical of a gender opposite to that which they identify as.
3737+* Animal ears ::: Can refer to wearing a headband with animal ears or the presence of characters with animal ears in roleplay.
3838+* Piercings ::: Presence of piercings, such as facial, or genital.
3939+* Nipple piercings ::: Presence of piercings specifically on the nipples.
4040+4141+#Interactions & Groupings ::: What kind of participants you are interested in having sexual interactions with, in addition to yourself, and what kind of sexual encounters you are interested in.
4242+(General)
4343+* You and 1 male
4444+* You and 1 female
4545+* You and 1 enby
4646+* You and MtF trans
4747+* You and FtM trans
4848+* You and 1 male, 1 female
4949+* You and 2 males
5050+* You and 2 females
5151+* You and 2 enby
5252+* Group sex ::: Sexual interactions with more partners than listed here.
5353+* ERPing ::: Your interest in taking part in erotic role-play.
5454+5555+#General
5656+(Giving, Receiving)
5757+* Romance / Affection ::: Affectionate interactions typically within a sexual context, such as cuddling.
5858+* Handjob / Fingering ::: Stimulation of the genitals using the hands.
5959+* Blowjob / Cunnilingus ::: Stimulation of the genitals using the tongue or lips.
6060+* Deepthroat ::: A type of blowjob where the receiving participant has most of the penis in their mouth.
6161+* Swallowing ::: Swallowing semen.
6262+* Facials ::: The act of ejaculating on a participant's face.
6363+* Face-sitting
6464+* Edging
6565+* Teasing
6666+* JOI, SI ::: "Jack-off instruction" or "Squirt instruction", Involves a participant "instructing" the audience how and when to stroke and how/when to ejaculate while often teasing or performing other sexual acts.
6767+6868+#Butt play
6969+(Giving, Receiving)
7070+* Anal sex
7171+* Rimming ::: A participant using their tongue on the anal rim of another person in order to gain and/or give sexual pleasure.
7272+* Double penetration
7373+* Anal fisting
7474+7575+#Restrictive
7676+(Self, Partner)
7777+* Gag
7878+* Collar
7979+* Leash
8080+* Blindfold
8181+* Gas mask
8282+* Chastity ::: Bondage toys with the intention of making a participant unable to receive physical sexual pleasure.
8383+* Rope bondage / Kinbaku ::: Tying a participant with ropes with the intention of restricting movement, sometimes using patterns which are simple yet visually intricate.
8484+* Suspension bondage ::: A form of sexual bondage where a bound person is hung from one or more overhead suspension points, typically with rope.
8585+* Bondage (Light) ::: Bondage involving softer and more comfortable materials and less restrictive ties.
8686+* Bondage (Heavy) ::: Bondage involving very restrictive materials or materials that cover most of the body, giving the participant very little wiggle room.
8787+* Cages ::: Refers to a participant being in a cage, such as a steel cage, wooden box, or other type of container intended to be restrictive. This differs from encasement in that the participant is still able to move inside the cage.
8888+* Encasement ::: Refers to part of a participant's body being encased in a very restrictive material, giving them no room to move. This can include sensory deprivation play.
8989+9090+#Toys
9191+(Self, Partner)
9292+* Dildos
9393+* Dragon dildo ::: A dildo resembling a dragon, or other fictional creature's penis.
9494+* Horse dildo ::: A dildo resembling an equine penis.
9595+* Gaping ::: Inserting a large object in the participant's anus (such as a dildo), and then removing it quickly leaving the anus temporarily stretched open.
9696+* Butt plug
9797+* Tail plug ::: A kind of butt plug with an animal-styled tail at the end.
9898+* Anal beads
9999+* Vibrators
100100+* Sounding ::: The act of sticking toys into the urethra.
101101+102102+#Domination ::: In this section, "dominant" refers to the participant performing the actions to the submissive participant.
103103+(Dominant, Submissive)
104104+* Dominant / Submissive ::: Involves roleplay where parties takes pleasure or erotic enjoyment from either dominating or being dominated.
105105+* Domestic servitude ::: Can refer to maid/master roleplay, but also the act of the dominant party making the submissive participant perform a household act such as cleaning or washing dishes.
106106+* Slavery ::: Sex slavery roleplay, an extension of domestic servitude to sex acts. Can involve degradation and non-con play elements, but not always.
107107+* Pet play ::: Roleplay where one participant pretends to be a pet, and the other participant is their owner. Can be oriented to degradation or affection, as some participants may enjoy the thought of being cared for like a pet.
108108+* Daddy/Mommy ::: Calling your partner daddy/mommy or having your partner call you daddy/mommy. This is not inherently related to incest or ageplay.
109109+* Discipline ::: When a dominant party sets rules for the submissive party to follow, and punishes them if they don't. The submissive party may purposefully choose to break the rules in order to receive sexual gratification through punishment.
110110+* Begging ::: When a submissive party begs the dominant party for sex or punishment. The dominant party may receive pleasure from the thought of being begged for.
111111+* Forced orgasm ::: When the dominant party takes the submissive party to orgasm by force, typically meaning resistance leading to a very intense orgasm.
112112+* Orgasm control ::: When the dominant party controls when the submissive party is allowed to orgasm, regardless of the sexual intercourse they're partaking in. This can involve edging, suddenly stopping sex, or the submissive party begging for orgasm, or punishing the submissive party for orgasming.
113113+* Orgasm denial ::: A subset of orgasm control, when the dominant party prevents the submissive party from orgasming, by way of edging, or punishing them if they orgasm.
114114+* Power exchange ::: When the dominant party allows the submissive party to do normally dominant acts, while still remaining submissive.
115115+* Neglect play ::: Can refer to the dominant party purposefully refusing to have sex with the submissive party for the purposes of dominance, or leaving the submissive party tied up/with a vibrator on, while not interacting with them.
116116+* Fear play ::: When the submissive party intentionally disorients themselves, often including wearing a blindfold, in order to reduce spatial awareness and induce anxiety, raising adrenaline levels, which can lead to more intense sexual enjoyment.
117117+* Breathplay ::: Refers to any kind of play where the submissive party has their ability to breathe controlled by the dominant party, such as by covering the submissive party's mouth and nose, or using a towel on their face.
118118+* Choking ::: Refers to specifically breathplay through choking.
119119+* Water bondage (w/o breath control) ::: A form of sexual restraint common in BDSM where water is used for play in addition to other restraints. Water bondage involves restraining the submissive and either spraying them or dunking them into a body of water. This entry refers to water play where the participant's head is not under water.
120120+* Water bondage (breath control) ::: A combination of water play and breathplay where the submissive party is held underwater, having to hold their breath until the dominant party lets them breathe again.
121121+* Hypnoplay / Erotic Hypnosis ::: A type of roleplay where a party is hypnotized into a state of trance, where they can then be induced to temporarily feel different, or feel like they are someone or something else.
122122+* Droneplay ::: Droneplay or dronification is a kind of hypnoplay where a submissive party (referred to as a drone) wears latex and a gas mask, and a dominant party (referred to as a programmer) hypnotizes ("reprograms") the drone into feeling like an obedient, mindless drone. Droneplay can involve aspects of degradation and dehumanization.
123123+124124+#Fantasy / Characters ::: Entries here can refer to having a sexual attraction to characters fitting the descriptions, or wanting to roleplay as them/with them.
125125+(Self, Partner)
126126+* Nekomimi / Cat features ::: Human character with cat features, such as ears and a tail.
127127+* Kitsunemimi / Fox features ::: Human character with fox features, such as ears and a tail. Fox ears are larger and pointier than cat ears, and fox tails are wider and fluffier.
128128+* Kemonomimi / Animal features ::: Human character with features of any animal, such as wolf, cows etc.
129129+* Furry ::: Anthropomorphic animal characters, which may include fursuits.
130130+* Cows ::: A subset of furry specifically for anthropomorphic bovine characters.
131131+* Rodents ::: A subset of furry specifically for anthropomorphic rodent characters (rats, etc.).
132132+* Animal Crossing characters ::: A subset of furry specifically for Animal Crossing characters, or characters based on them
133133+* Clowns
134134+135135+#Fantasy / Interactions
136136+(Self, Partner)
137137+* Vore ::: Short for "voraphilia" or "vorarephilia", the fantasy of being eaten alive whole, or eating another creature alive whole.
138138+* Digestion ::: A subset of vore where a creature, after being eaten, is digested in the other creature's stomach, or relevant body part. This can later involve the creature that was eaten being brought back.
139139+* Transformation ::: Sexual attraction to the fantasy of being transformed into an object, or a different creature.
140140+* Bimbofication ::: The fantasy of being turned into an airheaded, skimpy slut who adores sex.
141141+* Inflation ::: A fantasy involving the belly of a participant being inflated like a balloon, by being pumped with air or fluid.
142142+* Growth ::: A fantasy involving a participant growing without being related to inflation. This can be a result of eating or some other fictional elixir.
143143+* Macrophilia ::: The sexual fetish of being an unrealistically large giant/giantess or being around a giant/giantess.
144144+* Microphilia ::: The sexual fetish of being an unrealistically tiny person or being around one.
145145+* Tentacles ::: Sexual interactions with fantasy creatures that possess phallic-shaped tentacles intended for sex. The tentacles can also be used to restrain the person being fucked. Sometimes the tentacles can have suction cups or other accessory parts, and can include oviposition.
146146+* Consentacles ::: A subtype of tentacle fetish where the character being fucked by the tentacles is willing and welcoming. This can involve the tentacle creature and the character being friends.
147147+* Oviposition ::: A kink that involves laying eggs into someone, usually involving aliens, bugs, tentacles, etc. Can be related to inflation.
148148+* Monster or alien ::: Any character that is some kind of non-earthly monster or alien creature.
149149+* Living clothes ::: Refers to when a person is wearing a creature on them, like clothes, but with a living creature. The creature can then be implied to sexually please the person wearing them.
150150+* Force-feeding ::: The fantasy of a dominant participant repeatedly feeding the submissive participant, often for the purposes of weight gain.
151151+* Dullahan / Detachable head ::: The fantasy of having a detachable head that can be removed and put back on without hurting the character.
152152+* Detachable body parts (not head) ::: The fantasy of having detachable body parts that can function despite being detached, and can be removed without dismemberment.
153153+* Clone / selfcest ::: Having sex with a clone of someone or yourself; not the same as masturbation.
154154+155155+#Fantasy / Con-non-con ::: Consensual non-con, sometimes known as rapeplay, is a type of sexual roleplay where an aggressor pretends to "forcibly" have sex with the other participant. This interaction is fully consensual and both parties are willing and aware of what's going on.
156156+(Aggressor, Target)
157157+* Non-con / rape
158158+* Mindbreak ::: A furthering of non-con where a target participant no longer exhibits thought or logical thinking after being induced to repeated or intense sex.
159159+* Blackmail / coercion
160160+* Kidnapping
161161+* Drugs / alcohol ::: Interactions involving the target being drugged, under the influence or intoxicated. The target participant doesn't have to actually be under the influence for this to apply.
162162+* Sleep play ::: Roleplay involving sex where one party pretends to be asleep.
163163+* Slavery play ::: Sex slavery roleplay, but with an implied aspect of non-con to the interactions. Unlike the entry for Slavery in the Domination section, this always implies non-con and the person may wish not to appear to be enjoying the context.
164164+165165+#Fantasy / Taboo
166166+(General)
167167+* Incest ::: The fantasy that the participant you're having a sexual interaction with is part of your immediate family.
168168+* Exhibitionism ::: The act of having sexual interactions in public or out in the open, even if nobody's around.
169169+* Voyeurism ::: The fantasy of peeping on your partner while they don't know you're looking.
170170+171171+#Fluids
172172+(General)
173173+* Blood ::: Sexual arousal derived from the sight of blood.
174174+* Watersports ::: Sexual interactions involving urine and urination.
175175+* Lactation ::: Sexual interactions involving lactation and breast milk.
176176+* Cum play ::: Sexual interactions such as licking someone clean after ejaculation, holding or smearing cum.
177177+* Excessive cum ::: Sexual arousal from the presence of unrealistically large amounts of cum, such as a tank full of it.
178178+* Gas (farts etc) ::: Sexual arousal derived from the sight of farts. In fantasy situations the farts can have different colors and smell.
179179+* Scat ::: Sexual arousal derived from the sight of feces, as well as the act of holding or eating feces.
180180+* Diapers ::: Sexual arousal derived from adults wearing diapers, which may or may not be related to watersports/scat.
181181+182182+#Degradation
183183+(Giving, Receiving)
184184+* Glory hole ::: A receiving participant giving a blowjob to someone standing behind a wall, with only their penis visible through a hole.
185185+* Name calling ::: Consensual insults/verbal assault.
186186+* Humiliation ::: Consensual psychological humiliation performed in order to produce erotic excitement or arousal, involving the receiving partner being demeaned or put into humiliating situations, such as being naked.
187187+* Cleaning up ::: The act of being told to clean something by a dominant party after sex, such as bodily fluids (cum, etc.)
188188+189189+#Touch & Stimulation
190190+(Actor, Subject)
191191+* Cock/Pussy worship ::: The sex act of worshipping a partner's genitals, which can be used in foreplay, as an affectionate gesture, or for degradation.
192192+* Ass worship ::: The sex act of worshipping a partner's ass, which can be used in foreplay, as an affectionate gesture, or for degradation.
193193+* Foot play
194194+* Tickling
195195+* Sensation play ::: Sexual gratification from touching erogenous parts of the body, without penetration.
196196+* Electro stimulation ::: Bondage sex play using toys that shock you.
197197+198198+#Misc. Fetish
199199+(Giving, Receiving)
200200+* Fisting
201201+* Gangbang ::: Many people having sex with one person.
202202+* Impregnation ::: Sex for the purpose of impregnation, can refer to creampies.
203203+* Pregnancy sex ::: Sex during pregnancy.
204204+* Feminization ::: Similar to bimbofication, a fantasy of taking a masculine individual and "feminizing" them by making them take on feminine traits or clothing.
205205+* Cuckold / Cuckquean ::: The fantasy where someone else cheats on your partner or you cheat on your partner, while all parties are aware of the situation.
206206+207207+#Pain
208208+(Giving, Receiving)
209209+* Light pain ::: Pain play where the pain is not the focus of the interaction, such as lighter slapping and whipping.
210210+* Heavy pain ::: Pain play where the pain is heavily the focus of the interaction, and can border on the limit of the receiving party's pain tolerance.
211211+* Nipple clamps
212212+* Clothespins ::: Clothespins used on the body or nipples. These can be pulled off for an intense pain feeling.
213213+* Spanking ::: Open hand spanking, typically on the butt or face.
214214+* Beating ::: Closed fist beating, typically on the belly, face, or butt.
215215+* Flogging ::: Whips, or similar instruments used on the body of the receiving party for a pleasuresome pain response. Typically whipping is aimed at the butt, which can be more tolerable for some people.
216216+* Caning ::: Hitting or being hit with a cane, which can be very painful, but enjoyable for a masochist partner.
217217+* Cock/Pussy slapping ::: Slapping a participant's genitals, not involving other genital torture interactions.
218218+* Cock/Pussy torture ::: Genital torture is a sexual activity involving the application of pain or constriction to the genitals, for pleasure by a masochist participant.
219219+* Hot wax ::: Holding a burning candle over a participant's body and letting hot wax drip onto their bare skin, leading to a sensation of burning which can be sexually pleasing.
220220+* Scratching ::: Love scratches, or any kind of sexually-oriented skin scratching that doesn't draw blood.
221221+* Biting ::: Bites, typically on the neck, that don't draw blood.
222222+* Cutting ::: Purposefully cutting the skin to draw blood, can refer to knife play but also applies to physical interactions that draw blood in general.
223223+`.trim();
+1
public/lexicons/index.ts
···11+export * as IoGitlabKinklistKinklistProfile from "./types/io/gitlab/kinklist/kinklist/profile.js";