├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── examples ├── 1.png ├── 10.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── customnodes_ComfyUIImpactPack_wildcards.zip ├── file_list_wildcard.txt ├── menuprompt.png ├── sdxl_prompt_styler.png └── workflow.png ├── sdxl_prompt_styler.py ├── sdxl_styles_all.json ├── sdxl_styles_artists.json ├── sdxl_styles_camera.json ├── sdxl_styles_celticart.json ├── sdxl_styles_composition.json ├── sdxl_styles_contempnordic.json ├── sdxl_styles_cs.json ├── sdxl_styles_depth.json ├── sdxl_styles_environment.json ├── sdxl_styles_fashion.json ├── sdxl_styles_filter.json ├── sdxl_styles_focus.json ├── sdxl_styles_fs.json ├── sdxl_styles_gothrev.json ├── sdxl_styles_horror.json ├── sdxl_styles_iclandiccontemp.json ├── sdxl_styles_impressionism.json ├── sdxl_styles_irishfolkart.json ├── sdxl_styles_lighting.json ├── sdxl_styles_mc.json ├── sdxl_styles_mh.json ├── sdxl_styles_misc.json ├── sdxl_styles_mood.json ├── sdxl_styles_original.json ├── sdxl_styles_qr.json ├── sdxl_styles_romanticnat.json ├── sdxl_styles_sports.json ├── sdxl_styles_sr.json ├── sdxl_styles_street.json ├── sdxl_styles_subject.json ├── sdxl_styles_surrealism.json ├── sdxl_styles_themes.json ├── sdxl_styles_tod.json ├── sdxl_styles_viking.json ├── sdxl_styles_wildlife.json └── sdxl_styles_wyvern.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 twri 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SDXL Prompt Styler 2 | ======= 3 | All credits to twri/sdxl_prompt_styler ```https://github.com/twri/sdxl_prompt_styler``` 4 | ----------- 5 | Custom node for ComfyUI that I organized and customized to my needs. 6 | ----------- 7 | ![SDXL Prompt Styler Screenshot](examples/sdxl_prompt_styler.png) 8 | 9 | SDXL Prompt Styler is a node that enables you to style prompts based on predefined templates stored in a JSON file. The node specifically replaces a {prompt} placeholder in the 'prompt' field of each template with provided positive text. 10 | 11 | The node also effectively manages negative prompts. If negative text is provided, the node combines this with the 'negative_prompt' field from the template. If no negative text is supplied, the system defaults to using the 'negative_prompt' from the JSON template. This flexibility enables the creation of a diverse and specific range of negative prompts. 12 | 13 | ### Usage Example with SDXL Prompt Styler 14 | 15 | Template example from a JSON file: 16 | 17 | ```json 18 | [ 19 | { 20 | "name": "base", 21 | "prompt": "{prompt}", 22 | "negative_prompt": "" 23 | }, 24 | { 25 | "name": "enhance", 26 | "prompt": "breathtaking {prompt} . award-winning, professional, highly detailed", 27 | "negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy" 28 | } 29 | ] 30 | ``` 31 | 32 | ```python 33 | style = "enhance" 34 | positive_prompt = "a futuristic pop up tent in a forest" 35 | negative_prompt = "dark" 36 | ``` 37 | 38 | This will generate the following styled prompts as outputs: 39 | 40 | ``` 41 | breathtaking a futuristic pop up tent in a forest . award-winning, professional, highly detailed 42 | ugly, deformed, noisy, blurry, distorted, grainy, dark 43 | ``` 44 | 45 | ### Installation of the Original SDXL Prompt Styler by twri/sdxl_prompt_styler (Optional) 46 | 47 | (Optional) For the Original SDXL Prompt Styler 48 | 49 | To install and use the SDXL Prompt Styler nodes, follow these steps: 50 | 51 | 1. Open a terminal or command line interface. 52 | 2. Navigate to the `ComfyUI/custom_nodes/` directory. 53 | 3. Run the following command: 54 | ```git clone https://github.com/twri/sdxl_prompt_styler.git``` 55 | 4. Restart ComfyUI. 56 | 57 | This command clones the SDXL Prompt Styler repository into your `ComfyUI/custom_nodes/` directory. You should now be able to access and use the nodes from this repository. 58 | 59 | ### Installation of my customized version 60 | 1. Open a terminal or command line interface. 61 | 2. Navigate to the `ComfyUI/custom_nodes/` directory. 62 | 3. Run the following command: 63 | ```git clone https://github.com/wolfden/ComfyUi_PromptStylers.git``` 64 | 4. Restart ComfyUI. 65 | 66 | This command clones the repository into your `ComfyUI/custom_nodes/` directory. You should now be able to access and use the nodes from this repository. 67 | 68 | After restart you should see a new submenu Style Prompts - click on the desired style and the node will appear in your workflow 69 | 70 | ![SDXL Prompt Styler Screenshot](examples/menuprompt.png) 71 | 72 | Thanks to Three Headed Monkey in Discord of AI Revolution (discord.gg/rXFmn3gaAc) for the hard work with producing most of the various styles 73 | 74 | ### Inputs 75 | 76 | * **text_positive** - text for the positive base prompt G 77 | * **text_negative** - text for the negative base prompt G 78 | * **log_prompt** - print inputs and outputs to stdout 79 | 80 | ### Outputs 81 | 82 | * **positive_prompt_text_g** - combined prompt with style for positive promt G 83 | * **negative_prompt_text_g** - combined prompt with style for negative promt G 84 | 85 | ### Example - More in Example Folder with Workflow 86 | Mythical Creature - The Kraken, Terror of the Deep 87 | ![SDXL Prompt Styler Screenshot](examples/4.png) 88 | Fantasy Setting - Neverland 89 | ![SDXL Prompt Styler Screenshot](examples/3.png) 90 | Mythical Creature - - The Banshee, Wailer of Fate 91 | ![SDXL Prompt Styler Screenshot](examples/6.png) 92 | 93 | ### Workflow 94 | My workflow is a bit complex with lots of nodes, custome models for base and refiner. It has the face detail, hand, body, upscale, blend. Most of my prompts are just random with a selected style, and with wildcards, feelin lucky, magic prompt, and one button prompt. Use a very simple sentence and see what crazyness pops up. Find a workflow that works best for you. 95 | 96 | ![SDXL Prompt Styler Screenshot](examples/workflow.png) -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .sdxl_prompt_styler import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS 2 | 3 | __all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS'] 4 | -------------------------------------------------------------------------------- /examples/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/1.png -------------------------------------------------------------------------------- /examples/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/10.png -------------------------------------------------------------------------------- /examples/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/2.png -------------------------------------------------------------------------------- /examples/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/3.png -------------------------------------------------------------------------------- /examples/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/4.png -------------------------------------------------------------------------------- /examples/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/5.png -------------------------------------------------------------------------------- /examples/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/6.png -------------------------------------------------------------------------------- /examples/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/7.png -------------------------------------------------------------------------------- /examples/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/8.png -------------------------------------------------------------------------------- /examples/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/9.png -------------------------------------------------------------------------------- /examples/customnodes_ComfyUIImpactPack_wildcards.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/customnodes_ComfyUIImpactPack_wildcards.zip -------------------------------------------------------------------------------- /examples/file_list_wildcard.txt: -------------------------------------------------------------------------------- 1 | 3dterm.txt 2 | actors.txt 3 | actress.txt 4 | adj_architecture.txt 5 | adj_beauty.txt 6 | adj_general.txt 7 | adj_horror.txt 8 | alien.txt 9 | angel.txt 10 | animal.txt 11 | artist.txt 12 | artists.txt 13 | artistsxl.txt 14 | artist_anime.txt 15 | artist_black_white.txt 16 | artist_botanical.txt 17 | artist_c.txt 18 | artist_cartoon.txt 19 | artist_concept.txt 20 | artist_csv.txt 21 | artist_dig1.txt 22 | artist_dig2.txt 23 | artist_dig3.txt 24 | artist_director.txt 25 | artist_fantasy.txt 26 | artist_fareast.txt 27 | artist_fineart.txt 28 | artist_horror.txt 29 | artist_n.txt 30 | artist_nudity.txt 31 | artist_photographer.txt 32 | artist_scifi.txt 33 | artist_scribbles.txt 34 | artist_special.txt 35 | artist_surreal.txt 36 | artist_ukioe.txt 37 | artist_weird.txt 38 | aspect_ratio.txt 39 | background.txt 40 | background_color.txt 41 | bangs.txt 42 | bdsm.txt 43 | bdsm_type.txt 44 | belt.txt 45 | billions_of_characters.yaml 46 | biome.txt 47 | bird.txt 48 | blonde.txt 49 | bodyshape.txt 50 | bodyshape2.txt 51 | body_fit.txt 52 | body_heavy.txt 53 | body_light.txt 54 | body_poor.txt 55 | body_short.txt 56 | body_tall.txt 57 | bra.txt 58 | braids.txt 59 | breastsize.txt 60 | camera.txt 61 | camerasxl.txt 62 | camera_manu.txt 63 | cat.txt 64 | celeb.txt 65 | character.txt 66 | character2.txt 67 | character2.yaml 68 | civilization.txt 69 | class.txt 70 | clothing.txt 71 | clothing_female.txt 72 | clothing_male.txt 73 | color.txt 74 | corset.txt 75 | cosmic_galaxy.txt 76 | cosmic_nebula.txt 77 | cosmic_star.txt 78 | cosmic_term.txt 79 | costume_female.txt 80 | costume_male.txt 81 | cumplay.txt 82 | dark_fantasy_artists.txt 83 | decade.txt 84 | deity.txt 85 | detail.txt 86 | dinosaur.txt 87 | dog.txt 88 | dress.txt 89 | earrings.txt 90 | emoji.txt 91 | emoji_combo.txt 92 | expression.txt 93 | eyecolor.txt 94 | eyeliner.txt 95 | eyeliner_cat.txt 96 | eye_shadow.txt 97 | fantasy.txt 98 | fantasy_creature.txt 99 | fantasy_setting.txt 100 | female_adult.txt 101 | female_bikini.txt 102 | female_garments.txt 103 | female_negligee.txt 104 | female_skirts.txt 105 | female_tops.txt 106 | female_young.txt 107 | fetish.txt 108 | filenames.txt 109 | file_list.text 110 | filmxl.txt 111 | film_genre.txt 112 | fish.txt 113 | flower.txt 114 | focal_length.txt 115 | food.txt 116 | forest_type.txt 117 | fruit.txt 118 | fstop.txt 119 | full_prompt_fantasy.txt 120 | furniture.txt 121 | game.txt 122 | gem.txt 123 | gender.txt 124 | gender_ext.txt 125 | genre.txt 126 | gen_modifier.txt 127 | hairaccessory.txt 128 | hairlength.txt 129 | hair_color.txt 130 | hair_female.txt 131 | hair_female_short.txt 132 | hair_male.txt 133 | hd.txt 134 | headwear_female.txt 135 | headwear_male.txt 136 | high_heels.txt 137 | horror.txt 138 | identity.txt 139 | interior.txt 140 | irish_dress.txt 141 | iso_stop.txt 142 | landscape.txt 143 | legwear.txt 144 | lingerie.txt 145 | lipstick.txt 146 | lipstick_shade.txt 147 | location.txt 148 | magic_only.yaml 149 | makeup.txt 150 | male_adult.txt 151 | male_young.txt 152 | medieval_dress.txt 153 | monster.txt 154 | movement.txt 155 | movementsxl.txt 156 | nationality.txt 157 | national_park.txt 158 | neckwear.txt 159 | neg_weight.txt 160 | noun_beauty.txt 161 | noun_fantasy.txt 162 | noun_general.txt 163 | noun_horror.txt 164 | noun_landscape.txt 165 | noun_romance.txt 166 | noun_scifi.txt 167 | occupation.txt 168 | oil_painting.txt 169 | panties.txt 170 | photoshoot_type.txt 171 | photo_term.txt 172 | planet.txt 173 | pop_culture.txt 174 | pop_location.txt 175 | portrait_type.txt 176 | public.txt 177 | punk.txt 178 | purse.txt 179 | quantity.txt 180 | race.txt 181 | render.txt 182 | render_engine.txt 183 | robot.txt 184 | rpg_Item.txt 185 | scenario.txt 186 | scenario2.txt 187 | scenario_fantasy.txt 188 | scenario_romance.txt 189 | scenario_scifi.txt 190 | scifi.txt 191 | sculpture.txt 192 | setting.txt 193 | sex_act.txt 194 | sex_position.txt 195 | sex_toy.txt 196 | ship.txt 197 | site.txt 198 | skin_color.txt 199 | still_life.txt 200 | style.txt 201 | stylexl.txt 202 | subject.txt 203 | subject_fantasy.txt 204 | subject_horror.txt 205 | subject_romance.txt 206 | subject_scifi.txt 207 | subreddit.txt 208 | suit_female.txt 209 | suit_male.txt 210 | superhero.txt 211 | supermodel.txt 212 | swimwear.txt 213 | technique.txt 214 | theme.txt 215 | time.txt 216 | train.txt 217 | tree.txt 218 | tribe.txt 219 | trippy.txt 220 | underwater.txt 221 | water.txt 222 | watercolor.txt 223 | wave.txt 224 | wedding_dress.txt 225 | wh_site.txt 226 | xlstyle.txt 227 | -------------------------------------------------------------------------------- /examples/menuprompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/menuprompt.png -------------------------------------------------------------------------------- /examples/sdxl_prompt_styler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/sdxl_prompt_styler.png -------------------------------------------------------------------------------- /examples/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfden/ComfyUi_PromptStylers/376b3aa2d6c418ec3176b9e7ee6447281d8a16dc/examples/workflow.png -------------------------------------------------------------------------------- /sdxl_styles_celticart.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byCelticArt", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Celtic Knotwork Elegance", 9 | "prompt": "Illustrate intricate Celtic knotwork designs characterized by endless loops and interwoven patterns, showcasing the elegance and precision of this timeless art form.", 10 | "negative_prompt": "Lack of intricate knotwork, absence of Celtic motifs." 11 | }, 12 | { 13 | "name": "Mystical Celtic Forest", 14 | "prompt": "Craft a mystical forest scene infused with Celtic symbolism, featuring ancient trees, mythical creatures, and hidden druidic elements that evoke a sense of wonder and enchantment.", 15 | "negative_prompt": "Ordinary forest scene, absence of Celtic symbolism." 16 | }, 17 | { 18 | "name": "Celtic Mythological Saga", 19 | "prompt": "Illustrate a scene from Celtic mythology, bringing to life legendary tales of heroes, gods, and mythical creatures in a style that captures the essence of these ancient stories.", 20 | "negative_prompt": "Lack of mythological elements, absence of Celtic storytelling." 21 | }, 22 | { 23 | "name": "Celtic Warrior's Journey", 24 | "prompt": "Depict the heroic journey of a Celtic warrior in a richly detailed and historically accurate style, highlighting the warrior's bravery, honor, and connection to Celtic heritage.", 25 | "negative_prompt": "Lack of historical accuracy, absence of warrior theme." 26 | }, 27 | { 28 | "name": "Celtic Knotwork Mandala", 29 | "prompt": "Create a mesmerizing Celtic knotwork mandala, blending intricate patterns with spiritual symbolism, and evoking a sense of harmony, balance, and interconnectedness.", 30 | "negative_prompt": "Absence of mandala design, lack of spiritual symbolism." 31 | }, 32 | { 33 | "name": "Celtic Music and Dance", 34 | "prompt": "Capture the spirit of Celtic music and dance in a lively and energetic style, featuring musicians, dancers, and instruments that convey the joy and rhythm of Celtic culture.", 35 | "negative_prompt": "Lack of music and dance elements, absence of Celtic cultural motifs." 36 | }, 37 | { 38 | "name": "Celtic Nature Reverie", 39 | "prompt": "Paint a tranquil and contemplative scene inspired by Celtic reverence for nature, showcasing serene landscapes, wildlife, and the spiritual connection between Celts and the natural world.", 40 | "negative_prompt": "Ordinary natural landscape, absence of Celtic nature symbolism." 41 | }, 42 | { 43 | "name": "Celtic Illuminated Manuscript", 44 | "prompt": "Create a visually stunning illuminated manuscript page in the Celtic tradition, featuring intricate calligraphy, ornate borders, and mythological illustrations that reflect the artistry of ancient scribes.", 45 | "negative_prompt": "Lack of illuminated manuscript elements, absence of Celtic motifs." 46 | }, 47 | { 48 | "name": "Celtic Knotwork Wildlife", 49 | "prompt": "Celebrate Celtic love for wildlife by depicting animals intertwined with intricate knotwork, capturing the beauty and symbolism of animals in Celtic culture.", 50 | "negative_prompt": "Lack of wildlife, absence of Celtic knotwork." 51 | }, 52 | { 53 | "name": "Celtic Cross Reverence", 54 | "prompt": "Illustrate a majestic Celtic cross adorned with intricate designs and spiritual symbols, conveying the profound spirituality and religious significance associated with Celtic crosses.", 55 | "negative_prompt": "Absence of Celtic cross, lack of spiritual symbolism." 56 | }, 57 | { 58 | "name": "Celtic Dreamlike Enchantment", 59 | "prompt": "Craft a dreamlike and ethereal scene inspired by Celtic folklore, where mystical beings, ancient ruins, and enchanting landscapes blend seamlessly into a surreal and enchanting composition.", 60 | "negative_prompt": "Lack of mystical elements, absence of dreamlike qualities." 61 | }, 62 | { 63 | "name": "Celtic Warrior Queen's Saga", 64 | "prompt": "Illustrate the epic saga of a Celtic warrior queen, capturing her strength, leadership, and fierce determination in a style that embodies the essence of Celtic heroines throughout history.", 65 | "negative_prompt": "Absence of warrior queen theme, lack of heroic storytelling." 66 | }, 67 | { 68 | "name": "Celtic Knotwork Animal Totems", 69 | "prompt": "Explore the concept of Celtic animal totems by creating a series of intricate knotwork designs, each representing the unique symbolism and spiritual significance of a particular animal.", 70 | "negative_prompt": "Lack of animal symbolism, absence of Celtic knotwork." 71 | }, 72 | { 73 | "name": "Celtic Myths and Legends Tapestry", 74 | "prompt": "Craft a tapestry-like composition featuring multiple scenes from Celtic myths and legends, interwoven with symbolic motifs, creating a visual narrative that honors Celtic storytelling traditions.", 75 | "negative_prompt": "Absence of mythological scenes, lack of narrative cohesion." 76 | }, 77 | { 78 | "name": "Celtic Nature Spirits Invocation", 79 | "prompt": "Invoke the spirits of Celtic nature deities in a mystical and reverent style, depicting the ethereal presence of ancient gods and goddesses within the natural world they govern.", 80 | "negative_prompt": "Lack of nature spirits, absence of spiritual invocation." 81 | }, 82 | { 83 | "name": "Celtic Spiral Labyrinth", 84 | "prompt": "Design a mesmerizing labyrinth adorned with intricate Celtic spiral patterns, symbolizing the journey of the soul, and invite viewers to explore the symbolism and mystery of the labyrinth.", 85 | "negative_prompt": "Absence of labyrinth design, lack of spiritual symbolism." 86 | }, 87 | { 88 | "name": "Celtic Festive Celebration", 89 | "prompt": "Illustrate a vibrant Celtic celebration, where joyful revelers partake in traditional festivals, dances, and rituals, embodying the spirit of communal festivity and cultural heritage.", 90 | "negative_prompt": "Lack of festive elements, absence of cultural celebration." 91 | }, 92 | { 93 | "name": "Celtic Serpent Enigma", 94 | "prompt": "Explore the enigmatic symbolism of Celtic serpents, known for their dualistic meanings, in a surreal and symbolic style that captures the mysterious allure of these ancient creatures.", 95 | "negative_prompt": "Lack of serpent symbolism, absence of surreal elements." 96 | }, 97 | { 98 | "name": "Celtic Bard's Tale", 99 | "prompt": "Depict a Celtic bard regaling an audience with tales of heroism, love, and myth, in a style that brings to life the rich oral tradition of Celtic storytelling and song.", 100 | "negative_prompt": "Absence of bardic storytelling, lack of cultural elements." 101 | }, 102 | { 103 | "name": "Celtic Tree of Life Reverence", 104 | "prompt": "Pay homage to the sacred Celtic Tree of Life by creating a majestic depiction filled with intricate symbolism and spiritual depth, embodying the enduring reverence for nature in Celtic culture.", 105 | "negative_prompt": "Lack of Tree of Life symbolism, absence of spiritual reverence." 106 | }, 107 | { 108 | "name": "Celtic Elemental Elegance", 109 | "prompt": "Explore the elements of earth, air, fire, and water through intricate Celtic motifs, weaving together the natural forces that have held significance in Celtic culture for centuries.", 110 | "negative_prompt": "Absence of elemental symbolism, lack of Celtic motifs." 111 | }, 112 | { 113 | "name": "Celtic Druidic Ritual", 114 | "prompt": "Illustrate a solemn and mystical Celtic druidic ritual, where ancient priests commune with the spirits of nature, blending historical accuracy with the magical essence of Celtic spirituality.", 115 | "negative_prompt": "Lack of druidic elements, absence of mystical atmosphere." 116 | }, 117 | { 118 | "name": "Celtic Warrior's Ancestral Legacy", 119 | "prompt": "Celebrate the enduring legacy of Celtic warriors by crafting a visual narrative that spans generations, showcasing the passing down of traditions, skills, and honor through time.", 120 | "negative_prompt": "Absence of warrior legacy theme, lack of generational storytelling." 121 | }, 122 | { 123 | "name": "Celtic Ogham Script Artistry", 124 | "prompt": "Explore the beauty and mystique of the ancient Celtic Ogham script, combining calligraphic elegance with spiritual symbolism, creating a visual celebration of Celtic linguistic heritage.", 125 | "negative_prompt": "Lack of Ogham script, absence of linguistic symbolism." 126 | }, 127 | { 128 | "name": "Celtic Faerie Enchantment", 129 | "prompt": "Evoke the enchanting world of Celtic faeries, spirits, and mythical creatures in a style that captures the ethereal and magical qualities of these beings from Celtic folklore.", 130 | "negative_prompt": "Absence of faerie elements, lack of magical atmosphere." 131 | }, 132 | { 133 | "name": "Celtic Harpist's Melody", 134 | "prompt": "Pay tribute to the soul-stirring music of Celtic harpists, portraying a musician enveloped in the melodies and rhythms of Celtic musical traditions, inviting viewers to hear the music through art.", 135 | "negative_prompt": "Lack of harpist theme, absence of musical elements." 136 | }, 137 | { 138 | "name": "Celtic Stone Circle Mystery", 139 | "prompt": "Craft a mysterious scene featuring a Celtic stone circle, shrouded in mist and ancient secrets. Capture the sense of wonder and reverence associated with these enigmatic structures.", 140 | "negative_prompt": "Absence of stone circle, lack of mysterious atmosphere." 141 | }, 142 | { 143 | "name": "Celtic Goddess Invocation", 144 | "prompt": "Invoke the presence of a Celtic goddess in a spiritual and reverent style, depicting her as a divine and ethereal being embodying the essence of femininity, nature, and Celtic spirituality.", 145 | "negative_prompt": "Lack of goddess symbolism, absence of spiritual invocation." 146 | }, 147 | { 148 | "name": "Celtic Art Nouveau Fusion", 149 | "prompt": "Fusion-style artwork that combines the intricate patterns of Celtic art with the organic, flowing lines of Art Nouveau, creating a harmonious and visually captivating artistic blend.", 150 | "negative_prompt": "Absence of fusion elements, lack of artistic synergy." 151 | }, 152 | { 153 | "name": "Celtic Traveler's Odyssey", 154 | "prompt": "Illustrate the journey of a Celtic traveler as they traverse landscapes, interact with diverse cultures, and embrace the adventure of exploration while celebrating the wanderlust of Celtic heritage.", 155 | "negative_prompt": "Absence of traveler theme, lack of adventurous storytelling." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_composition.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none by Composition", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Balance", 9 | "prompt": "balance {prompt}", 10 | "negative_prompt": "unbalanced" 11 | }, 12 | { 13 | "name": "Framing", 14 | "prompt": "framing {prompt}", 15 | "negative_prompt": "blocking" 16 | }, 17 | { 18 | "name": "LeadingLines", 19 | "prompt": "leadinglines {prompt}", 20 | "negative_prompt": "scattered" 21 | }, 22 | { 23 | "name": "NegativeSpace", 24 | "prompt": "negativespace {prompt}", 25 | "negative_prompt": "positivespace" 26 | }, 27 | { 28 | "name": "Pattern", 29 | "prompt": "pattern {prompt}", 30 | "negative_prompt": "random" 31 | }, 32 | { 33 | "name": "Perspective", 34 | "prompt": "perspective {prompt}", 35 | "negative_prompt": "flat" 36 | }, 37 | { 38 | "name": "RuleOfThirds", 39 | "prompt": "ruleofthirds {prompt}", 40 | "negative_prompt": "centered" 41 | }, 42 | { 43 | "name": "Simplicity", 44 | "prompt": "simplicity {prompt}", 45 | "negative_prompt": "complex" 46 | }, 47 | { 48 | "name": "Symmetry", 49 | "prompt": "symmetry {prompt}", 50 | "negative_prompt": "asymmetry" 51 | }, 52 | { 53 | "name": "Texture", 54 | "prompt": "texture {prompt}", 55 | "negative_prompt": "smooth" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_contempnordic.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byContemporaryNordicArt", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Nordic_Minimalism", 9 | "prompt": "Minimalist artworks with Nordic influences, clean lines", 10 | "negative_prompt": "abstract, maximalism, chaotic, vibrant, busy" 11 | }, 12 | { 13 | "name": "Arctic_Landscape_Photography", 14 | "prompt": "Photography capturing the beauty of Arctic landscapes", 15 | "negative_prompt": "urban, portrait, abstract, colorful, busy" 16 | }, 17 | { 18 | "name": "Nordic_Abstract_Expressionism", 19 | "prompt": "Abstract expressionist artworks with Nordic themes", 20 | "negative_prompt": "realistic, representational, traditional, neat" 21 | }, 22 | { 23 | "name": "Nordic_Urban_Street_Art", 24 | "prompt": "Street art in Nordic urban settings, contemporary", 25 | "negative_prompt": "traditional, rural, neat, minimalistic" 26 | }, 27 | { 28 | "name": "Contemporary_Sámi_Art", 29 | "prompt": "Artwork reflecting Sámi culture and identity, modern", 30 | "negative_prompt": "abstract, unrelated themes, traditional" 31 | }, 32 | { 33 | "name": "Nordic_Nature_Installation", 34 | "prompt": "Installation art using elements from Nordic nature", 35 | "negative_prompt": "urban, indoor, abstract, artificial materials" 36 | }, 37 | { 38 | "name": "Nordic_Design_Furniture", 39 | "prompt": "Furniture design with Nordic aesthetics, functional", 40 | "negative_prompt": "ornate, antique, non-functional, impractical" 41 | }, 42 | { 43 | "name": "Contemporary_Nordic_Portraiture", 44 | "prompt": "Modern portraiture with Nordic subjects and styles", 45 | "negative_prompt": "abstract, non-representational, traditional" 46 | }, 47 | { 48 | "name": "Nordic_Light_Installation", 49 | "prompt": "Light installations inspired by Nordic light phenomena", 50 | "negative_prompt": "dark, gloomy, traditional lighting" 51 | }, 52 | { 53 | "name": "Nordic_Ceramics_Design", 54 | "prompt": "Contemporary ceramic art with Nordic influences", 55 | "negative_prompt": "traditional, plain, non-creative ceramics" 56 | }, 57 | { 58 | "name": "Nordic_Digital_Illustration", 59 | "prompt": "Digital illustrations showcasing Nordic themes, modern", 60 | "negative_prompt": "traditional, hand-drawn, non-digital" 61 | }, 62 | { 63 | "name": "Contemporary_Nordic_Fashion", 64 | "prompt": "Fashion design influenced by Nordic style, trendy", 65 | "negative_prompt": "outdated, impractical, non-stylish fashion" 66 | }, 67 | { 68 | "name": "Nordic_Urban_Landscape_Painting", 69 | "prompt": "Paintings of Nordic urban landscapes, contemporary", 70 | "negative_prompt": "traditional, rural, non-urban settings" 71 | }, 72 | { 73 | "name": "Nordic_Textile_Art", 74 | "prompt": "Textile art incorporating Nordic patterns and fabrics", 75 | "negative_prompt": "plain, non-Nordic, basic textile work" 76 | }, 77 | { 78 | "name": "Contemporary_Nordic_Sculpture", 79 | "prompt": "Modern sculpture with Nordic themes and materials", 80 | "negative_prompt": "traditional, non-Nordic, uninspired sculpture" 81 | }, 82 | { 83 | "name": "Nordic_Wildlife_Photography", 84 | "prompt": "Photography highlighting Nordic wildlife in a modern context", 85 | "negative_prompt": "studio, non-wildlife, non-Nordic animals" 86 | }, 87 | { 88 | "name": "Nordic_Ecological_Art", 89 | "prompt": "Artworks addressing ecological issues in the Nordic region", 90 | "negative_prompt": "unrelated topics, non-environmental art" 91 | }, 92 | { 93 | "name": "Contemporary_Nordic_Installation", 94 | "prompt": "Contemporary art installations with Nordic influences", 95 | "negative_prompt": "traditional, non-Nordic, outdated installations" 96 | }, 97 | { 98 | "name": "Nordic_Film_Art", 99 | "prompt": "Film and video art inspired by Nordic culture and landscapes", 100 | "negative_prompt": "unrelated themes, non-Nordic films" 101 | }, 102 | { 103 | "name": "Nordic_Architectural_Design", 104 | "prompt": "Architectural designs with Nordic aesthetics, functional", 105 | "negative_prompt": "ornate, impractical, non-functional designs" 106 | }, 107 | { 108 | "name": "Contemporary_Nordic_Collage", 109 | "prompt": "Modern collage art incorporating Nordic elements", 110 | "negative_prompt": "traditional, non-Nordic, basic collages" 111 | }, 112 | { 113 | "name": "Nordic_Abstract_Photography", 114 | "prompt": "Abstract photography with Nordic influences, contemporary", 115 | "negative_prompt": "realistic, non-abstract, traditional photography" 116 | }, 117 | { 118 | "name": "Nordic_Contemporary_Calligraphy", 119 | "prompt": "Modern calligraphy with Nordic scripts and themes", 120 | "negative_prompt": "traditional, non-Nordic, non-calligraphic" 121 | }, 122 | { 123 | "name": "Contemporary_Nordic_Digital_Art", 124 | "prompt": "Digital art creations showcasing Nordic elements, modern", 125 | "negative_prompt": "traditional, non-digital, outdated art" 126 | }, 127 | { 128 | "name": "Nordic_Street_Photography", 129 | "prompt": "Street photography capturing Nordic urban scenes, contemporary", 130 | "negative_prompt": "studio, non-urban, non-Nordic settings" 131 | }, 132 | { 133 | "name": "Nordic_Graffiti_Art", 134 | "prompt": "Graffiti art with Nordic themes in an urban context", 135 | "negative_prompt": "non-urban, non-Nordic, traditional art" 136 | }, 137 | { 138 | "name": "Contemporary_Nordic_Abstract_Sculpture", 139 | "prompt": "Modern abstract sculpture with Nordic inspiration", 140 | "negative_prompt": "realistic, non-abstract, traditional sculpture" 141 | }, 142 | { 143 | "name": "Nordic_Contemporary_Painting", 144 | "prompt": "Contemporary painting reflecting Nordic aesthetics", 145 | "negative_prompt": "traditional, non-contemporary, outdated art" 146 | }, 147 | { 148 | "name": "Nordic_Mixed_Media_Art", 149 | "prompt": "Mixed media art incorporating Nordic elements, modern", 150 | "negative_prompt": "traditional, non-mixed media, outdated art" 151 | } 152 | ] 153 | -------------------------------------------------------------------------------- /sdxl_styles_depth.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "None byDepth", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Architecture Depth of Field", 9 | "prompt": "(f_stop 11.0), (focal_length 35.0) f/11, 24mm focal length {prompt}", 10 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 11 | }, 12 | { 13 | "name": "Close-Up Depth of Field", 14 | "prompt": "(f_stop 4.0), (focal_length 60.0) f/4, 60mm focal length {prompt}", 15 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 16 | }, 17 | { 18 | "name": "Creative or Abstract Depth of Field", 19 | "prompt": "(f_stop 2.0), (focal_length 50.0) f/2, 50mm focal length {prompt}", 20 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 21 | }, 22 | { 23 | "name": "Deep Depth of Field", 24 | "prompt": "(f_stop 11.0), (focal_length 18.0) f/11, 18mm focal length {prompt}", 25 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 26 | }, 27 | { 28 | "name": "Environmental Portraits Depth of Field", 29 | "prompt": "(f_stop 5.6), (focal_length 35.0) f/5.6, 35mm focal length {prompt}", 30 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 31 | }, 32 | { 33 | "name": "Extreme Shallow Depth of Field", 34 | "prompt": "(f_stop 1.2), (focal_length 85.0) f/1.2, 85mm focal length {prompt}", 35 | "negative_prompt": "(f_stop 22.0), (focal_length 14.0)" 36 | }, 37 | { 38 | "name": "Landscape Depth of Field", 39 | "prompt": "(f_stop 16.0), (focal_length 35.0) f/16, 18mm focal length {prompt}", 40 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 41 | }, 42 | { 43 | "name": "Limited Depth of Field", 44 | "prompt": "(f_stop None), (focal_length None) f/2.8, macro lens {prompt}", 45 | "negative_prompt": "(f_stop None), (focal_length None)" 46 | }, 47 | { 48 | "name": "Macro Depth of Field", 49 | "prompt": "(f_stop None), (focal_length None) f/8, macro lens {prompt}", 50 | "negative_prompt": "(f_stop None), (focal_length None)" 51 | }, 52 | { 53 | "name": "Moderate Depth of Field", 54 | "prompt": "(f_stop 5.6), (focal_length 28.0) f/5.6, 28mm focal length {prompt}", 55 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 56 | }, 57 | { 58 | "name": "Moderate Shallow Depth of Field", 59 | "prompt": "(f_stop 4.0), (focal_length 35.0) f/4, 35mm focal length {prompt}", 60 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 61 | }, 62 | { 63 | "name": "Night Photography Depth of Field", 64 | "prompt": "(f_stop 2.8), (focal_length 35.0) f/2.8, 35mm focal length {prompt}", 65 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 66 | }, 67 | { 68 | "name": "Panoramic Depth of Field", 69 | "prompt": "(f_stop None), (focal_length None) f/16, wide-angle lens {prompt}", 70 | "negative_prompt": "(f_stop None), (focal_length None)" 71 | }, 72 | { 73 | "name": "Slightly Deep Depth of Field", 74 | "prompt": "(f_stop 8.0), (focal_length 24.0) f/8, 24mm focal length {prompt}", 75 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 76 | }, 77 | { 78 | "name": "Still Life Depth of Field", 79 | "prompt": "(f_stop 5.6), (focal_length 50.0) f/5.6, 50mm focal length {prompt}", 80 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 81 | }, 82 | { 83 | "name": "Street Photography Depth of Field", 84 | "prompt": "(f_stop 8.0), (focal_length 85.0) f/8, 35mm focal length {prompt}", 85 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 86 | }, 87 | { 88 | "name": "Subject in Motion Depth of Field", 89 | "prompt": "(f_stop 4.0), (focal_length 24.0) f/4, 24mm focal length {prompt}", 90 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 91 | }, 92 | { 93 | "name": "Very Deep Depth of Field", 94 | "prompt": "(f_stop 16.0), (focal_length 14.0) f/16, 14mm focal length {prompt}", 95 | "negative_prompt": "(f_stop 1.2), (focal_length 85.0)" 96 | }, 97 | { 98 | "name": "Very Shallow Depth of Field", 99 | "prompt": "(f_stop 1.8), (focal_length 50.0) f/1.8, 50mm focal length {prompt}", 100 | "negative_prompt": "(f_stop 1.2), (focal_length 14.0)" 101 | } 102 | ] -------------------------------------------------------------------------------- /sdxl_styles_environment.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byEnvironment", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Beach", 9 | "prompt": "beach {prompt}", 10 | "negative_prompt": "forest" 11 | }, 12 | { 13 | "name": "Desert", 14 | "prompt": "desert {prompt}", 15 | "negative_prompt": "beach" 16 | }, 17 | { 18 | "name": "Forest", 19 | "prompt": "forest {prompt}", 20 | "negative_prompt": "city" 21 | }, 22 | { 23 | "name": "Indoor", 24 | "prompt": "indoor {prompt}", 25 | "negative_prompt": "outdoor" 26 | }, 27 | { 28 | "name": "Mountain", 29 | "prompt": "mountain {prompt}", 30 | "negative_prompt": "valley" 31 | }, 32 | { 33 | "name": "Outdoor", 34 | "prompt": "outdoor {prompt}", 35 | "negative_prompt": "indoor" 36 | }, 37 | { 38 | "name": "Rural", 39 | "prompt": "rural {prompt}", 40 | "negative_prompt": "urban" 41 | }, 42 | { 43 | "name": "Snow", 44 | "prompt": "snow {prompt}", 45 | "negative_prompt": "summer" 46 | }, 47 | { 48 | "name": "Studio", 49 | "prompt": "studio {prompt}", 50 | "negative_prompt": "indoor" 51 | }, 52 | { 53 | "name": "Urban", 54 | "prompt": "urban {prompt}", 55 | "negative_prompt": "rural" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_fashion.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byFashion", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Elegant Evening Gowns", 9 | "prompt": "Illustrate the grace and sophistication of evening gowns worn by glamorous women at a high-society event. Showcase intricate details, luxurious fabrics, and a sense of opulence.", 10 | "negative_prompt": "Casual attire, simplicity, everyday fashion, lack of luxury." 11 | }, 12 | { 13 | "name": "Urban Streetwear", 14 | "prompt": "Capture the vibrant energy of urban street fashion, with edgy and unconventional clothing styles. Emphasize bold colors, graffiti-inspired patterns, and a rebellious attitude.", 15 | "negative_prompt": "Formal wear, subdued colors, traditional clothing, lack of urban edge." 16 | }, 17 | { 18 | "name": "Bohemian Festival Vibes", 19 | "prompt": "Create an artwork that embodies the free-spirited and carefree atmosphere of a music festival. Highlight flowing bohemian dresses, flower crowns, and a sense of communal celebration.", 20 | "negative_prompt": "Structured outfits, urban environment, lack of festival spirit, absence of bohemian elements." 21 | }, 22 | { 23 | "name": "Timeless Vintage Fashion", 24 | "prompt": "Transport viewers to a bygone era with vintage fashion styles from the 1950s. Showcase classic silhouettes, retro accessories, and a nostalgic sense of elegance.", 25 | "negative_prompt": "Contemporary fashion, modern trends, absence of vintage elements, lack of nostalgia." 26 | }, 27 | { 28 | "name": "High-Tech Futuristic Couture", 29 | "prompt": "Imagine a world of cutting-edge fashion in a futuristic society. Create avant-garde clothing designs that incorporate innovative technology, metallic accents, and a sense of otherworldly beauty.", 30 | "negative_prompt": "Traditional clothing, lack of technological elements, historical fashion, absence of futurism." 31 | }, 32 | { 33 | "name": "Athletic Performance Gear", 34 | "prompt": "Design sleek and functional athletic wear that's optimized for peak performance. Emphasize ergonomic designs, breathable materials, and a sense of athleticism in motion.", 35 | "negative_prompt": "Casual clothing, lack of athletic features, everyday fashion, absence of performance elements." 36 | }, 37 | { 38 | "name": "Couture Red Carpet Glamour", 39 | "prompt": "Capture the dazzling allure of celebrities walking the red carpet in high-fashion couture. Showcase intricate gowns, statement jewelry, and an atmosphere of Hollywood glamour.", 40 | "negative_prompt": "Everyday wear, casual attire, lack of red carpet ambiance, absence of couture elements." 41 | }, 42 | { 43 | "name": "Minimalist Wardrobe Essentials", 44 | "prompt": "Create a visual representation of a minimalist wardrobe with timeless and versatile pieces. Emphasize clean lines, neutral colors, and a sense of simplicity and functionality.", 45 | "negative_prompt": "Excessive ornamentation, busy patterns, cluttered design, lack of minimalism." 46 | }, 47 | { 48 | "name": "Sustainable Fashion Revolution", 49 | "prompt": "Illustrate a sustainable fashion movement with eco-friendly materials, zero-waste designs, and an emphasis on ethical production practices. Convey a sense of environmental responsibility and conscious consumerism.", 50 | "negative_prompt": "Fast fashion, environmental harm, unethical production, absence of sustainability elements." 51 | }, 52 | { 53 | "name": "Cosplay Extravaganza", 54 | "prompt": "Celebrate the creativity of cosplay by depicting intricate and elaborate costumes inspired by pop culture icons. Showcase attention to detail, character accuracy, and a sense of fandom.", 55 | "negative_prompt": "Everyday fashion, lack of character portrayal, absence of cosplay elements, casual attire." 56 | }, 57 | { 58 | "name": "Gothic Elegance", 59 | "prompt": "Embrace the dark and romantic aesthetic of Gothic fashion. Highlight intricate lace, rich velvets, and a sense of Victorian-era elegance.", 60 | "negative_prompt": "Bright colors, minimalistic design, lack of Gothic elements, absence of dark romance." 61 | }, 62 | { 63 | "name": "Safari Adventure", 64 | "prompt": "Capture the spirit of a safari adventure with fashion inspired by the wilderness. Showcase earthy tones, utilitarian designs, and a sense of exploration.", 65 | "negative_prompt": "Urban fashion, bold colors, lack of safari elements, absence of adventure." 66 | }, 67 | { 68 | "name": "Artistic Avant-Garde", 69 | "prompt": "Push the boundaries of fashion with avant-garde and artistic designs. Emphasize unconventional materials, surreal shapes, and a sense of artistic experimentation.", 70 | "negative_prompt": "Conventional fashion, traditional materials, lack of avant-garde elements, absence of artistic expression." 71 | }, 72 | { 73 | "name": "Retro Futurism", 74 | "prompt": "Blend elements of the past and future in a retro-futuristic fashion concept. Showcase a fusion of vintage styles with futuristic elements, creating a sense of nostalgia and innovation.", 75 | "negative_prompt": "Contemporary fashion, lack of vintage and futuristic fusion, absence of nostalgia and innovation." 76 | }, 77 | { 78 | "name": "Cultural Fusion", 79 | "prompt": "Explore the beauty of cultural fusion in fashion. Celebrate the mix of diverse cultural elements, patterns, and textiles to create a unique and harmonious style.", 80 | "negative_prompt": "Monocultural fashion, lack of cultural diversity, absence of fusion elements, cultural insensitivity." 81 | }, 82 | { 83 | "name": "Sci-Fi Cyberpunk", 84 | "prompt": "Step into a dystopian future with sci-fi cyberpunk fashion. Highlight high-tech fabrics, neon accents, and a sense of rebellion against the system.", 85 | "negative_prompt": "Traditional clothing, lack of futuristic elements, absence of cyberpunk aesthetics, conformity." 86 | }, 87 | { 88 | "name": "Rustic Country Charm", 89 | "prompt": "Embrace the rustic charm of countryside fashion. Showcase cozy knits, gingham prints, and a sense of down-to-earth comfort.", 90 | "negative_prompt": "Urban fashion, lack of rustic elements, absence of countryside charm, discomfort." 91 | }, 92 | { 93 | "name": "Haute Couture Fantasy", 94 | "prompt": "Delve into the realm of fantasy with haute couture fashion. Create extravagant and whimsical designs that transport viewers to a fairy tale world.", 95 | "negative_prompt": "Everyday fashion, lack of fantasy elements, absence of haute couture extravagance, mundanity." 96 | }, 97 | { 98 | "name": "Gender Fluidity", 99 | "prompt": "Celebrate the fluidity of gender through fashion. Showcase designs that break traditional gender norms, allowing individuals to express themselves freely.", 100 | "negative_prompt": "Gender-binary fashion, lack of gender fluidity, absence of non-conformity, rigid gender roles." 101 | }, 102 | { 103 | "name": "Sustainable Boho Chic", 104 | "prompt": "Embrace the bohemian spirit with a sustainable twist. Showcase eco-friendly fabrics, upcycled accessories, and a sense of conscious boho chic.", 105 | "negative_prompt": "Non-sustainable fashion, lack of bohemian elements, absence of eco-consciousness, disregard for sustainability." 106 | }, 107 | { 108 | "name": "Futuristic Space Fashion", 109 | "prompt": "Imagine fashion from the distant future, inspired by space exploration. Showcase sleek metallic materials, holographic accents, and a sense of cosmic adventure.", 110 | "negative_prompt": "Contemporary fashion, lack of futuristic elements, absence of cosmic inspiration, conventional design." 111 | }, 112 | { 113 | "name": "Art Deco Glamour", 114 | "prompt": "Step back into the opulence of the Art Deco era with glamorous fashion. Highlight geometric patterns, luxurious materials, and a sense of the Roaring Twenties.", 115 | "negative_prompt": "Modern fashion, lack of Art Deco elements, absence of opulence, contemporary simplicity." 116 | }, 117 | { 118 | "name": "Cottagecore Comfort", 119 | "prompt": "Embrace the coziness of cottagecore fashion. Showcase soft, natural fabrics, floral prints, and a sense of idyllic rural life.", 120 | "negative_prompt": "Urban fashion, lack of cottagecore elements, absence of coziness, disconnection from nature." 121 | }, 122 | { 123 | "name": "Nautical Chic", 124 | "prompt": "Sail into the world of nautical chic fashion. Highlight navy and white color palettes, stripes, and a sense of maritime elegance.", 125 | "negative_prompt": "Landlocked fashion, lack of nautical elements, absence of maritime inspiration, disconnection from the sea." 126 | }, 127 | { 128 | "name": "Glam Rock Rebellion", 129 | "prompt": "Recreate the rebellious spirit of glam rock through fashion. Showcase bold metallics, leather, and a sense of rock 'n' roll attitude.", 130 | "negative_prompt": "Conservative attire, lack of glam rock elements, absence of rebellion, conformist design." 131 | }, 132 | { 133 | "name": "Tropical Paradise Escape", 134 | "prompt": "Transport viewers to a tropical paradise with fashion inspired by exotic destinations. Highlight vibrant prints, lightweight fabrics, and a sense of wanderlust.", 135 | "negative_prompt": "Cold climate fashion, lack of tropical elements, absence of exotic inspiration, design without a sense of escape." 136 | }, 137 | { 138 | "name": "Cyberpunk Noir", 139 | "prompt": "Dive into a dark and futuristic cyberpunk world with a noir twist in fashion. Showcase moody cyberpunk aesthetics, dark cityscapes, and a sense of intrigue.", 140 | "negative_prompt": "Bright and cheerful designs, lack of cyberpunk elements, absence of noir elements, lack of intrigue." 141 | }, 142 | { 143 | "name": "Artistic Street Graffiti", 144 | "prompt": "Merge street art and fashion with designs inspired by colorful graffiti. Highlight bold patterns, urban textures, and a sense of creative rebellion.", 145 | "negative_prompt": "Traditional fashion, lack of graffiti elements, absence of urban inspiration, design without a creative edge." 146 | }, 147 | { 148 | "name": "Sustainable High Fashion", 149 | "prompt": "Elevate sustainability in high fashion. Showcase eco-friendly materials, zero-waste designs, and a sense of ethical elegance.", 150 | "negative_prompt": "Non-sustainable fashion, lack of sustainability elements, absence of ethical considerations, disregard for high fashion." 151 | }, 152 | { 153 | "name": "Artistic Fusion", 154 | "prompt": "Celebrate the fusion of art and fashion in a visually compelling way. Showcase designs that incorporate elements of famous artworks into clothing, creating a wearable masterpiece.", 155 | "negative_prompt": "Non-artistic fashion, lack of artistic elements, absence of fusion, design without artistic inspiration." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_filter.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "No option", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "BlackAndWhite", 9 | "prompt": "blackandwhite {prompt}", 10 | "negative_prompt": "color" 11 | }, 12 | { 13 | "name": "Contrast", 14 | "prompt": "contrast {prompt}", 15 | "negative_prompt": "brightness" 16 | }, 17 | { 18 | "name": "Cool", 19 | "prompt": "cool {prompt}", 20 | "negative_prompt": "warm" 21 | }, 22 | { 23 | "name": "HDR", 24 | "prompt": "hdr {prompt}", 25 | "negative_prompt": "ldr" 26 | }, 27 | { 28 | "name": "Monochrome", 29 | "prompt": "monochrome {prompt}", 30 | "negative_prompt": "colorful" 31 | }, 32 | { 33 | "name": "Saturated", 34 | "prompt": "saturated {prompt}", 35 | "negative_prompt": "dull" 36 | }, 37 | { 38 | "name": "Sepia", 39 | "prompt": "sepia {prompt}", 40 | "negative_prompt": "bright" 41 | }, 42 | { 43 | "name": "Vignette", 44 | "prompt": "vignette {prompt}", 45 | "negative_prompt": "none" 46 | }, 47 | { 48 | "name": "Vintage", 49 | "prompt": "vintage {prompt}", 50 | "negative_prompt": "modern" 51 | }, 52 | { 53 | "name": "Warm", 54 | "prompt": "warm {prompt}", 55 | "negative_prompt": "cool" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_focus.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byFocus", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Extreme Shallow Depth of Field", 9 | "prompt": "(f_stop 1.2), (focal_length 85.0) f/1.2, 85mm focal length {prompt}", 10 | "negative_prompt": "(f_stop 1.2), (focal_length 85.0)" 11 | }, 12 | { 13 | "name": "Very Shallow Depth of Field", 14 | "prompt": "(f_stop 1.8), (focal_length 50.0) f/1.8, 50mm focal length {prompt}", 15 | "negative_prompt": "(f_stop 1.8), (focal_length 50.0)" 16 | }, 17 | { 18 | "name": "Night Photography Depth of Field", 19 | "prompt": "(f_stop 2.8), (focal_length 35.0) f/2.8, 35mm focal length {prompt}", 20 | "negative_prompt": "(f_stop 2.8), (focal_length 35.0)" 21 | }, 22 | { 23 | "name": "Moderate Shallow Depth of Field", 24 | "prompt": "(f_stop 4.0), (focal_length 35.0) f/4, 35mm focal length {prompt}", 25 | "negative_prompt": "(f_stop 4.0), (focal_length 35.0)" 26 | }, 27 | { 28 | "name": "Moderate Depth of Field", 29 | "prompt": "(f_stop 5.6), (focal_length 28.0) f/5.6, 28mm focal length {prompt}", 30 | "negative_prompt": "(f_stop 5.6), (focal_length 28.0)" 31 | }, 32 | { 33 | "name": "Slightly Deep Depth of Field", 34 | "prompt": "(f_stop 8.0), (focal_length 24.0) f/8, 24mm focal length {prompt}", 35 | "negative_prompt": "(f_stop 8.0), (focal_length 24.0)" 36 | }, 37 | { 38 | "name": "Deep Depth of Field", 39 | "prompt": "(f_stop 11.0), (focal_length 18.0) f/11, 18mm focal length {prompt}", 40 | "negative_prompt": "(f_stop 11.0), (focal_length 18.0)" 41 | }, 42 | { 43 | "name": "Very Deep Depth of Field", 44 | "prompt": "(f_stop 16.0), (focal_length 14.0) f/16, 14mm focal length {prompt}", 45 | "negative_prompt": "(f_stop 16.0), (focal_length 14.0)" 46 | }, 47 | { 48 | "name": "Hyperfocal Distance", 49 | "prompt": "(f_stop 22.0), (focal_length 85.0) f/22, 14mm focal length {prompt}", 50 | "negative_prompt": "(f_stop 22.0), (focal_length 85.0)" 51 | }, 52 | { 53 | "name": "Selective Focus", 54 | "prompt": "(f_stop 3.5), (focal_length 40.0) f/3.5, 40mm focal length / (Selective Focus) {prompt} / (f_stop 2.8), (focal_length 50.0)", 55 | "negative_prompt": "(f_stop 3.5), (focal_length 40.0) / (Selective Focus) / (f_stop 16), (focal_length 24)" 56 | }, 57 | { 58 | "name": "Bokeh Effect", 59 | "prompt": "(f_stop 1.4), (focal_length 50.0) f/1.4, 50mm focal length {prompt}", 60 | "negative_prompt": "(f_stop 1.4), (focal_length 50.0)" 61 | }, 62 | { 63 | "name": "Tilt-Shift Photography", 64 | "prompt": "(f_stop None), (focal_length None) f/4, special tilt-shift lens {prompt}", 65 | "negative_prompt": "(f_stop None), (focal_length None)" 66 | }, 67 | { 68 | "name": "Macro Depth of Field", 69 | "prompt": "(f_stop None), (focal_length None) f/8, macro lens {prompt}", 70 | "negative_prompt": "(f_stop None), (focal_length None)" 71 | }, 72 | { 73 | "name": "Landscape Depth of Field", 74 | "prompt": "(f_stop 16.0), (focal_length 35.0) f/16, 18mm focal length {prompt}", 75 | "negative_prompt": "(f_stop 16.0), (focal_length 35.0)" 76 | }, 77 | { 78 | "name": "Limited Depth of Field", 79 | "prompt": "(f_stop None), (focal_length None) f/2.8, macro lens {prompt}", 80 | "negative_prompt": "(f_stop None), (focal_length None)" 81 | }, 82 | { 83 | "name": "Environmental Portraits Depth of Field", 84 | "prompt": "(f_stop 5.6), (focal_length 35.0) f/5.6, 35mm focal length {prompt}", 85 | "negative_prompt": "(f_stop 5.6), (focal_length 35.0)" 86 | }, 87 | { 88 | "name": "Close-Up Depth of Field", 89 | "prompt": "(f_stop 4.0), (focal_length 60.0) f/4, 60mm focal length {prompt}", 90 | "negative_prompt": "(f_stop 4.0), (focal_length 60.0)" 91 | }, 92 | { 93 | "name": "Street Photography Depth of Field", 94 | "prompt": "(f_stop 8.0), (focal_length 85.0) f/8, 35mm focal length {prompt}", 95 | "negative_prompt": "(f_stop 8.0), (focal_length 85.0)" 96 | }, 97 | { 98 | "name": "Subject in Motion Depth of Field", 99 | "prompt": "(f_stop 4.0), (focal_length 24.0) f/4, 24mm focal length {prompt}", 100 | "negative_prompt": "(f_stop 4.0), (focal_length 24.0)" 101 | }, 102 | { 103 | "name": "Architecture Depth of Field", 104 | "prompt": "(f_stop 11.0), (focal_length 35.0) f/11, 24mm focal length {prompt}", 105 | "negative_prompt": "(f_stop 11.0), (focal_length 35.0)" 106 | }, 107 | { 108 | "name": "Panoramic Depth of Field", 109 | "prompt": "(f_stop None), (focal_length None) f/16, wide-angle lens {prompt}", 110 | "negative_prompt": "(f_stop None), (focal_length None)" 111 | }, 112 | { 113 | "name": "Still Life Depth of Field", 114 | "prompt": "(f_stop 5.6), (focal_length 50.0) f/5.6, 50mm focal length {prompt}", 115 | "negative_prompt": "(f_stop 5.6), (focal_length 50.0)" 116 | }, 117 | { 118 | "name": "Creative or Abstract Depth of Field", 119 | "prompt": "(f_stop 2.0), (focal_length 50.0) f/2, 50mm focal length {prompt}", 120 | "negative_prompt": "(f_stop 2.0), (focal_length 50.0)" 121 | }, 122 | { 123 | "name": "Focus Distance 0.5m", 124 | "prompt": "(Subject 0.5m away in sharp focus) (Distance 0.5m away) {prompt}", 125 | "negative_prompt": "Subjects 9.5m away" 126 | }, 127 | { 128 | "name": "Focus Distance 1.0m", 129 | "prompt": "(Subject 1.0m away in sharp focus) (Distance 1.0m away) {prompt}", 130 | "negative_prompt": "Subjects 9.0m away" 131 | }, 132 | { 133 | "name": "Focus Distance 1.5m", 134 | "prompt": "(Subject 1.5m away in sharp focus) (Distance 1.5m away) {prompt}", 135 | "negative_prompt": "Subjects 8.5m away" 136 | }, 137 | { 138 | "name": "Focus Distance 2.0m", 139 | "prompt": "(Subject 2.0m away in sharp focus) (Distance 2.0m away) {prompt}", 140 | "negative_prompt": "Subjects 8.0m away" 141 | }, 142 | { 143 | "name": "Focus Distance 2.5m", 144 | "prompt": "(Subject 2.5m away in sharp focus) (Distance 2.5m away) {prompt}", 145 | "negative_prompt": "Subjects 7.5m away" 146 | }, 147 | { 148 | "name": "Focus Distance 3.0m", 149 | "prompt": "(Subject 3.0m away in sharp focus) (Distance 3.0m away) {prompt}", 150 | "negative_prompt": "Subjects 7.0m away" 151 | }, 152 | { 153 | "name": "Focus Distance 3.5m", 154 | "prompt": "(Subject 3.5m away in sharp focus) (Distance 3.5m away) {prompt}", 155 | "negative_prompt": "Subjects 6.5m away" 156 | }, 157 | { 158 | "name": "Focus Distance 4.0m", 159 | "prompt": "(Subject 4.0m away in sharp focus) (Distance 4.0m away) {prompt}", 160 | "negative_prompt": "Subjects 6.0m away" 161 | }, 162 | { 163 | "name": "Focus Distance 4.5m", 164 | "prompt": "(Subject 4.5m away in sharp focus) (Distance 4.5m away) {prompt}", 165 | "negative_prompt": "Subjects 5.5m away" 166 | }, 167 | { 168 | "name": "Focus Distance 5.0m", 169 | "prompt": "(Subject 5.0m away in sharp focus) (Distance 5.0m away) {prompt}", 170 | "negative_prompt": "Subjects 5.0m away" 171 | }, 172 | { 173 | "name": "Focus Distance 5.5m", 174 | "prompt": "(Subject 5.5m away in sharp focus) (Distance 5.5m away) {prompt}", 175 | "negative_prompt": "Subjects 4.5m away" 176 | }, 177 | { 178 | "name": "Focus Distance 6.0m", 179 | "prompt": "(Subject 6.0m away in sharp focus) (Distance 6.0m away) {prompt}", 180 | "negative_prompt": "Subjects 4.0m away" 181 | }, 182 | { 183 | "name": "Focus Distance 6.5m", 184 | "prompt": "(Subject 6.5m away in sharp focus) (Distance 6.5m away) {prompt}", 185 | "negative_prompt": "Subjects 3.5m away" 186 | }, 187 | { 188 | "name": "Focus Distance 7.0m", 189 | "prompt": "(Subject 7.0m away in sharp focus) (Distance 7.0m away) {prompt}", 190 | "negative_prompt": "Subjects 3.0m away" 191 | }, 192 | { 193 | "name": "Focus Distance 7.5m", 194 | "prompt": "(Subject 7.5m away in sharp focus) (Distance 7.5m away) {prompt}", 195 | "negative_prompt": "Subjects 2.5m away" 196 | }, 197 | { 198 | "name": "Focus Distance 8.0m", 199 | "prompt": "(Subject 8.0m away in sharp focus) (Distance 8.0m away) {prompt}", 200 | "negative_prompt": "Subjects 2.0m away" 201 | }, 202 | { 203 | "name": "Focus Distance 8.5m", 204 | "prompt": "(Subject 8.5m away in sharp focus) (Distance 8.5m away) {prompt}", 205 | "negative_prompt": "Subjects 1.5m away" 206 | }, 207 | { 208 | "name": "Focus Distance 9.0m", 209 | "prompt": "(Subject 9.0m away in sharp focus) (Distance 9.0m away) {prompt}", 210 | "negative_prompt": "Subjects 1.0m away" 211 | }, 212 | { 213 | "name": "Focus Distance 9.5m", 214 | "prompt": "(Subject 9.5m away in sharp focus) (Distance 9.5m away) {prompt}", 215 | "negative_prompt": "Subjects 0.5m away" 216 | }, 217 | { 218 | "name": "Focus Distance 10.0m", 219 | "prompt": "(Subject 10.0m away in sharp focus) (Distance 10.0m away) {prompt}", 220 | "negative_prompt": "Subjects 0.0m away" 221 | }, 222 | { 223 | "name": "10% Focus Area", 224 | "prompt": "(10% of the image in sharp focus) (10% of image) {prompt}", 225 | "negative_prompt": "90% focus area" 226 | }, 227 | { 228 | "name": "20% Focus Area", 229 | "prompt": "(20% of the image in sharp focus) (20% of image) {prompt}", 230 | "negative_prompt": "80% focus area" 231 | }, 232 | { 233 | "name": "30% Focus Area", 234 | "prompt": "(30% of the image in sharp focus) (30% of image) {prompt}", 235 | "negative_prompt": "70% focus area" 236 | }, 237 | { 238 | "name": "40% Focus Area", 239 | "prompt": "(40% of the image in sharp focus) (40% of image) {prompt}", 240 | "negative_prompt": "60% focus area" 241 | }, 242 | { 243 | "name": "50% Focus Area", 244 | "prompt": "(50% of the image in sharp focus) (50% of image) {prompt}", 245 | "negative_prompt": "50% focus area" 246 | }, 247 | { 248 | "name": "60% Focus Area", 249 | "prompt": "(60% of the image in sharp focus) (60% of image) {prompt}", 250 | "negative_prompt": "40% focus area" 251 | }, 252 | { 253 | "name": "70% Focus Area", 254 | "prompt": "(70% of the image in sharp focus) (70% of image) {prompt}", 255 | "negative_prompt": "30% focus area" 256 | }, 257 | { 258 | "name": "80% Focus Area", 259 | "prompt": "(80% of the image in sharp focus) (80% of image) {prompt}", 260 | "negative_prompt": "20% focus area" 261 | }, 262 | { 263 | "name": "90% Focus Area", 264 | "prompt": "(90% of the image in sharp focus) (90% of image) {prompt}", 265 | "negative_prompt": "10% focus area" 266 | }, 267 | { 268 | "name": "100% Focus Area", 269 | "prompt": "(100% of the image in sharp focus) (100% of image) {prompt}", 270 | "negative_prompt": "0% focus area" 271 | }, 272 | { 273 | "name": "Manual Focus", 274 | "prompt": "(Using manual focus) (manual focus technique) {prompt}", 275 | "negative_prompt": "Using other than manual focus" 276 | }, 277 | { 278 | "name": "Autofocus", 279 | "prompt": "(Using autofocus) (autofocus technique) {prompt}", 280 | "negative_prompt": "Using other than autofocus" 281 | }, 282 | { 283 | "name": "Focus Stacking", 284 | "prompt": "(Using focus stacking) (focus stacking technique) {prompt}", 285 | "negative_prompt": "Using other than focus stacking" 286 | }, 287 | { 288 | "name": "Back-Button Focus", 289 | "prompt": "(Using back-button focus) (back-button focus technique) {prompt}", 290 | "negative_prompt": "Using other than back-button focus" 291 | }, 292 | { 293 | "name": "Focus Bracketing", 294 | "prompt": "(Using focus bracketing) (focus bracketing technique) {prompt}", 295 | "negative_prompt": "Using other than focus bracketing" 296 | }, 297 | { 298 | "name": "Selective Focus", 299 | "prompt": "(Selective Focus) {prompt} / (f_stop 2.8), (focal_length 50.0)", 300 | "negative_prompt": "(Selective Focus) / (f_stop 16), (focal_length 24)" 301 | }, 302 | { 303 | "name": "Deep Focus", 304 | "prompt": "(Deep Focus) {prompt} / (f_stop 16.0), (focal_length 24.0)", 305 | "negative_prompt": "(Deep Focus) / (f_stop 1.8), (focal_length 85)" 306 | }, 307 | { 308 | "name": "Soft Focus", 309 | "prompt": "(Soft Focus) {prompt} / (f_stop 1.8), (focal_length 85.0)", 310 | "negative_prompt": "(Soft Focus) / (f_stop 16), (focal_length 24)" 311 | }, 312 | { 313 | "name": "Macro Focus", 314 | "prompt": "(Macro Focus) {prompt}", 315 | "negative_prompt": "(Macro Focus)" 316 | }, 317 | { 318 | "name": "Infinity Focus", 319 | "prompt": "(Infinity Focus) {prompt}", 320 | "negative_prompt": "(Infinity Focus)" 321 | }, 322 | { 323 | "name": "Zone Focus", 324 | "prompt": "(Zone Focus) {prompt}", 325 | "negative_prompt": "(Zone Focus)" 326 | }, 327 | { 328 | "name": "Edge-to-edge Focus", 329 | "prompt": "(Edge-to-edge Focus) {prompt}", 330 | "negative_prompt": "(Edge-to-edge Focus)" 331 | }, 332 | { 333 | "name": "Foreground Focus", 334 | "prompt": "(Foreground Focus) {prompt}", 335 | "negative_prompt": "(Foreground Focus)" 336 | }, 337 | { 338 | "name": "Background Focus", 339 | "prompt": "(Background Focus) {prompt}", 340 | "negative_prompt": "(Background Focus)" 341 | }, 342 | { 343 | "name": "Central Focus", 344 | "prompt": "(Central Focus) {prompt}", 345 | "negative_prompt": "(Central Focus)" 346 | }, 347 | { 348 | "name": "Corner Focus", 349 | "prompt": "(Corner Focus) {prompt}", 350 | "negative_prompt": "(Corner Focus)" 351 | }, 352 | { 353 | "name": "Top Focus", 354 | "prompt": "(Top Focus) {prompt}", 355 | "negative_prompt": "(Top Focus)" 356 | }, 357 | { 358 | "name": "Bottom Focus", 359 | "prompt": "(Bottom Focus) {prompt}", 360 | "negative_prompt": "(Bottom Focus)" 361 | }, 362 | { 363 | "name": "Right Focus", 364 | "prompt": "(Right Focus) {prompt}", 365 | "negative_prompt": "(Right Focus)" 366 | }, 367 | { 368 | "name": "Left Focus", 369 | "prompt": "(Left Focus) {prompt}", 370 | "negative_prompt": "(Left Focus)" 371 | }, 372 | { 373 | "name": "Rack Focus", 374 | "prompt": "(Rack Focus) {prompt}", 375 | "negative_prompt": "(Rack Focus)" 376 | }, 377 | { 378 | "name": "Pull Focus", 379 | "prompt": "(Pull Focus) {prompt}", 380 | "negative_prompt": "(Pull Focus)" 381 | }, 382 | { 383 | "name": "Rolling Focus", 384 | "prompt": "(Rolling Focus) {prompt}", 385 | "negative_prompt": "(Rolling Focus)" 386 | }, 387 | { 388 | "name": "Tilt-shift Focus", 389 | "prompt": "(Tilt-shift Focus) {prompt}", 390 | "negative_prompt": "(Tilt-shift Focus)" 391 | }, 392 | { 393 | "name": "Fly-by Focus", 394 | "prompt": "(Fly-by Focus) {prompt}", 395 | "negative_prompt": "(Fly-by Focus)" 396 | }, 397 | { 398 | "name": "Follow Focus", 399 | "prompt": "(Follow Focus) {prompt}", 400 | "negative_prompt": "(Follow Focus)" 401 | }, 402 | { 403 | "name": "Zoom Focus", 404 | "prompt": "(Zoom Focus) {prompt}", 405 | "negative_prompt": "(Zoom Focus)" 406 | }, 407 | { 408 | "name": "Dolly Focus", 409 | "prompt": "(Dolly Focus) {prompt}", 410 | "negative_prompt": "(Dolly Focus)" 411 | }, 412 | { 413 | "name": "Pan Focus", 414 | "prompt": "(Pan Focus) {prompt}", 415 | "negative_prompt": "(Pan Focus)" 416 | }, 417 | { 418 | "name": "Tilt Focus", 419 | "prompt": "(Tilt Focus) {prompt}", 420 | "negative_prompt": "(Tilt Focus)" 421 | }, 422 | { 423 | "name": "Whip Focus", 424 | "prompt": "(Whip Focus) {prompt}", 425 | "negative_prompt": "(Whip Focus)" 426 | }, 427 | { 428 | "name": "Slide Focus", 429 | "prompt": "(Slide Focus) {prompt}", 430 | "negative_prompt": "(Slide Focus)" 431 | }, 432 | { 433 | "name": "Crane Focus", 434 | "prompt": "(Crane Focus) {prompt}", 435 | "negative_prompt": "(Crane Focus)" 436 | }, 437 | { 438 | "name": "Swing Focus", 439 | "prompt": "(Swing Focus) {prompt}", 440 | "negative_prompt": "(Swing Focus)" 441 | }, 442 | { 443 | "name": "Drone Focus", 444 | "prompt": "(Drone Focus) {prompt}", 445 | "negative_prompt": "(Drone Focus)" 446 | } 447 | ] -------------------------------------------------------------------------------- /sdxl_styles_fs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byFantasy-Settings", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Atlantis", 9 | "prompt": "A legendary lost island city of great wisdom and power to have sunk into the ocean, a symbol of advanced, prehistoric civilizations and the subject of countless myths and speculations", 10 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 11 | }, 12 | { 13 | "name": "Enchanted Forest", 14 | "prompt": "An enchanted forest where magical creatures and plants abound, shrouded in an aura of enchantment, where ancient trees whisper secrets, mythical creatures roam, and the very air seems to vibrate with untold magic.", 15 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 16 | }, 17 | { 18 | "name": "Fairyland", 19 | "prompt": "A place where fairies and other magical creatures live, a whimsical and enchanting realm ethereal beauty, and endless adventures where the ordinary meets the extraordinary", 20 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 21 | }, 22 | { 23 | "name": "Fairytale", 24 | "prompt": "A fairytale land where magical creatures live and thrive", 25 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 26 | }, 27 | { 28 | "name": "Foreboding Castle", 29 | "prompt": "A dark, foreboding castle where a wicked queen reigns", 30 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 31 | }, 32 | { 33 | "name": "Middle Earth", 34 | "prompt": "A vast and ancient world, home to Elves, Dwarves, Hobbits, and Wizards", 35 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 36 | }, 37 | { 38 | "name": "Magical Kingdom", 39 | "prompt": "A magical kingdom where everything is perfect and everyone is happy", 40 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 41 | }, 42 | { 43 | "name": "Mordor", 44 | "prompt": "A dark and evil land ruled by the dark lord Sauron, volcanic landscapes, oppressive darkness,", 45 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 46 | }, 47 | { 48 | "name": "Narnia", 49 | "prompt": "A land of talking animals and magical creatures, Fantasy, Wardrobe, Deep Magic, Lion, Witch and Wardrobe", 50 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 51 | }, 52 | { 53 | "name": "Neverland", 54 | "prompt": "A lost island where children can stay forever young, Peter Pan, fantastical adventures with pirates, fairies, and magical creatures", 55 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 56 | }, 57 | { 58 | "name": "Shambhala", 59 | "prompt": "A hidden paradise where enlightened beings live in perfect harmony", 60 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 61 | }, 62 | { 63 | "name": "The Crystal Cave", 64 | "prompt": "A fantastical place where gemstones and crystals grow in abundance", 65 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 66 | }, 67 | { 68 | "name": "The Dragon's Lair", 69 | "prompt": "A deadly place where fearsome dragons dwell", 70 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 71 | }, 72 | { 73 | "name": "The Forest of Mirrors", 74 | "prompt": "A place where reality is distorted and nothing is as it seems", 75 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 76 | }, 77 | { 78 | "name": "The Island of Dreams", 79 | "prompt": "A place where all your deepest desires come true", 80 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 81 | }, 82 | { 83 | "name": "The Kingdom of the Unicorn", 84 | "prompt": "A mystical realm where these elegant and elusive creatures reign, a land of enchantment and wonder where the very air seems to shimmer with magic", 85 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 86 | }, 87 | { 88 | "name": "The Palace of Dreams", 89 | "prompt": "A surreal and enigmatic literary work by Albanian author Ismail Kadare, where a mysterious government agency interprets citizens' dreams in a totalitarian society, exploring themes of control, surveillance, and the power of the subconscious", 90 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 91 | }, 92 | { 93 | "name": "The Tower of Oblivion", 94 | "prompt": "A stronghold where forgotten secrets and dark magic are hidden", 95 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 96 | }, 97 | { 98 | "name": "The Vale of Shadows", 99 | "prompt": "A dark and foreboding valley where no sunlight ever penetrates", 100 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 101 | }, 102 | { 103 | "name": "The Valley of the Damned", 104 | "prompt": "A forsaken and eerie location, where darkness reigns and the echoes of past transgressions haunt its desolate landscape", 105 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 106 | }, 107 | { 108 | "name": "The Valley of the Lost", 109 | "prompt": "A mystical and secluded place shrouded in secrets, where untamed nature meets ancient mysteries waiting to be uncovered", 110 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 111 | }, 112 | { 113 | "name": "Tropical Paradise", 114 | "prompt": "A tropical paradise where the sun shines brightly every day", 115 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 116 | }, 117 | { 118 | "name": "Oz", 119 | "prompt": "A land of enchantment, where anything is possible, Dorothy, Yellow Brick Road, Emerald City, Wicked Witch of the West, Scarecrow, Tin Man, Cowardly Lion, Glinda the Good Witch, Toto", 120 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 121 | }, 122 | { 123 | "name": "Wonderland", 124 | "prompt": "A wild and fantastical place, ruled by the Queen of Hearts, Rabbit Hole, Mad Hatter, Cheshire Cat, Tea Party, Jabberwocky, Wonderland Creatures, white rabbit", 125 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 126 | }, 127 | { 128 | "name": "Xanadu", 129 | "prompt": "A magical kingdom ruled by a wise and benevolent queen, Palace, Kubla Khan, Opulence, Chinese Dynasty, Mongol Empire, Gardens", 130 | "negative_prompt": "ugly, deformed, noisy, low poly, blurry," 131 | }, 132 | { 133 | "name": "The Floating Isles of Aether", 134 | "prompt": "A collection of mystical islands suspended in the sky, each with its unique ecosystem and magical properties, connected by bridges of light and airships.", 135 | "negative_prompt": "Non-floating, ordinary, lacking magic, unconnected, mundane." 136 | }, 137 | { 138 | "name": "The City of Eldertide", 139 | "prompt": "A sprawling city built within the hollowed trunk of a colossal ancient tree, where the residents live in harmony with nature and tree-dwelling creatures.", 140 | "negative_prompt": "Non-tree-dwelling, ordinary, lacking harmony, unremarkable, mundane." 141 | }, 142 | { 143 | "name": "The Desert Kingdom of Mirage", 144 | "prompt": "A vast desert realm where shifting sand dunes conceal hidden oases, ancient ruins, and mirage cities that materialize and vanish mysteriously.", 145 | "negative_prompt": "Non-desert, ordinary, lacking mirages, unhidden, mundane." 146 | }, 147 | { 148 | "name": "The Enchanted Library of Whispers", 149 | "prompt": "A grand library filled with sentient, talking books and scrolls, where ancient knowledge is guarded by animated guardians, and every page tells a tale.", 150 | "negative_prompt": "Non-enchanted, ordinary, lacking knowledge, unguarded, mundane." 151 | }, 152 | { 153 | "name": "The Crystal Caverns of Lumaria", 154 | "prompt": "A labyrinthine network of caves adorned with glowing crystals of various colors, where each crystal possesses unique magical properties and secrets.", 155 | "negative_prompt": "Non-crystalline, ordinary, lacking magic, unsecretive, mundane." 156 | }, 157 | { 158 | "name": "The Clockwork City of Gearspring", 159 | "prompt": "A metropolis where clockwork machinery and automatons are an integral part of daily life, with gears, cogs, and steam-powered technology shaping the cityscape.", 160 | "negative_prompt": "Non-clockwork, ordinary, lacking technology, unshaped, mundane." 161 | }, 162 | { 163 | "name": "The Forest of Eternal Twilight", 164 | "prompt": "A mystical woodland where the sun never fully sets, creating an eternal twilight, inhabited by creatures of twilight, and filled with ancient, towering trees.", 165 | "negative_prompt": "Non-twilight, ordinary, lacking creatures, unpopulated, mundane." 166 | }, 167 | { 168 | "name": "The Elemental Planes Nexus", 169 | "prompt": "A crossroads where the elemental planes intersect, allowing travelers to journey between realms of fire, water, air, and earth, each with its own challenges and wonders.", 170 | "negative_prompt": "Non-elemental, ordinary, lacking travel, unchallenging, mundane." 171 | }, 172 | { 173 | "name": "The Astral Citadel of Astraeus", 174 | "prompt": "A fortress floating within the Astral Plane, where celestial beings and starry entities reside, guarding the secrets of the cosmos and the paths to other dimensions.", 175 | "negative_prompt": "Non-astral, ordinary, lacking guardians, unguarded, mundane." 176 | }, 177 | { 178 | "name": "The Shadowed Realm of Umbrathor", 179 | "prompt": "A dimension cloaked in eternal darkness, where shadowy creatures and beings of the night roam, and secrets of shadow magic and hidden truths await discovery.", 180 | "negative_prompt": "Non-shadowed, ordinary, lacking secrets, untruthful, mundane." 181 | }, 182 | { 183 | "name": "The Sunken Kingdom of Atlantis", 184 | "prompt": "A fabled civilization lost beneath the ocean waves, with majestic underwater cities, advanced technology, and aquatic creatures as inhabitants.", 185 | "negative_prompt": "Non-sunken, ordinary, lacking technology, unpopulated, mundane." 186 | }, 187 | { 188 | "name": "The Celestial Gardens of Zephyria", 189 | "prompt": "A realm among the clouds, where floating gardens bloom with vibrant, otherworldly flora, tended by winged guardians and home to creatures of the sky.", 190 | "negative_prompt": "Non-celestial, ordinary, lacking guardians, untended, mundane." 191 | }, 192 | { 193 | "name": "The Crystal Labyrinth of Prisms", 194 | "prompt": "A maze-like structure constructed entirely of enchanted prisms that bend and reflect light, creating intricate patterns and illusions at every turn.", 195 | "negative_prompt": "Non-crystal, ordinary, lacking enchantment, unpatterned, mundane." 196 | }, 197 | { 198 | "name": "The Wandering Forest of Eldertrees", 199 | "prompt": "A vast forest where ancient sentient trees roam, creating their paths as they wander, and offering wisdom and guidance to those who seek it.", 200 | "negative_prompt": "Non-forest, ordinary, lacking sentience, unguided, mundane." 201 | }, 202 | { 203 | "name": "The Ethereal Observatory of Astromancers", 204 | "prompt": "A celestial observatory located on a floating island, where astromancers study the stars, moons, and constellations, harnessing cosmic magic.", 205 | "negative_prompt": "Non-ethereal, ordinary, lacking study, unharnessed, mundane." 206 | }, 207 | { 208 | "name": "The Hollow Mountain of Emberforge", 209 | "prompt": "A colossal mountain hollowed out to become a bustling city of forges and molten metal, where dwarves craft legendary weapons and artifacts.", 210 | "negative_prompt": "Non-hollow, ordinary, lacking crafting, unlegendary, mundane." 211 | }, 212 | { 213 | "name": "The Dreaming Realm of Morpheus", 214 | "prompt": "A dimension where dreams take physical form, with landscapes shaped by the dreamers' imaginations and creatures born of sleeping minds.", 215 | "negative_prompt": "Non-dreaming, ordinary, lacking imagination, unformed, mundane." 216 | }, 217 | { 218 | "name": "The Elemental Nexus of Convergence", 219 | "prompt": "A central point where the elemental forces of fire, water, air, and earth meet, creating a place of balance and elemental harmony.", 220 | "negative_prompt": "Non-elemental, ordinary, lacking balance, unharmonious, mundane." 221 | }, 222 | { 223 | "name": "The Forgotten Ruins of Eldertemples", 224 | "prompt": "A vast, overgrown complex of ancient temples where long-forgotten gods and spirits still linger, waiting to be rediscovered and appeased.", 225 | "negative_prompt": "Non-ruined, ordinary, lacking gods, unappeased, mundane." 226 | }, 227 | { 228 | "name": "The Enchanted Isles of Luminescia", 229 | "prompt": "A cluster of mystical islands where bioluminescent flora and fauna create a world of eternal twilight, inhabited by beings who harness the power of light magic.", 230 | "negative_prompt": "Non-enchanted, ordinary, lacking bioluminescence, unpeopled, mundane." 231 | } 232 | ] -------------------------------------------------------------------------------- /sdxl_styles_gothrev.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byGothicRevival", 4 | "prompt": "", 5 | "negative_prompt": " " 6 | }, 7 | { 8 | "name": "Gothic Cathedral Splendor", 9 | "prompt": "Create a stunning piece of Gothic Revival art featuring a towering cathedral with intricate stone carvings, towering spires, and dramatic lighting that highlights the architectural details, evoking a sense of spiritual grandeur and awe.", 10 | "negative_prompt": "Non-cathedral, ordinary, lacking splendor, uninspiring, mundane." 11 | }, 12 | { 13 | "name": "Gothic Haunted Manor", 14 | "prompt": "Craft a piece of Gothic Revival art depicting a haunted manor shrouded in mist and moonlight, with eerie silhouettes in the windows, overgrown ivy, and a sense of foreboding, creating a sense of gothic mystery and suspense.", 15 | "negative_prompt": "Non-manor, ordinary, lacking hauntings, unshrouded, mundane." 16 | }, 17 | { 18 | "name": "Gothic Revival Foliage", 19 | "prompt": "Create a piece of Gothic Revival art that showcases a lush garden with dark and dramatic foliage, ornate wrought iron gates, and hidden secrets among the shadows, evoking a sense of gothic botanical beauty and intrigue.", 20 | "negative_prompt": "Non-foliage, ordinary, lacking drama, ungated, mundane." 21 | }, 22 | { 23 | "name": "Gothic Revival Portraiture", 24 | "prompt": "Craft a piece of Gothic Revival art featuring a dramatic portrait of a gothic-inspired character, with elaborate clothing, pale complexion, and a haunting expression, creating a sense of gothic elegance and melancholy.", 25 | "negative_prompt": "Non-portrait, ordinary, lacking drama, unelaborate, mundane." 26 | }, 27 | { 28 | "name": "Gothic Revival Castle", 29 | "prompt": "Create a stunning piece of Gothic Revival art showcasing a sprawling, imposing castle with towering turrets, gothic archways, and a sense of dark majesty, evoking a sense of gothic fortress grandeur and history.", 30 | "negative_prompt": "Non-castle, ordinary, lacking grandeur, unimposing, mundane." 31 | }, 32 | { 33 | "name": "Gothic Revival Cemetery", 34 | "prompt": "Craft a piece of Gothic Revival art depicting a misty cemetery with gothic tombstones, ancient trees, and ethereal apparitions, creating a sense of gothic mourning and otherworldly beauty.", 35 | "negative_prompt": "Non-cemetery, ordinary, lacking mist, unapparitional, mundane." 36 | }, 37 | { 38 | "name": "Gothic Revival Interior", 39 | "prompt": "Create a piece of Gothic Revival art showcasing the ornate interior of a gothic-inspired building, with intricate stained glass windows, vaulted ceilings, and dramatic lighting that highlights the architectural details, evoking a sense of gothic opulence and spirituality.", 40 | "negative_prompt": "Non-interior, ordinary, lacking ornateness, undramatic, mundane." 41 | }, 42 | { 43 | "name": "Gothic Revival Forest Ruins", 44 | "prompt": "Craft a piece of Gothic Revival art featuring the ruins of an ancient gothic structure hidden within a dark, overgrown forest, with moss-covered stones, tangled vines, and a sense of gothic history and decay.", 45 | "negative_prompt": "Non-ruins, ordinary, lacking darkness, unovergrown, mundane." 46 | }, 47 | { 48 | "name": "Gothic Revival Waterside Manor", 49 | "prompt": "Create a stunning piece of Gothic Revival art depicting a manor by the water's edge, with dramatic cliffs, crashing waves, and a sense of gothic romanticism and isolation, evoking a sense of gothic coastal beauty and solitude.", 50 | "negative_prompt": "Non-waterside, ordinary, lacking waves, unromantic, mundane." 51 | }, 52 | { 53 | "name": "Gothic Revival Village", 54 | "prompt": "Craft a piece of Gothic Revival art showcasing a gothic-inspired village with cobblestone streets, crooked cottages, and ominous shadows, creating a sense of gothic village life and mystery.", 55 | "negative_prompt": "Non-village, ordinary, lacking cobblestones, uncrooked, mundane." 56 | }, 57 | { 58 | "name": "Gothic Revival Lighthouse", 59 | "prompt": "Create a piece of Gothic Revival art featuring a towering, gothic-inspired lighthouse standing sentinel against the stormy sea, with crashing waves, rugged cliffs, and a sense of gothic maritime drama and heroism.", 60 | "negative_prompt": "Non-lighthouse, ordinary, lacking storm, unheroic, mundane." 61 | }, 62 | { 63 | "name": "Gothic Revival Ballroom", 64 | "prompt": "Craft a piece of Gothic Revival art showcasing an opulent ballroom adorned with intricate chandeliers, draped velvet curtains, and gothic arches, where dancers swirl in a surreal and elegant waltz, evoking a sense of gothic decadence and mystique.", 65 | "negative_prompt": "Non-ballroom, ordinary, lacking opulence, unadorned, mundane." 66 | }, 67 | { 68 | "name": "Gothic Revival Clock Tower", 69 | "prompt": "Create a stunning piece of Gothic Revival art featuring a majestic gothic clock tower with intricate clock faces, towering above a cityscape, with dramatic skies and a sense of gothic timekeeping and urban grandeur.", 70 | "negative_prompt": "Non-clock tower, ordinary, lacking majesty, untowering, mundane." 71 | }, 72 | { 73 | "name": "Gothic Revival Theater", 74 | "prompt": "Craft a piece of Gothic Revival art showcasing the interior of a gothic-inspired theater, with ornate balconies, dramatic stage lighting, and a performance in progress, evoking a sense of gothic theatricality and drama.", 75 | "negative_prompt": "Non-theater, ordinary, lacking ornateness, unlit, mundane." 76 | }, 77 | { 78 | "name": "Gothic Revival Bridge", 79 | "prompt": "Create a piece of Gothic Revival art featuring a gothic-inspired bridge spanning a dark, mysterious river, with intricate stone arches, looming shadows, and a sense of gothic transportation and crossing.", 80 | "negative_prompt": "Non-bridge, ordinary, lacking darkness, unarched, mundane." 81 | }, 82 | { 83 | "name": "Gothic Revival Crypt", 84 | "prompt": "Craft a piece of Gothic Revival art depicting a crypt with gothic arches, ancient tombs, and eerie candlelight, where mysteries are concealed in the shadows, creating a sense of gothic burial and enigma.", 85 | "negative_prompt": "Non-crypt, ordinary, lacking arches, unancient, mundane." 86 | }, 87 | { 88 | "name": "Gothic Revival Library", 89 | "prompt": "Create a stunning piece of Gothic Revival art showcasing the interior of a gothic-inspired library, with towering bookshelves, dimly lit reading nooks, and a sense of gothic knowledge and quiet contemplation.", 90 | "negative_prompt": "Non-library, ordinary, lacking books, unlit, mundane." 91 | }, 92 | { 93 | "name": "Gothic Revival Cemetery Gate", 94 | "prompt": "Craft a piece of Gothic Revival art featuring a gothic cemetery gate with intricate wrought ironwork, looming above a dark and foggy graveyard, creating a sense of gothic passage and somber reflection.", 95 | "negative_prompt": "Non-cemetery gate, ordinary, lacking wrought iron, unlooming, mundane." 96 | }, 97 | { 98 | "name": "Gothic Revival Chapel", 99 | "prompt": "Create a piece of Gothic Revival art showcasing a gothic-inspired chapel with stained glass windows, flickering candles, and an atmosphere of spiritual reverence, evoking a sense of gothic faith and serenity.", 100 | "negative_prompt": "Non-chapel, ordinary, lacking stained glass, unlit, mundane." 101 | }, 102 | { 103 | "name": "Gothic Revival Cityscape", 104 | "prompt": "Craft a piece of Gothic Revival art featuring a sprawling cityscape with towering gothic skyscrapers, winding streets, and dramatic lighting that accentuates the architectural details, evoking a sense of gothic urban grandeur and modernity.", 105 | "negative_prompt": "Non-cityscape, ordinary, lacking skyscrapers, unlit, mundane." 106 | }, 107 | { 108 | "name": "Gothic Revival Forest Chapel", 109 | "prompt": "Create a piece of Gothic Revival art showcasing a secluded chapel nestled within a dark, ancient forest, with dappled sunlight filtering through the trees, creating a sense of gothic serenity and natural beauty.", 110 | "negative_prompt": "Non-forest chapel, ordinary, lacking seclusion, unsunlit, mundane." 111 | }, 112 | { 113 | "name": "Gothic Revival Clockwork Cathedral", 114 | "prompt": "Craft a piece of Gothic Revival art depicting a cathedral where intricate clockwork mechanisms are integrated into the architecture, with moving gears, pendulums, and a sense of gothic timekeeping and innovation.", 115 | "negative_prompt": "Non-clockwork, ordinary, lacking mechanisms, unmoving, mundane." 116 | }, 117 | { 118 | "name": "Gothic Revival Art Gallery", 119 | "prompt": "Create a stunning piece of Gothic Revival art showcasing the interior of a gothic-inspired art gallery, with dramatic lighting, ornate frames, and a collection of surreal and gothic artworks, evoking a sense of gothic creativity and curation.", 120 | "negative_prompt": "Non-art gallery, ordinary, lacking lighting, unornate, mundane." 121 | }, 122 | { 123 | "name": "Gothic Revival Mountain Fortress", 124 | "prompt": "Craft a piece of Gothic Revival art featuring a mountain fortress with imposing gothic walls, perched high among craggy peaks, and a sense of gothic defense and elevation.", 125 | "negative_prompt": "Non-mountain fortress, ordinary, lacking walls, unperched, mundane." 126 | }, 127 | { 128 | "name": "Gothic Revival Seaside Abbey", 129 | "prompt": "Create a piece of Gothic Revival art showcasing an abbey by the sea, with towering cliffs, crashing waves, and a sense of gothic spirituality and coastal drama, evoking a sense of gothic monasticism and nature's power.", 130 | "negative_prompt": "Non-seaside abbey, ordinary, lacking cliffs, uncrashing, mundane." 131 | }, 132 | { 133 | "name": "Gothic Revival Opera House", 134 | "prompt": "Craft a piece of Gothic Revival art featuring the interior of a gothic-inspired opera house, with elaborate balconies, dramatic stage curtains, and a performance in progress, evoking a sense of gothic theatricality and artistic expression.", 135 | "negative_prompt": "Non-opera house, ordinary, lacking balconies, undramatic, mundane." 136 | }, 137 | { 138 | "name": "Gothic Revival Castle Ruins", 139 | "prompt": "Create a stunning piece of Gothic Revival art depicting the ruins of a gothic castle, overgrown with ivy, moss-covered stones, and a sense of gothic history and decay, evoking a sense of gothic abandonment and nostalgia.", 140 | "negative_prompt": "Non-castle ruins, ordinary, lacking ivy, unmossy, mundane." 141 | }, 142 | { 143 | "name": "Gothic Revival Underground Crypt", 144 | "prompt": "Craft a piece of Gothic Revival art showcasing an underground crypt with gothic arches and eerie candlelight, where secrets are buried in the depths, creating a sense of gothic mystery and subterranean beauty.", 145 | "negative_prompt": "Non-underground crypt, ordinary, lacking arches, unburied, mundane." 146 | }, 147 | { 148 | "name": "Gothic Revival Forest Bridge", 149 | "prompt": "Create a piece of Gothic Revival art featuring a bridge within a dark, ancient forest, with gothic arches, twisted roots, and a sense of gothic passage and natural enchantment, evoking a sense of gothic wilderness and crossing.", 150 | "negative_prompt": "Non-forest bridge, ordinary, lacking arches, untwisted, mundane." 151 | }, 152 | { 153 | "name": "Gothic Revival Steampunk Workshop", 154 | "prompt": "Craft a piece of Gothic Revival art showcasing a steampunk workshop with gothic aesthetics, intricate machinery, and a sense of gothic innovation and industrial creativity, evoking a sense of gothic steampunk fusion.", 155 | "negative_prompt": "Non-steampunk, ordinary, lacking machinery, uncreative, mundane." 156 | } 157 | ] -------------------------------------------------------------------------------- /sdxl_styles_iclandiccontemp.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | { 4 | "name": "none byIcelandicContemporaryArt", 5 | "prompt": "", 6 | "negative_prompt": "" 7 | }, 8 | { 9 | "name": "Icelandic_Landscape_Painting", 10 | "prompt": "Paintings of Icelandic landscapes, modern interpretation", 11 | "negative_prompt": "abstract, non-landscape, traditional painting" 12 | }, 13 | { 14 | "name": "Contemporary_Icelandic_Sculpture", 15 | "prompt": "Modern sculpture influenced by Icelandic culture and nature", 16 | "negative_prompt": "traditional, non-Icelandic, uninspired sculpture" 17 | }, 18 | { 19 | "name": "Icelandic_Arctic_Photography", 20 | "prompt": "Photography capturing the beauty of Icelandic Arctic regions", 21 | "negative_prompt": "urban, portrait, abstract, colorful photography" 22 | }, 23 | { 24 | "name": "Icelandic_Mythology_Illustration", 25 | "prompt": "Illustrations of Icelandic mythology and folklore, contemporary", 26 | "negative_prompt": "abstract, non-mythological, traditional illustrations" 27 | }, 28 | { 29 | "name": "Contemporary_Icelandic_Textile_Art", 30 | "prompt": "Modern textile art with Icelandic patterns and materials", 31 | "negative_prompt": "traditional, non-Icelandic, plain textile work" 32 | }, 33 | { 34 | "name": "Icelandic_Digital_Art", 35 | "prompt": "Digital art creations with Icelandic themes, modern", 36 | "negative_prompt": "traditional, non-digital, outdated art" 37 | }, 38 | { 39 | "name": "Contemporary_Icelandic_Fashion", 40 | "prompt": "Fashion design influenced by Icelandic aesthetics, trendy", 41 | "negative_prompt": "outdated, impractical, non-stylish fashion" 42 | }, 43 | { 44 | "name": "Icelandic_Urban_Street_Art", 45 | "prompt": "Street art in Icelandic urban settings, contemporary", 46 | "negative_prompt": "traditional, rural, uninspired street art" 47 | }, 48 | { 49 | "name": "Icelandic_Contemporary_Portraiture", 50 | "prompt": "Modern portraiture with Icelandic subjects and styles", 51 | "negative_prompt": "abstract, non-representational, traditional portraits" 52 | }, 53 | { 54 | "name": "Icelandic_Ecological_Art", 55 | "prompt": "Artworks addressing ecological issues in Iceland, contemporary", 56 | "negative_prompt": "unrelated topics, non-environmental art" 57 | }, 58 | { 59 | "name": "Contemporary_Icelandic_Light_Installation", 60 | "prompt": "Light installations inspired by Icelandic light phenomena", 61 | "negative_prompt": "dark, gloomy, traditional lighting installations" 62 | }, 63 | { 64 | "name": "Icelandic_Design_Furniture", 65 | "prompt": "Furniture design with Icelandic aesthetics, functional", 66 | "negative_prompt": "ornate, impractical, non-functional designs" 67 | }, 68 | { 69 | "name": "Icelandic_Contemporary_Poetry", 70 | "prompt": "Modern poetry exploring Icelandic themes and culture", 71 | "negative_prompt": "abstract, non-poetic, traditional poetry" 72 | }, 73 | { 74 | "name": "Contemporary_Icelandic_Installation", 75 | "prompt": "Contemporary art installations with Icelandic influences", 76 | "negative_prompt": "traditional, non-Icelandic, outdated installations" 77 | }, 78 | { 79 | "name": "Icelandic_Wildlife_Photography", 80 | "prompt": "Photography highlighting Icelandic wildlife in a modern context", 81 | "negative_prompt": "studio, non-wildlife, non-Icelandic animals" 82 | }, 83 | { 84 | "name": "Icelandic_Contemporary_Calligraphy", 85 | "prompt": "Modern calligraphy with Icelandic scripts and themes", 86 | "negative_prompt": "traditional, non-Icelandic, non-calligraphic" 87 | }, 88 | { 89 | "name": "Contemporary_Icelandic_Digital_Illustration", 90 | "prompt": "Digital illustrations showcasing Icelandic elements, modern", 91 | "negative_prompt": "traditional, non-digital, outdated art" 92 | }, 93 | { 94 | "name": "Icelandic_Street_Photography", 95 | "prompt": "Street photography capturing Icelandic urban scenes, contemporary", 96 | "negative_prompt": "studio, non-urban, non-Icelandic settings" 97 | }, 98 | { 99 | "name": "Contemporary_Icelandic_Graffiti_Art", 100 | "prompt": "Graffiti art with Icelandic themes in an urban context", 101 | "negative_prompt": "non-urban, non-Icelandic, uninspired street art" 102 | }, 103 | { 104 | "name": "Icelandic_Contemporary_Abstract_Sculpture", 105 | "prompt": "Modern abstract sculpture with Icelandic inspiration", 106 | "negative_prompt": "realistic, non-abstract, traditional sculpture" 107 | }, 108 | { 109 | "name": "Icelandic_Contemporary_Painting", 110 | "prompt": "Contemporary painting reflecting Icelandic aesthetics", 111 | "negative_prompt": "traditional, non-contemporary, outdated art" 112 | }, 113 | { 114 | "name": "Icelandic_Mixed_Media_Art", 115 | "prompt": "Mixed media art incorporating Icelandic elements, modern", 116 | "negative_prompt": "traditional, non-mixed media, outdated art" 117 | }, 118 | { 119 | "name": "Contemporary_Icelandic_Abstract_Photography", 120 | "prompt": "Abstract photography with Icelandic influences, modern", 121 | "negative_prompt": "realistic, non-abstract, traditional photography" 122 | }, 123 | { 124 | "name": "Icelandic_Contemporary_Architectural_Design", 125 | "prompt": "Architectural designs with Icelandic aesthetics, functional", 126 | "negative_prompt": "ornate, impractical, non-functional designs" 127 | }, 128 | { 129 | "name": "Icelandic_Contemporary_Collage", 130 | "prompt": "Modern collage art incorporating Icelandic elements", 131 | "negative_prompt": "traditional, non-Icelandic, basic collages" 132 | }, 133 | { 134 | "name": "Contemporary_Icelandic_Folk_Music_Performance", 135 | "prompt": "Live performances of contemporary Icelandic folk music", 136 | "negative_prompt": "modern music, non-folk, non-Icelandic" 137 | }, 138 | { 139 | "name": "Icelandic_Contemporary_Literature_Illustration", 140 | "prompt": "Illustrations for contemporary Icelandic literature", 141 | "negative_prompt": "traditional, non-Icelandic, outdated illustrations" 142 | }, 143 | { 144 | "name": "Icelandic_Contemporary_Artist_Sketch", 145 | "prompt": "Sketches by contemporary Icelandic artists", 146 | "negative_prompt": "traditional, non-Icelandic, outdated sketches" 147 | } 148 | ] 149 | -------------------------------------------------------------------------------- /sdxl_styles_impressionism.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byImpressionism", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Morning Light on the Seine", 9 | "prompt": "Capture the soft, early morning light reflecting on the gentle ripples of the Seine River, creating a tranquil and luminous atmosphere.", 10 | "negative_prompt": "Harsh shadows, overworked details, static, dull colors, lack of atmosphere." 11 | }, 12 | { 13 | "name": "Fields of Sunflowers in Bloom", 14 | "prompt": "Paint a field of sunflowers in full bloom under the radiant sun, with the vibrant yellow petals and their interaction with the light as the main focus.", 15 | "negative_prompt": "Flat colors, lack of light and shadow, overly detailed, static composition, unnatural colors." 16 | }, 17 | { 18 | "name": "A Rainy Day in the City", 19 | "prompt": "Capture the mood and atmosphere of a rainy day in the bustling city, with wet streets reflecting the lights and colors of the urban environment.", 20 | "negative_prompt": "Lack of mood, unrealistic colors, sharp edges, overly detailed, static composition." 21 | }, 22 | { 23 | "name": "Dappled Sunlight Through Trees", 24 | "prompt": "Convey the effect of dappled sunlight filtering through the leaves of a dense forest, creating intricate patterns of light and shadow on the ground.", 25 | "negative_prompt": "Flat lighting, lack of atmosphere, unrealistic colors, lack of texture, overly detailed." 26 | }, 27 | { 28 | "name": "A Parisian Cafe Scene", 29 | "prompt": "Capture the ambiance of a Parisian café, with people leisurely enjoying coffee and conversation at outdoor tables, emphasizing the play of light and shadow.", 30 | "negative_prompt": "Stiff and posed figures, lack of atmosphere, unnatural colors, overly detailed, lack of spontaneity." 31 | }, 32 | { 33 | "name": "Impressionistic Self-Portrait", 34 | "prompt": "Create a self-portrait in the Impressionist style, using loose brushwork and color to convey your mood and personality.", 35 | "negative_prompt": "Lack of character, flat colors, overly detailed, unrealistic portrayal, lack of emotional expression." 36 | }, 37 | { 38 | "name": "Harbor at Sunset", 39 | "prompt": "Paint a harbor scene at sunset, capturing the warm hues of the setting sun reflecting on the water, boats, and the surrounding environment.", 40 | "negative_prompt": "Lack of warmth, harsh lighting, overworked details, lack of atmosphere, static composition." 41 | }, 42 | { 43 | "name": "The Dance of Fireflies", 44 | "prompt": "Depict a magical night scene in a forest with fireflies illuminating the darkness, creating a sense of enchantment and wonder.", 45 | "negative_prompt": "Lack of magic, dull colors, unnatural lighting, overly detailed, lack of ambiance." 46 | }, 47 | { 48 | "name": "Ballet Rehearsal Backstage", 49 | "prompt": "Capture the backstage atmosphere of a ballet rehearsal, with dancers in various states of preparation and movement, focusing on the interplay of light and shadow.", 50 | "negative_prompt": "Lack of backstage atmosphere, static figures, lack of emotion, unrealistic colors, overworked details." 51 | }, 52 | { 53 | "name": "Water Lilies in a Pond", 54 | "prompt": "Paint a serene pond with water lilies in various stages of bloom, reflecting the changing light and colors of the sky.", 55 | "negative_prompt": "Flat water surface, lack of depth, dull colors, overworked details, lack of spontaneity." 56 | }, 57 | { 58 | "name": "Winter Morning Frost", 59 | "prompt": "Capture the frost-covered landscape of a winter morning, with the delicate frost crystals glistening in the soft morning light.", 60 | "negative_prompt": "Lack of frosty atmosphere, harsh lighting, lack of coldness, unrealistic colors, overly detailed." 61 | }, 62 | { 63 | "name": "Seaside Cliff at Dawn", 64 | "prompt": "Paint a dramatic seascape at dawn, with waves crashing against a rugged cliff, and the first light of day breaking through the clouds.", 65 | "negative_prompt": "Lack of drama, static waves, dull lighting, lack of atmosphere, overworked details." 66 | }, 67 | { 68 | "name": "Fields of Lavender in Provence", 69 | "prompt": "Convey the vibrant beauty of lavender fields in Provence, with rows of lavender plants stretching to the horizon, and the intoxicating scent of lavender in the air.", 70 | "negative_prompt": "Lack of fragrance, flat colors, lack of depth, unrealistic colors, overly detailed." 71 | }, 72 | { 73 | "name": "Children Playing by the Seashore", 74 | "prompt": "Capture the joy and spontaneity of children playing by the seashore, with the shimmering sea and the golden sands as the backdrop.", 75 | "negative_prompt": "Lack of playfulness, stiff figures, lack of spontaneity, unrealistic colors, overworked details." 76 | }, 77 | { 78 | "name": "Twilight in a Venetian Canal", 79 | "prompt": "Paint the enchanting twilight atmosphere in a Venetian canal, with gondolas gliding on the water and the soft glow of lanterns illuminating the scene.", 80 | "negative_prompt": "Lack of enchantment, harsh lighting, lack of ambiance, unrealistic colors, overly detailed." 81 | }, 82 | { 83 | "name": "The Blooming Cherry Blossoms", 84 | "prompt": "Convey the ephemeral beauty of cherry blossoms in full bloom, with delicate pink petals falling like confetti in the gentle breeze.", 85 | "negative_prompt": "Lack of delicacy, flat colors, lack of movement, unrealistic colors, overworked details." 86 | }, 87 | { 88 | "name": "Sunrise Over a Wheat Field", 89 | "prompt": "Capture the serene beauty of a wheat field at sunrise, with the golden wheat swaying in the breeze and the first light of day painting the landscape.", 90 | "negative_prompt": "Lack of serenity, harsh lighting, lack of warmth, unrealistic colors, overly detailed." 91 | }, 92 | { 93 | "name": "Boating on a Tranquil Pond", 94 | "prompt": "Paint the tranquility of a small pond, with a rowboat gently gliding on the calm water, surrounded by lush greenery and reflected skies.", 95 | "negative_prompt": "Lack of tranquility, static water, lack of reflection, unrealistic colors, overworked details." 96 | }, 97 | { 98 | "name": "Cafe Terrace at Night", 99 | "prompt": "Capture the nocturnal atmosphere of a bustling cafe terrace at night, with patrons seated at tables, under the soft glow of street lamps and starry skies.", 100 | "negative_prompt": "Lack of nocturnal atmosphere, harsh lighting, lack of ambiance, unrealistic colors, overly detailed." 101 | }, 102 | { 103 | "name": "A Country Path in Autumn", 104 | "prompt": "Convey the rustic beauty of a countryside path in autumn, with colorful leaves carpeting the ground and the soft, golden hues of the autumnal light.", 105 | "negative_prompt": "Lack of rustic charm, flat colors, lack of autumnal ambiance, unrealistic colors, overworked details." 106 | }, 107 | { 108 | "name": "Sunset Over a Tranquil Lake", 109 | "prompt": "Capture the serene beauty of a lake at sunset, with the fading light casting a warm, golden glow over the water and the surrounding landscape.", 110 | "negative_prompt": "Lack of serenity, harsh lighting, lack of warmth, unrealistic colors, overworked details." 111 | }, 112 | { 113 | "name": "A Parisian Street Cafe in Spring", 114 | "prompt": "Paint the lively atmosphere of a street cafe in Paris during springtime, with patrons enjoying coffee, colorful flowers in bloom, and the energy of the city.", 115 | "negative_prompt": "Lack of liveliness, static figures, lack of spring ambiance, unrealistic colors, overworked details." 116 | }, 117 | { 118 | "name": "A Field of Poppies in a Breeze", 119 | "prompt": "Convey the vibrant beauty of a field of poppies swaying in a gentle breeze, with their bright red petals dancing in the wind and the play of light and shadow.", 120 | "negative_prompt": "Lack of vibrancy, static flowers, lack of movement, unrealistic colors, overworked details." 121 | }, 122 | { 123 | "name": "A Moonlit Forest Glade", 124 | "prompt": "Capture the enchantment of a moonlit forest glade, with dappled moonlight filtering through the trees, illuminating the magical scene.", 125 | "negative_prompt": "Lack of enchantment, harsh lighting, lack of ambiance, unrealistic colors, overworked details." 126 | }, 127 | { 128 | "name": "A Canal in Venice at Dusk", 129 | "prompt": "Paint the romantic ambiance of a Venetian canal at dusk, with gondolas gliding on the water, the soft glow of lanterns, and the reflection of buildings in the canal.", 130 | "negative_prompt": "Lack of romance, static figures, lack of dusk ambiance, unrealistic colors, overworked details." 131 | }, 132 | { 133 | "name": "A Garden in Full Bloom", 134 | "prompt": "Convey the abundance of a garden in full bloom, with a riot of colorful flowers, bees buzzing, and the lush foliage bathed in sunlight.", 135 | "negative_prompt": "Lack of abundance, static flowers, lack of vitality, unrealistic colors, overworked details." 136 | }, 137 | { 138 | "name": "The Eiffel Tower at Night", 139 | "prompt": "Capture the iconic Eiffel Tower illuminated at night, with its intricate ironwork and the shimmering lights of the city of Paris in the background.", 140 | "negative_prompt": "Lack of illumination, static structure, lack of nighttime ambiance, unrealistic colors, overworked details." 141 | }, 142 | { 143 | "name": "A Coastal Cliff at Sunrise", 144 | "prompt": "Paint the dramatic beauty of a coastal cliff at sunrise, with crashing waves, a fiery sky, and the rugged landscape bathed in the first light of day.", 145 | "negative_prompt": "Lack of drama, static waves, lack of sunrise ambiance, unrealistic colors, overworked details." 146 | }, 147 | { 148 | "name": "A Peaceful Meadow in Summer", 149 | "prompt": "Convey the tranquility of a summer meadow, with wildflowers, butterflies, and a gentle stream winding through the idyllic landscape.", 150 | "negative_prompt": "Lack of tranquility, static meadow, lack of summer ambiance, unrealistic colors, overworked details." 151 | }, 152 | { 153 | "name": "A Lakeside Cabin in Autumn", 154 | "prompt": "Capture the cozy charm of a lakeside cabin surrounded by colorful autumn foliage, with the reflection of the cabin and the trees in the still water of the lake.", 155 | "negative_prompt": "Lack of coziness, static cabin, lack of autumn ambiance, unrealistic colors, overworked details." 156 | } 157 | ] -------------------------------------------------------------------------------- /sdxl_styles_irishfolkart.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byIrishFolkArt", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Irish Cottage Reverie", 9 | "prompt": "Paint a charming Irish countryside cottage nestled among rolling green hills, adorned with traditional thatched roofs and vibrant gardens, evoking the warmth and coziness of rural Ireland.", 10 | "negative_prompt": "Absence of cottage scenery, lack of traditional Irish elements." 11 | }, 12 | { 13 | "name": "Irish Mythological Epic", 14 | "prompt": "Illustrate a scene from Irish mythology, bringing to life legendary tales of Celtic gods, mythical creatures, and heroic figures in a style that captures the essence of Irish folklore.", 15 | "negative_prompt": "Lack of mythological elements, absence of storytelling tradition." 16 | }, 17 | { 18 | "name": "Irish Coastal Seascapes", 19 | "prompt": "Capture the rugged beauty of Ireland's coastal landscapes, where cliffs meet the roaring sea, and ancient castles stand as sentinels against the relentless waves, reflecting the raw nature of the Irish coast.", 20 | "negative_prompt": "Ordinary coastal scenery, lack of ruggedness." 21 | }, 22 | { 23 | "name": "Irish Trad Music Session", 24 | "prompt": "Illustrate a lively traditional Irish music session in a cozy pub, where musicians and dancers come together to celebrate the rich musical heritage of Ireland, capturing the spirit of the session.", 25 | "negative_prompt": "Lack of music and dance elements, absence of Irish cultural motifs." 26 | }, 27 | { 28 | "name": "Irish Storyteller's Hearth", 29 | "prompt": "Create an inviting scene around a hearth where an Irish storyteller weaves tales of ancient legends and folklore to captivated listeners, embodying the oral storytelling tradition of Ireland.", 30 | "negative_prompt": "Absence of hearth scene, lack of storytelling ambiance." 31 | }, 32 | { 33 | "name": "Irish Wildlife Harmony", 34 | "prompt": "Celebrate Ireland's diverse wildlife in a harmonious composition, featuring native animals and birds set against lush natural backdrops, capturing the delicate balance of nature in Irish ecosystems.", 35 | "negative_prompt": "Lack of wildlife, absence of natural harmony." 36 | }, 37 | { 38 | "name": "Irish Claddagh Embrace", 39 | "prompt": "Depict the iconic Claddagh symbol as a centerpiece, with two hands holding a heart adorned with a crown, symbolizing love, friendship, and loyalty, and incorporate intricate Irish design elements.", 40 | "negative_prompt": "Absence of Claddagh symbolism, lack of Irish design motifs." 41 | }, 42 | { 43 | "name": "Irish Dancing Celebration", 44 | "prompt": "Capture the exuberance and energy of Irish dance in a dynamic and colorful composition, featuring dancers in traditional costumes performing intricate steps and lively jigs.", 45 | "negative_prompt": "Lack of dance elements, absence of traditional Irish dance." 46 | }, 47 | { 48 | "name": "Irish Landscape Tapestry", 49 | "prompt": "Craft a tapestry-like composition showcasing diverse Irish landscapes, from serene lakes to lush valleys, combining them into a visual narrative that honors the natural beauty of Ireland.", 50 | "negative_prompt": "Absence of diverse landscapes, lack of narrative cohesion." 51 | }, 52 | { 53 | "name": "Irish Celtic Cross Devotion", 54 | "prompt": "Pay homage to the iconic Irish Celtic cross, adorned with intricate Celtic knotwork and religious symbolism, embodying the deep spiritual reverence associated with these timeless monuments.", 55 | "negative_prompt": "Lack of Celtic cross, absence of religious symbolism." 56 | }, 57 | { 58 | "name": "Irish Traditional Crafts Showcase", 59 | "prompt": "Highlight the craftsmanship of traditional Irish artisans, featuring intricate handwoven textiles, pottery, and other folk arts that reflect the dedication and skill of Irish crafters.", 60 | "negative_prompt": "Absence of traditional crafts, lack of artisanal elements." 61 | }, 62 | { 63 | "name": "Irish Fairytale Enchantment", 64 | "prompt": "Evoke the enchantment of Irish folklore by illustrating a scene from a beloved Irish fairytale, filled with magical creatures, ancient forests, and the whimsical essence of Irish storytelling.", 65 | "negative_prompt": "Lack of fairytale elements, absence of magical atmosphere." 66 | }, 67 | { 68 | "name": "Irish Castle Dreamscape", 69 | "prompt": "Craft a surreal and whimsical dreamscape featuring an Irish castle amidst a fantastical landscape, where reality blends with imagination, capturing the mystique of Irish historical sites.", 70 | "negative_prompt": "Ordinary castle scenery, lack of surreal elements." 71 | }, 72 | { 73 | "name": "Irish Folk Music Journey", 74 | "prompt": "Take viewers on a visual journey through the history of Irish folk music, showcasing iconic instruments, musicians, and milestones that have shaped the rich musical heritage of Ireland.", 75 | "negative_prompt": "Lack of music history elements, absence of Irish musical motifs." 76 | }, 77 | { 78 | "name": "Irish Bogland Serenity", 79 | "prompt": "Capture the tranquil and mystical beauty of Irish boglands, featuring serene waters, unique flora, and the serene ambiance of these ancient and ecologically vital landscapes.", 80 | "negative_prompt": "Lack of bogland scenery, absence of serenity." 81 | }, 82 | { 83 | "name": "Irish Whimsical Seafolk", 84 | "prompt": "Illustrate a whimsical underwater scene populated by Irish seafolk and mermaids, blending elements of Irish mythology with playful and imaginative aquatic characters.", 85 | "negative_prompt": "Absence of seafolk, lack of underwater whimsy." 86 | }, 87 | { 88 | "name": "Irish Rural Farmstead", 89 | "prompt": "Paint a picturesque Irish rural farmstead with rolling pastures, grazing animals, and quaint cottages, capturing the idyllic simplicity and charm of Ireland's countryside.", 90 | "negative_prompt": "Lack of farmstead scenery, absence of rural elements." 91 | }, 92 | { 93 | "name": "Irish Lighthouse Guardians", 94 | "prompt": "Depict the stoic guardianship of Irish lighthouses amidst stormy coastal weather, emphasizing the resilience and importance of these maritime beacons in Irish history.", 95 | "negative_prompt": "Absence of lighthouse scene, lack of stormy weather." 96 | }, 97 | { 98 | "name": "Irish Traditions at the Crossroads", 99 | "prompt": "Illustrate a vibrant scene at an Irish crossroads dance, where traditional music, dance, and social gatherings converge, showcasing the cultural heart of rural Ireland.", 100 | "negative_prompt": "Lack of crossroads dance, absence of traditional Irish festivities." 101 | }, 102 | { 103 | "name": "Irish Celtic Spirals of Time", 104 | "prompt": "Explore the concept of time through intricate Celtic spiral patterns, symbolizing the cyclical nature of existence and the eternal connection between past, present, and future.", 105 | "negative_prompt": "Absence of Celtic spiral motifs, lack of time symbolism." 106 | }, 107 | { 108 | "name": "Irish Cultural Traditions Mosaic", 109 | "prompt": "Create a vibrant mosaic of Irish cultural traditions, featuring elements such as dance, music, language, and folklore in a harmonious and colorful composition.", 110 | "negative_prompt": "Lack of cultural elements, absence of mosaic design." 111 | }, 112 | { 113 | "name": "Irish Poetry and Literature Tribute", 114 | "prompt": "Pay tribute to the rich literary heritage of Ireland by illustrating scenes and characters from famous Irish poems, stories, and plays in a style that captures the essence of Irish literature.", 115 | "negative_prompt": "Lack of literary references, absence of storytelling ambiance." 116 | }, 117 | { 118 | "name": "Irish Harvest Celebration", 119 | "prompt": "Illustrate a festive Irish harvest celebration, featuring farmers, bountiful crops, and traditional rituals that mark the culmination of hard work and the abundance of the season.", 120 | "negative_prompt": "Absence of harvest celebration, lack of agricultural motifs." 121 | }, 122 | { 123 | "name": "Irish Bog Myths and Legends", 124 | "prompt": "Explore the mystical myths and legends associated with Irish bogs, depicting legendary creatures, ancient artifacts, and the eerie allure of these unique landscapes.", 125 | "negative_prompt": "Lack of bog myths, absence of mystical elements." 126 | }, 127 | { 128 | "name": "Irish River Folklore Enchantment", 129 | "prompt": "Craft a scene inspired by Irish river folklore, featuring ethereal river spirits, water nymphs, and enchanting stories that highlight the deep spiritual connection between the Irish and their rivers.", 130 | "negative_prompt": "Absence of river folklore, lack of aquatic enchantment." 131 | }, 132 | { 133 | "name": "Irish Emerald Isle Fantasy", 134 | "prompt": "Create a fantastical version of the Emerald Isle, where lush forests, mythical creatures, and whimsical landscapes come to life, embodying the magical and dreamlike aspects of Irish folklore.", 135 | "negative_prompt": "Lack of fantastical elements, absence of whimsical landscapes." 136 | }, 137 | { 138 | "name": "Irish St. Patrick's Day Parade", 139 | "prompt": "Illustrate a lively St. Patrick's Day parade in a joyful and colorful style, featuring marching bands, leprechauns, shamrocks, and the vibrant spirit of this beloved Irish celebration.", 140 | "negative_prompt": "Lack of St. Patrick's Day elements, absence of parade festivities." 141 | }, 142 | { 143 | "name": "Irish Castle Ruins Reverie", 144 | "prompt": "Paint a scene featuring the majestic ruins of an Irish castle amidst a serene countryside, capturing the romantic and historical allure of these ancient structures.", 145 | "negative_prompt": "Absence of castle ruins, lack of historical ambiance." 146 | }, 147 | { 148 | "name": "Irish Seafaring Tales", 149 | "prompt": "Illustrate tales of Irish seafarers, adventurers, and sailors, depicting their epic journeys, encounters with sea creatures, and the maritime traditions that define Ireland's seafaring legacy.", 150 | "negative_prompt": "Lack of seafaring themes, absence of maritime elements." 151 | }, 152 | { 153 | "name": "Irish Celtic Crossroads Puzzles", 154 | "prompt": "Create intricate Celtic knotwork puzzles inspired by the symbolism of Irish crossroads, challenging viewers to unlock the hidden meanings and connections within these enigmatic designs.", 155 | "negative_prompt": "Absence of Celtic puzzles, lack of crossroads symbolism." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_lighting.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byLighting", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Ambient", 9 | "prompt": "ambient {prompt}", 10 | "negative_prompt": "spotlight" 11 | }, 12 | { 13 | "name": "Artificial", 14 | "prompt": "artificial {prompt}", 15 | "negative_prompt": "natural" 16 | }, 17 | { 18 | "name": "Backlit", 19 | "prompt": "backlit {prompt}", 20 | "negative_prompt": "frontlit" 21 | }, 22 | { 23 | "name": "Diffused", 24 | "prompt": "diffused {prompt}", 25 | "negative_prompt": "direct" 26 | }, 27 | { 28 | "name": "Flash", 29 | "prompt": "flash {prompt}", 30 | "negative_prompt": "natural" 31 | }, 32 | { 33 | "name": "Harsh", 34 | "prompt": "harsh {prompt}", 35 | "negative_prompt": "soft" 36 | }, 37 | { 38 | "name": "Natural", 39 | "prompt": "natural {prompt}", 40 | "negative_prompt": "artificial" 41 | }, 42 | { 43 | "name": "SideLit", 44 | "prompt": "sidelit {prompt}", 45 | "negative_prompt": "backlit" 46 | }, 47 | { 48 | "name": "Soft", 49 | "prompt": "soft {prompt}", 50 | "negative_prompt": "harsh" 51 | }, 52 | { 53 | "name": "Spotlight", 54 | "prompt": "spotlight {prompt}", 55 | "negative_prompt": "ambient" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_mc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byMythical Creatures", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "The Phoenix of Eternal Flame", 9 | "prompt": "A majestic bird with iridescent feathers that resurrects from its ashes, symbolizing rebirth and immortality.", 10 | "negative_prompt": "Fragile, colorless, flightless, fragile, mundane." 11 | }, 12 | { 13 | "name": "The Enchanted Forest Nymph", 14 | "prompt": "A graceful woodland spirit who guards ancient groves and has the power to heal and protect the forest and its creatures.", 15 | "negative_prompt": "Distrustful, reclusive, powerless, ghostly, fading." 16 | }, 17 | { 18 | "name": "The Leviathan of the Abyss", 19 | "prompt": "A colossal sea serpent that dwells in the darkest depths of the ocean, feared for its immense power and ancient wisdom.", 20 | "negative_prompt": "Malformed, motionless, feeble, inanimate, insignificant." 21 | }, 22 | { 23 | "name": "The Sphinx of Riddles", 24 | "prompt": "A creature with the body of a lion, wings of an eagle, and the head of a human, known for challenging travelers with perplexing riddles.", 25 | "negative_prompt": "Confused, transparent, muted, uninspiring, predictable." 26 | }, 27 | { 28 | "name": "The Faerie Court of Dreams", 29 | "prompt": "A realm inhabited by ethereal beings who create dreams and bring enchantment to the mortal world, Woodland, Mystical, Dreams, Glamour, Imagination", 30 | "negative_prompt": "Fading, mundane, forgotten, elusive, colorless." 31 | }, 32 | { 33 | "name": "The Chimera, Guardian of the Labyrinth", 34 | "prompt": "A fearsome creature with the body of a lion, the head of a goat, and the tail of a serpent, guarding the entrance to a treacherous maze.", 35 | "negative_prompt": "Powerless, fragmented, unstable, dissonant, shattered." 36 | }, 37 | { 38 | "name": "The Griffin of Valor", 39 | "prompt": "A noble and majestic creature with the body of a lion and the head of an eagle, symbolizing courage and honor.", 40 | "negative_prompt": "Cowardly, misshapen, insignificant, timid, uninspiring." 41 | }, 42 | { 43 | "name": "The Banshee, Wailer of Fate", 44 | "prompt": "A female spirit known for her mournful wails that foretell impending doom and tragedy.", 45 | "negative_prompt": "Silent, unfeeling, insignificant, ignored, fading." 46 | }, 47 | { 48 | "name": "The Pegasus, Steed of the Heavens", 49 | "prompt": "A winged horse that soars through the skies, representing freedom, grace, and untamed beauty.", 50 | "negative_prompt": "Earthbound, clumsy, grounded, mundane, lifeless." 51 | }, 52 | { 53 | "name": "The Kraken, Terror of the Deep", 54 | "prompt": "A monstrous sea creature with tentacles that drags ships and sailors to the depths, shrouded in legends of the abyss.", 55 | "negative_prompt": "Harmless, dormant, transparent, weak, irrelevant." 56 | }, 57 | { 58 | "name": "The Seraphim, Celestial Guardians", 59 | "prompt": "Majestic beings with multiple wings and fiery auras, tasked with safeguarding the divine realms from dark forces.", 60 | "negative_prompt": "Fallen, corrupted, forsaken, powerless, dimly lit." 61 | }, 62 | { 63 | "name": "The Gorgon, Petrifying Horror", 64 | "prompt": "A monstrous creature with snakes for hair, capable of turning anyone who gazes upon it into stone with a single look.", 65 | "negative_prompt": "Blind, feeble, harmless, transparent, pitiful." 66 | }, 67 | { 68 | "name": "The Thunderbird, Stormbringer of the Skies", 69 | "prompt": "A colossal bird with wings that command the thunder and lightning, revered as a harbinger of storms and renewal.", 70 | "negative_prompt": "Caged, grounded, silenced, dormant, mundane." 71 | }, 72 | { 73 | "name": "The Kitsune, Shape-shifting Trickster", 74 | "prompt": "Cunning fox spirits from Japanese folklore, known for their shape-shifting abilities and mischievous pranks.", 75 | "negative_prompt": "Exposed, powerless, mundane, predictable, transparent." 76 | }, 77 | { 78 | "name": "The Minotaur, Maze Dweller", 79 | "prompt": "A fearsome creature with the body of a human and the head of a bull, residing in labyrinthine mazes, guarding hidden treasures.", 80 | "negative_prompt": "Lost, confused, aimless, powerless, uninspiring." 81 | }, 82 | { 83 | "name": "The Valkyrie, Choosers of the Slain", 84 | "prompt": "Noble warrior maidens from Norse mythology, who guide fallen heroes to the afterlife's grand halls in Valhalla.", 85 | "negative_prompt": "Banished, forgotten, powerless, fading, aimless." 86 | }, 87 | { 88 | "name": "The Manticore, Dreaded Hunter", 89 | "prompt": "A creature with the body of a lion, a human face, and rows of sharp teeth, known for its deadly hunting prowess and love for human flesh.", 90 | "negative_prompt": "Hungry, feeble, impotent, cowardly, inconspicuous." 91 | }, 92 | { 93 | "name": "The Dryad, Guardian of the Forest", 94 | "prompt": "A gentle woodland spirit, inseparably linked to a specific tree, who protects her forest with fierce devotion.", 95 | "negative_prompt": "Withering, powerless, displaced, silent, forgotten." 96 | }, 97 | { 98 | "name": "The Naiad, River Nymph of Tranquility", 99 | "prompt": "A serene water nymph residing in rivers and streams, bringing calmness and tranquility to her watery domain.", 100 | "negative_prompt": "Stagnant, powerless, desolate, faded, unnoticed." 101 | }, 102 | { 103 | "name": "The Roc, King of the Avians", 104 | "prompt": "A colossal and legendary bird of prey, capable of carrying off elephants, known for its majestic and awe-inspiring presence.", 105 | "negative_prompt": "Grounded, helpless, flightless, obscure, muted." 106 | }, 107 | { 108 | "name": "The Unicorn's Elegance", 109 | "prompt": "A gentle and majestic horse-like creature with a single spiral horn on its forehead, symbolizing purity and grace.", 110 | "negative_prompt": "Ungraceful, ordinary, lacking purity, unremarkable, insignificant." 111 | }, 112 | { 113 | "name": "The Dragon's Hoard", 114 | "prompt": "A fearsome and intelligent fire-breathing dragon known for guarding vast treasures in its lair, representing both power and greed.", 115 | "negative_prompt": "Non-guarding, ordinary, lacking treasures, unremarkable, insignificant." 116 | }, 117 | { 118 | "name": "The Mermaid's Melody", 119 | "prompt": "A beautiful aquatic creature with the upper body of a human and the lower body of a fish, captivating sailors with enchanting songs and luring them beneath the waves.", 120 | "negative_prompt": "Non-captivating, ordinary, lacking songs, unremarkable, insignificant." 121 | }, 122 | { 123 | "name": "The Thunderbird's Roar", 124 | "prompt": "A giant bird of Native American folklore with the power to create thunderstorms, representing the awe-inspiring forces of nature.", 125 | "negative_prompt": "Non-thunderous, ordinary, lacking storms, unremarkable, insignificant." 126 | }, 127 | { 128 | "name": "The Valkyrie's Valor", 129 | "prompt": "A divine warrior maiden from Norse mythology, choosing the bravest fallen warriors to join the ranks of the gods in Valhalla, embodying valor and honor.", 130 | "negative_prompt": "Unvalorous, ordinary, lacking honor, unremarkable, insignificant." 131 | }, 132 | { 133 | "name": "The Yeti's Elusiveness", 134 | "prompt": "A legendary ape-like creature said to inhabit the Himalayan mountains, known for its elusive nature and sightings in the snowy wilderness.", 135 | "negative_prompt": "Non-elusive, ordinary, lacking sightings, unremarkable, insignificant." 136 | }, 137 | { 138 | "name": "The Basilisk's Deadly Gaze", 139 | "prompt": "A serpent-like creature with a venomous glare that can kill with a single glance, embodying the danger and terror of the unknown.", 140 | "negative_prompt": "Non-deadly, ordinary, lacking danger, unremarkable, insignificant." 141 | }, 142 | { 143 | "name": "The Kappa's Watery Mischief", 144 | "prompt": "A mischievous water creature from Japanese folklore, known for playing pranks and tricks near bodies of water, both delighting and unsettling humans.", 145 | "negative_prompt": "Non-mischievous, ordinary, lacking pranks, unremarkable, insignificant." 146 | }, 147 | { 148 | "name": "The Chupacabra's Bloodlust", 149 | "prompt": "A cryptid creature from Latin American folklore said to drink the blood of livestock, striking fear into the hearts of rural communities.", 150 | "negative_prompt": "Non-bloodthirsty, ordinary, lacking livestock, unremarkable, insignificant." 151 | }, 152 | { 153 | "name": "The Wendigo's Hunger", 154 | "prompt": "A malevolent creature from Algonquian folklore, representing cannibalistic greed and the horrors of wilderness survival.", 155 | "negative_prompt": "Non-cannibalistic, ordinary, lacking hunger, unremarkable, insignificant." 156 | }, 157 | { 158 | "name": "The Manticore's Ferocity", 159 | "prompt": "A legendary beast with the body of a lion, a human head, and a tail full of deadly spines, known for its ferocious nature and fearsome appearance.", 160 | "negative_prompt": "Non-ferocious, ordinary, lacking spines, unremarkable, insignificant." 161 | }, 162 | { 163 | "name": "The Nymph's Enchantment", 164 | "prompt": "A beautiful and ethereal female spirit of nature, associated with specific natural features and capable of enchanting those who encounter her.", 165 | "negative_prompt": "Unenchanting, ordinary, lacking nature, unremarkable, insignificant." 166 | }, 167 | { 168 | "name": "The Jinn's Wish-Granting", 169 | "prompt": "A supernatural creature from Middle Eastern folklore, capable of granting wishes to those who summon and appease it, embodying the power of desire and temptation.", 170 | "negative_prompt": "Non-wish-granting, ordinary, lacking wishes, unremarkable, insignificant." 171 | }, 172 | { 173 | "name": "The Leshy's Forest Mischief", 174 | "prompt": "A mischievous woodland spirit from Slavic mythology, known for leading travelers astray in the forest and causing them to become lost.", 175 | "negative_prompt": "Non-mischievous, ordinary, lacking mischief, unremarkable, insignificant." 176 | }, 177 | { 178 | "name": "The Tengu's Martial Prowess", 179 | "prompt": "A bird-like creature from Japanese folklore, skilled in martial arts and known for both protecting and tormenting humans in the mountains.", 180 | "negative_prompt": "Non-skilled, ordinary, lacking martial arts, unremarkable, insignificant." 181 | }, 182 | { 183 | "name": "The Thunder Horse's Storm Control", 184 | "prompt": "A divine horse from Chinese mythology, capable of controlling thunder and rain, symbolizing the power and unpredictability of the natural world.", 185 | "negative_prompt": "Non-controlling, ordinary, lacking thunder, unremarkable, insignificant." 186 | }, 187 | { 188 | "name": "The Roc's Soaring Majesty", 189 | "prompt": "A colossal bird of prey from Arabian mythology, capable of carrying elephants in its talons and representing the awe-inspiring forces of the sky.", 190 | "negative_prompt": "Non-soaring, ordinary, lacking majesty, unremarkable, insignificant." 191 | }, 192 | { 193 | "name": "The Bunyip's Aquatic Mystery", 194 | "prompt": "A mysterious aquatic creature from Australian Aboriginal mythology, known for lurking in swamps and waterways, embodying the enigmas of the deep waters.", 195 | "negative_prompt": "Non-mysterious, ordinary, lacking aquatic traits, unremarkable, insignificant." 196 | }, 197 | { 198 | "name": "The Chimalli's Shield of Protection", 199 | "prompt": "A protective spirit from Aztec mythology, associated with shields and safeguarding warriors in battle, symbolizing defense and resilience.", 200 | "negative_prompt": "Non-protective, ordinary, lacking shields, unremarkable, insignificant." 201 | }, 202 | { 203 | "name": "The Ifrit's Fiery Wrath", 204 | "prompt": "A powerful and malevolent fire demon from Middle Eastern folklore, capable of causing destruction and chaos, embodying the destructive power of fire.", 205 | "negative_prompt": "Non-destructive, ordinary, lacking fire, unremarkable, insignificant." 206 | } 207 | ] -------------------------------------------------------------------------------- /sdxl_styles_mood.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byMood", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Aggressive", 9 | "prompt": "aggressive {prompt}", 10 | "negative_prompt": "calm" 11 | }, 12 | { 13 | "name": "Calm", 14 | "prompt": "calm {prompt}", 15 | "negative_prompt": "energetic" 16 | }, 17 | { 18 | "name": "Chaotic", 19 | "prompt": "chaotic {prompt}", 20 | "negative_prompt": "serene" 21 | }, 22 | { 23 | "name": "Energetic", 24 | "prompt": "energetic {prompt}", 25 | "negative_prompt": "relaxed" 26 | }, 27 | { 28 | "name": "Happy", 29 | "prompt": "happy {prompt}", 30 | "negative_prompt": "sad" 31 | }, 32 | { 33 | "name": "Mysterious", 34 | "prompt": "mysterious {prompt}", 35 | "negative_prompt": "clear" 36 | }, 37 | { 38 | "name": "Relaxed", 39 | "prompt": "relaxed {prompt}", 40 | "negative_prompt": "excited" 41 | }, 42 | { 43 | "name": "Romantic", 44 | "prompt": "romantic {prompt}", 45 | "negative_prompt": "depressed" 46 | }, 47 | { 48 | "name": "Sad", 49 | "prompt": "sad {prompt}", 50 | "negative_prompt": "happy" 51 | }, 52 | { 53 | "name": "Serene", 54 | "prompt": "serene {prompt}", 55 | "negative_prompt": "chaotic" 56 | }, 57 | { 58 | "name": "Ethereal Tranquility", 59 | "prompt": "A serene and otherworldly mood where soft, ambient music plays, and the world seems to slow down, evoking a sense of peace and relaxation.", 60 | "negative_prompt": "Untranquil, ordinary, lacking music, unrelaxing, mundane." 61 | }, 62 | { 63 | "name": "Enigmatic Wonder", 64 | "prompt": "A mysterious and awe-inspiring mood where the world is filled with enigmatic phenomena and hidden wonders waiting to be uncovered, inspiring curiosity and fascination.", 65 | "negative_prompt": "Unenigmatic, ordinary, lacking wonders, uncurious, mundane." 66 | }, 67 | { 68 | "name": "Whimsical Delight", 69 | "prompt": "A playful and lighthearted mood where the world is filled with whimsical characters, magical creatures, and joyful surprises, inviting laughter and joy.", 70 | "negative_prompt": "Unwhimsical, ordinary, lacking playfulness, unjoyful, mundane." 71 | }, 72 | { 73 | "name": "Melancholic Reflection", 74 | "prompt": "A contemplative and melancholic mood where the world is bathed in soft, muted colors, and a sense of nostalgia and introspection fills the air.", 75 | "negative_prompt": "Unmelancholic, ordinary, lacking reflection, unreflective, mundane." 76 | }, 77 | { 78 | "name": "Dark, Brooding Atmosphere", 79 | "prompt": "A moody and ominous mood where shadows loom large, and a sense of foreboding and tension hangs in the air, creating a sense of unease and suspense.", 80 | "negative_prompt": "Unbrooding, ordinary, lacking darkness, ununeasy, mundane." 81 | }, 82 | { 83 | "name": "Joyful Celebration", 84 | "prompt": "A festive and celebratory mood where the world is alive with music, dancing, and laughter, evoking a sense of joy and camaraderie.", 85 | "negative_prompt": "Unjoyful, ordinary, lacking celebration, uncamaraderie, mundane." 86 | }, 87 | { 88 | "name": "Surreal Euphoria", 89 | "prompt": "A surreal and euphoric mood where the boundaries of reality are blurred, and a sense of euphoria and elation fills the world, creating a dreamlike and euphoric experience.", 90 | "negative_prompt": "Uneuphoric, ordinary, lacking surrealism, undreamlike, mundane." 91 | }, 92 | { 93 | "name": "Hushed Reverence", 94 | "prompt": "A reverent and tranquil mood where silence reigns, and the world is filled with a sense of awe and sacredness, inviting contemplation and meditation.", 95 | "negative_prompt": "Unreverent, ordinary, lacking silence, unawe-inspiring, mundane." 96 | }, 97 | { 98 | "name": "Tense, Suspenseful Ambiance", 99 | "prompt": "A tense and suspenseful mood where every moment is charged with anticipation and uncertainty, creating a sense of adrenaline and intrigue.", 100 | "negative_prompt": "Untense, ordinary, lacking suspense, unintriguing, mundane." 101 | }, 102 | { 103 | "name": "Dreamy Serenity", 104 | "prompt": "A dreamlike and serene mood where the world is bathed in soft, pastel colors, and a sense of calm and tranquility pervades, creating a soothing and dreamy atmosphere.", 105 | "negative_prompt": "Undreamy, ordinary, lacking serenity, unsoothing, mundane." 106 | }, 107 | { 108 | "name": "Chaos and Discord", 109 | "prompt": "A chaotic and discordant mood where the world is filled with cacophonous sounds and jarring visuals, creating a sense of disarray and confusion.", 110 | "negative_prompt": "Unchaotic, ordinary, lacking discord, unharmonious, mundane." 111 | }, 112 | { 113 | "name": "Enchanted Whispers", 114 | "prompt": "A mystical and enchanting mood where the world is hushed, and whispers of magic and wonder are carried on the wind, igniting a sense of enchantment and mystery.", 115 | "negative_prompt": "Unenchanted, ordinary, lacking whispers, unmysterious, mundane." 116 | }, 117 | { 118 | "name": "Frenetic Energy", 119 | "prompt": "A high-energy and frenetic mood where the world pulsates with vitality and motion, creating a sense of exhilaration and excitement.", 120 | "negative_prompt": "Unfrenetic, ordinary, lacking energy, unexciting, mundane." 121 | }, 122 | { 123 | "name": "Eternal Twilight", 124 | "prompt": "A perpetual twilight mood where the world is bathed in soft, muted light, evoking a sense of timeless serenity and contemplation.", 125 | "negative_prompt": "Untwilight, ordinary, lacking light, untimeless, mundane." 126 | }, 127 | { 128 | "name": "Abyssal Silence", 129 | "prompt": "A profound and eerie mood of deep silence, where the world is shrouded in darkness and an overwhelming sense of isolation prevails.", 130 | "negative_prompt": "Unsilenced, ordinary, lacking darkness, uninhabited, mundane." 131 | }, 132 | { 133 | "name": "Gothic Elegance", 134 | "prompt": "A mood of dark and gothic elegance, where the world is adorned with intricate architecture, opulent decor, and a sense of brooding beauty.", 135 | "negative_prompt": "Ungothic, ordinary, lacking elegance, unbeguiling, mundane." 136 | }, 137 | { 138 | "name": "Bittersweet Nostalgia", 139 | "prompt": "A bittersweet and nostalgic mood where the world is tinged with memories of the past, evoking a sense of longing and reflection.", 140 | "negative_prompt": "Unbittersweet, ordinary, lacking nostalgia, unreflective, mundane." 141 | }, 142 | { 143 | "name": "Spectral Whispers", 144 | "prompt": "A spectral and haunting mood where ghostly whispers fill the air, and the world is haunted by the echoes of the past, creating an eerie and ethereal atmosphere.", 145 | "negative_prompt": "Unspectral, ordinary, lacking whispers, unhaunted, mundane." 146 | }, 147 | { 148 | "name": "Celestial Harmony", 149 | "prompt": "A harmonious and celestial mood where the world is adorned with celestial bodies, and a sense of cosmic unity and serenity prevails.", 150 | "negative_prompt": "Unharmonious, ordinary, lacking celestial bodies, uncosmic, mundane." 151 | }, 152 | { 153 | "name": "Dystopian Desolation", 154 | "prompt": "A mood of dystopian desolation where the world is a bleak and desolate landscape, and a sense of despair and isolation hangs in the air.", 155 | "negative_prompt": "Undystopian, ordinary, lacking desolation, unhopeful, mundane." 156 | } 157 | ] -------------------------------------------------------------------------------- /sdxl_styles_qr.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byQuantumRealism", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Ethereal Particle Dance", 9 | "prompt": "Visualize the enigmatic dance of subatomic particles, where electrons and quarks exist in multiple positions simultaneously, creating a mesmerizing interplay of colors and shapes.", 10 | "negative_prompt": "Static particle representations, lack of quantum uncertainty." 11 | }, 12 | { 13 | "name": "Wavefunction Symphony", 14 | "prompt": "Illustrate the concept of wavefunctions as harmonious symphonies of mathematical beauty, where complex equations come to life in vibrant, oscillating patterns that transcend conventional reality.", 15 | "negative_prompt": "Absence of mathematical symbolism, lack of vibrancy." 16 | }, 17 | { 18 | "name": "Observer's Paradox", 19 | "prompt": "Capture the paradoxical nature of observation in quantum physics, where the act of looking influences what is seen. Create an artwork that shifts and transforms as the viewer's perspective changes.", 20 | "negative_prompt": "Static perspective, absence of observer influence." 21 | }, 22 | { 23 | "name": "Schrodinger's Garden", 24 | "prompt": "Imagine a surreal garden where Schrödinger's cat is both alive and dead, coexisting in a state of quantum uncertainty. Portray the duality of life and death in a whimsical and thought-provoking manner.", 25 | "negative_prompt": "Clear distinction between life and death, absence of surreal elements." 26 | }, 27 | { 28 | "name": "Entangled Realities", 29 | "prompt": "Explore the concept of quantum entanglement, where particles separated by vast distances instantaneously affect each other. Depict a surreal, interconnected world where cause and effect are intertwined in mysterious ways.", 30 | "negative_prompt": "Lack of entanglement symbolism, conventional causality." 31 | }, 32 | { 33 | "name": "Quantum Mirage", 34 | "prompt": "Create a landscape that appears both solid and transparent, as if it exists in a state of quantum superposition. Challenge the viewer's perception by blending solidity with ethereality.", 35 | "negative_prompt": "Clearly defined solidity, lack of superposition elements." 36 | }, 37 | { 38 | "name": "Cubist Uncertainty", 39 | "prompt": "Reimagine the principles of cubism through a quantum lens. Craft a fragmented, multidimensional world where objects and perspectives coalesce and diverge simultaneously.", 40 | "negative_prompt": "Conventional cubist representations, absence of quantum influence." 41 | }, 42 | { 43 | "name": "Quantum Kaleidoscope", 44 | "prompt": "Design a kaleidoscopic artwork where patterns and shapes continuously shift and evolve, reflecting the uncertainty principle. Create a mesmerizing visual experience that challenges stability and predictability.", 45 | "negative_prompt": "Stable, unchanging patterns, absence of uncertainty." 46 | }, 47 | { 48 | "name": "Quantum Dreamscape", 49 | "prompt": "Portray a dreamlike realm where surreal landscapes and impossible geometries are governed by quantum principles. Blur the line between dream and reality in an ever-shifting environment.", 50 | "negative_prompt": "Ordinary dreamscapes, lack of quantum influence." 51 | }, 52 | { 53 | "name": "Quantum Chromatic Symphony", 54 | "prompt": "Compose a symphony of colors where hues and shades meld and transform, reflecting the probabilistic nature of quantum states. Create a vivid and dynamic visual experience.", 55 | "negative_prompt": "Static color palette, lack of probabilistic elements." 56 | }, 57 | { 58 | "name": "Quantum Reflections", 59 | "prompt": "Capture the idea that every reflection in a mirror represents a parallel universe. Create a surreal world where mirrors reveal alternative realities and infinite possibilities.", 60 | "negative_prompt": "Conventional mirror reflections, absence of surreal elements." 61 | }, 62 | { 63 | "name": "Quantum Fractal Realities", 64 | "prompt": "Explore the infinite recursion of fractals through a quantum perspective. Craft a world where fractal patterns evolve and branch in unpredictable ways, revealing the interconnectedness of all scales.", 65 | "negative_prompt": "Static fractal representations, lack of quantum influence." 66 | }, 67 | { 68 | "name": "Quantum Tesseract Enigma", 69 | "prompt": "Illustrate the mysterious concept of higher dimensions and tesseracts, where geometry transcends our three-dimensional world. Convey a sense of unfolding dimensions and hidden realms.", 70 | "negative_prompt": "Conventional geometry, absence of higher-dimensional elements." 71 | }, 72 | { 73 | "name": "Quantum Portal Nexus", 74 | "prompt": "Imagine a surreal network of quantum portals connecting disparate locations and times. Create an intricate web of interconnected doorways that challenge the boundaries of space and causality.", 75 | "negative_prompt": "Ordinary portals, absence of surreal connectivity." 76 | }, 77 | { 78 | "name": "Quantum Interference Symphony", 79 | "prompt": "Compose an artwork where waves of interference patterns overlap and interact, representing the wave-particle duality of quantum entities. Explore the beauty and complexity of interference phenomena.", 80 | "negative_prompt": "Absence of interference patterns, lack of wave-particle duality." 81 | }, 82 | { 83 | "name": "Quantum Constellation Ballet", 84 | "prompt": "Portray a celestial ballet where stars and galaxies exist in a quantum entanglement, choreographing an intricate dance across the cosmos. Capture the beauty of interconnected cosmic forces.", 85 | "negative_prompt": "Conventional celestial representations, absence of quantum influence." 86 | }, 87 | { 88 | "name": "Quantum Labyrinth", 89 | "prompt": "Design a surreal labyrinthine structure where walls shift and pathways change as if guided by quantum probability. Create an immersive experience that challenges the concept of a fixed path.", 90 | "negative_prompt": "Conventional labyrinth, lack of quantum influence." 91 | }, 92 | { 93 | "name": "Quantum Mirage Forest", 94 | "prompt": "Craft a forest where the boundary between reality and illusion is blurred, as trees and flora appear to phase in and out of existence, reflecting the probabilistic nature of quantum states.", 95 | "negative_prompt": "Static forest scenery, absence of quantum influence." 96 | }, 97 | { 98 | "name": "Quantum Alchemical Fusion", 99 | "prompt": "Imagine a laboratory where the principles of quantum mechanics and alchemy converge, resulting in surreal transformations of matter and energy. Convey the mysterious interplay of science and mysticism.", 100 | "negative_prompt": "Conventional laboratory setting, absence of alchemical or quantum fusion." 101 | } 102 | ] -------------------------------------------------------------------------------- /sdxl_styles_romanticnat.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byRomanticNationalism ", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Nationalist_Landscape_Painting", 9 | "prompt": "Romantic Nationalist landscape painting, natural scenery", 10 | "negative_prompt": "abstract, portrait, urban, modern, contemporary" 11 | }, 12 | { 13 | "name": "Folklore_Illustration", 14 | "prompt": "Illustration of national folklore and legends, historical", 15 | "negative_prompt": "abstract, portrait, abstract, modern, contemporary" 16 | }, 17 | { 18 | "name": "Historical_Epic_Painting", 19 | "prompt": "Epic historical painting depicting national history", 20 | "negative_prompt": "abstract, portrait, urban, modern, contemporary" 21 | }, 22 | { 23 | "name": "National_Costume_Design", 24 | "prompt": "Design of traditional national costumes, historical", 25 | "negative_prompt": "fashion, modern, contemporary, abstract" 26 | }, 27 | { 28 | "name": "Cultural_Heritage_Sculpture", 29 | "prompt": "Sculpture celebrating cultural heritage, historical", 30 | "negative_prompt": "abstract, modern, contemporary, urban" 31 | }, 32 | { 33 | "name": "Nationalist_Mural_Art", 34 | "prompt": "Murals with themes of national identity, historical", 35 | "negative_prompt": "abstract, graffiti, modern, contemporary" 36 | }, 37 | { 38 | "name": "Patriotic_Poetry", 39 | "prompt": "Patriotic poetry celebrating national spirit and history", 40 | "negative_prompt": "abstract, fiction, modern, contemporary" 41 | }, 42 | { 43 | "name": "Revolutionary_Hero_Portrait", 44 | "prompt": "Portraits of revolutionary heroes, historical", 45 | "negative_prompt": "abstract, modern, contemporary, portrait" 46 | }, 47 | { 48 | "name": "National_Literature_Illustration", 49 | "prompt": "Illustrations for national literature and myths, historical", 50 | "negative_prompt": "abstract, modern, contemporary, portrait" 51 | }, 52 | { 53 | "name": "Monumental_Historical_Mural", 54 | "prompt": "Monumental mural depicting national history, historical", 55 | "negative_prompt": "abstract, graffiti, modern, contemporary" 56 | }, 57 | { 58 | "name": "National_Landscape_Photography", 59 | "prompt": "Photography capturing national landscapes and scenery", 60 | "negative_prompt": "urban, portrait, modern, contemporary" 61 | }, 62 | { 63 | "name": "Cultural_Heritage_Preservation", 64 | "prompt": "Artworks promoting the preservation of cultural heritage", 65 | "negative_prompt": "abstract, modern, contemporary, urban" 66 | }, 67 | { 68 | "name": "Patriotic_Song_Composition", 69 | "prompt": "Compositions of patriotic songs and anthems, historical", 70 | "negative_prompt": "abstract, electronic, modern, contemporary" 71 | }, 72 | { 73 | "name": "National_Identity_Poetry", 74 | "prompt": "Poetry exploring national identity and pride, historical", 75 | "negative_prompt": "abstract, fiction, modern, contemporary" 76 | }, 77 | { 78 | "name": "Revivalist_Architecture", 79 | "prompt": "Architecture inspired by historical national styles", 80 | "negative_prompt": "modern, contemporary, urban, abstract" 81 | }, 82 | { 83 | "name": "Mythical_Hero_Statue", 84 | "prompt": "Statues of mythical national heroes, historical", 85 | "negative_prompt": "abstract, modern, contemporary, urban" 86 | }, 87 | { 88 | "name": "Folkloric_Dance_Performance", 89 | "prompt": "Performances of traditional folkloric dances, historical", 90 | "negative_prompt": "modern dance, contemporary, urban" 91 | }, 92 | { 93 | "name": "Historical_Narrative_Painting", 94 | "prompt": "Narrative paintings of historical national events", 95 | "negative_prompt": "abstract, portrait, modern, contemporary" 96 | }, 97 | { 98 | "name": "National_Flag_Design", 99 | "prompt": "Designs for national flags and emblems, historical", 100 | "negative_prompt": "modern, contemporary, abstract, urban" 101 | }, 102 | { 103 | "name": "Patriotic_Literary_Work", 104 | "prompt": "Literary works with patriotic themes, historical", 105 | "negative_prompt": "abstract, fiction, modern, contemporary" 106 | }, 107 | { 108 | "name": "Nationalist_Music_Composition", 109 | "prompt": "Musical compositions celebrating national pride, historical", 110 | "negative_prompt": "abstract, electronic, modern, contemporary" 111 | }, 112 | { 113 | "name": "Revolutionary_Battle_Scene", 114 | "prompt": "Paintings depicting revolutionary battle scenes, historical", 115 | "negative_prompt": "abstract, portrait, modern, contemporary" 116 | }, 117 | { 118 | "name": "National_Folk_Music_Performance", 119 | "prompt": "Live performances of traditional national folk music", 120 | "negative_prompt": "modern music, contemporary, urban" 121 | }, 122 | { 123 | "name": "Cultural_History_Book_Illustration", 124 | "prompt": "Illustrations for books on cultural history, historical", 125 | "negative_prompt": "abstract, modern, contemporary, portrait" 126 | }, 127 | { 128 | "name": "National_Heroic_Poem", 129 | "prompt": "Epic poems celebrating national heroes, historical", 130 | "negative_prompt": "abstract, fiction, modern, contemporary" 131 | }, 132 | { 133 | "name": "Cultural_Revival_Sculpture", 134 | "prompt": "Sculpture commemorating cultural revival, historical", 135 | "negative_prompt": "abstract, modern, contemporary, portrait" 136 | }, 137 | { 138 | "name": "National_Landscape_Painting", 139 | "prompt": "Paintings of iconic national landscapes, historical", 140 | "negative_prompt": "abstract, portrait, modern, contemporary" 141 | }, 142 | { 143 | "name": "Traditional_Folk_Art_Design", 144 | "prompt": "Designs inspired by traditional national folk art, historical", 145 | "negative_prompt": "modern, contemporary, abstract, urban" 146 | }, 147 | { 148 | "name": "Patriotic_Poet_Portrait", 149 | "prompt": "Portraits of patriotic poets, historical", 150 | "negative_prompt": "abstract, modern, contemporary, portrait" 151 | } 152 | ] 153 | -------------------------------------------------------------------------------- /sdxl_styles_sports.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none bySports", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Olympic Triumph", 9 | "prompt": "Celebrate the thrill of victory at the Olympic Games. Capture the triumphant moment of an athlete winning a gold medal with emotions running high.", 10 | "negative_prompt": "Defeat, despair, lack of athleticism, absence of victory." 11 | }, 12 | { 13 | "name": "Extreme Adventure Sports", 14 | "prompt": "Plunge into the adrenaline-fueled world of extreme adventure sports. Illustrate the exhilaration of activities like skydiving, rock climbing, or extreme skiing.", 15 | "negative_prompt": "Everyday activities, lack of adrenaline, absence of adventure, non-extreme sports." 16 | }, 17 | { 18 | "name": "Soccer World Cup Glory", 19 | "prompt": "Relive the excitement of the FIFA World Cup. Depict a euphoric moment when a soccer team scores a game-winning goal and the crowd goes wild.", 20 | "negative_prompt": "Soccer disappointment, lack of excitement, absence of soccer elements, non-sports scene." 21 | }, 22 | { 23 | "name": "Basketball Slam Dunk", 24 | "prompt": "Capture the electrifying energy of a basketball game with a powerful slam dunk. Showcase the athleticism, precision, and excitement of this iconic basketball move.", 25 | "negative_prompt": "Basketball failure, lack of energy, absence of athleticism, non-basketball scene." 26 | }, 27 | { 28 | "name": "Surfing the Perfect Wave", 29 | "prompt": "Ride the waves of a perfect surfing day. Illustrate a surfer's experience of catching the ideal wave, with the sun shining and the ocean glistening.", 30 | "negative_prompt": "Surfing wipeout, lack of waves, absence of ocean, non-surfing scene." 31 | }, 32 | { 33 | "name": "Winter Olympics Figure Skating", 34 | "prompt": "Showcase the grace and elegance of figure skating at the Winter Olympics. Depict a flawless performance filled with intricate spins, jumps, and artistic expression.", 35 | "negative_prompt": "Figure skating mishap, lack of elegance, absence of figure skating elements, non-sports scene." 36 | }, 37 | { 38 | "name": "Motorsport Grand Prix", 39 | "prompt": "Feel the speed and excitement of a motorsport Grand Prix. Capture the high-speed action, precision driving, and intense competition on the racetrack.", 40 | "negative_prompt": "Motorsport accident, lack of speed, absence of motorsport elements, non-racing scene." 41 | }, 42 | { 43 | "name": "Tennis Championship Match", 44 | "prompt": "Experience the intensity of a tennis championship match. Illustrate a crucial point, with players giving their all in a battle of skill and determination.", 45 | "negative_prompt": "Tennis defeat, lack of intensity, absence of tennis elements, non-tennis scene." 46 | }, 47 | { 48 | "name": "Martial Arts Mastery", 49 | "prompt": "Capture the discipline and mastery of martial arts. Depict a martial artist executing a precise and powerful technique with focus and inner strength.", 50 | "negative_prompt": "Martial arts failure, lack of discipline, absence of martial arts elements, non-martial arts scene." 51 | }, 52 | { 53 | "name": "Equestrian Elegance", 54 | "prompt": "Embrace the elegance of equestrian sports. Illustrate a rider and horse in perfect harmony during a dressage performance, showcasing their grace and connection.", 55 | "negative_prompt": "Equestrian mishap, lack of elegance, absence of equestrian elements, non-equestrian scene." 56 | }, 57 | { 58 | "name": "Baseball Grand Slam", 59 | "prompt": "Experience the excitement of a baseball grand slam. Illustrate a hitter connecting with the perfect pitch and sending the ball soaring into the stands.", 60 | "negative_prompt": "Baseball strikeout, lack of excitement, absence of baseball elements, non-baseball scene." 61 | }, 62 | { 63 | "name": "Swimming World Record", 64 | "prompt": "Dive into the world of competitive swimming and set a world record. Capture the swimmer's determination, speed, and focus as they race toward victory.", 65 | "negative_prompt": "Swimming struggle, lack of determination, absence of swimming elements, non-swimming scene." 66 | }, 67 | { 68 | "name": "Golf Masters Victory", 69 | "prompt": "Celebrate a golfer's triumph at the Masters Tournament. Illustrate the final putt sinking into the hole, sealing a historic victory on the green.", 70 | "negative_prompt": "Golf mishap, lack of triumph, absence of golf elements, non-golf scene." 71 | }, 72 | { 73 | "name": "Rock Climbing Ascent", 74 | "prompt": "Embark on a rock climbing adventure. Depict a climber reaching the summit of a challenging peak, showcasing their strength, courage, and accomplishment.", 75 | "negative_prompt": "Rock climbing fall, lack of courage, absence of climbing elements, non-climbing scene." 76 | }, 77 | { 78 | "name": "Gymnastics Perfect Routine", 79 | "prompt": "Experience the perfection of a gymnastics routine. Capture a gymnast executing flawless flips, twists, and poses on the balance beam with grace and precision.", 80 | "negative_prompt": "Gymnastics stumble, lack of grace, absence of gymnastics elements, non-gymnastics scene." 81 | }, 82 | { 83 | "name": "Rugby World Cup Glory", 84 | "prompt": "Feel the intensity of a Rugby World Cup victory. Illustrate a team's joyous celebration after winning the championship, with camaraderie and pride on display.", 85 | "negative_prompt": "Rugby defeat, lack of intensity, absence of rugby elements, non-rugby scene." 86 | }, 87 | { 88 | "name": "Skiing Downhill Thrill", 89 | "prompt": "Embrace the thrill of downhill skiing. Depict a skier descending a steep slope at high speed, carving through fresh powder with skill and exhilaration.", 90 | "negative_prompt": "Skiing mishap, lack of skill, absence of skiing elements, non-skiing scene." 91 | }, 92 | { 93 | "name": "Cycling Tour de France Victory", 94 | "prompt": "Join the ranks of cycling champions at the Tour de France. Illustrate a cyclist crossing the finish line with arms raised in triumph after a grueling race.", 95 | "negative_prompt": "Cycling setback, lack of triumph, absence of cycling elements, non-cycling scene." 96 | }, 97 | { 98 | "name": "Synchronized Swimming Beauty", 99 | "prompt": "Dive into the world of synchronized swimming. Capture the beauty and precision of synchronized movements in the water, as a team performs with perfect harmony.", 100 | "negative_prompt": "Synchronized swimming mishap, lack of beauty, absence of synchronized swimming elements, non-synchronized swimming scene." 101 | }, 102 | { 103 | "name": "Archery Bullseye Accuracy", 104 | "prompt": "Master the art of archery with pinpoint accuracy. Illustrate an archer hitting the bullseye of a target, showcasing their focus and skill in the ancient sport.", 105 | "negative_prompt": "Archery miss, lack of accuracy, absence of archery elements, non-archery scene." 106 | }, 107 | { 108 | "name": "Horse Racing Derby Finish", 109 | "prompt": "Feel the excitement of a horse racing derby's thrilling finish. Capture the intense sprint to the finish line with jockeys and horses giving their all.", 110 | "negative_prompt": "Horse racing setback, lack of excitement, absence of racing elements, non-horse racing scene." 111 | }, 112 | { 113 | "name": "Triathlon Triumph", 114 | "prompt": "Experience the triumph of a triathlete crossing the finish line. Illustrate the endurance, determination, and accomplishment of completing a grueling race.", 115 | "negative_prompt": "Triathlon struggle, lack of determination, absence of triathlon elements, non-triathlon scene." 116 | }, 117 | { 118 | "name": "Table Tennis Rally", 119 | "prompt": "Dive into the rapid-paced world of table tennis. Capture an intense rally between two skilled players, showcasing lightning-fast exchanges and precise shots.", 120 | "negative_prompt": "Table tennis mishap, lack of intensity, absence of table tennis elements, non-table tennis scene." 121 | }, 122 | { 123 | "name": "Martial Arts Sparring", 124 | "prompt": "Witness the discipline and skill of martial arts sparring. Depict two martial artists engaged in a dynamic and controlled combat, displaying technique and respect.", 125 | "negative_prompt": "Martial arts mishap, lack of discipline, absence of martial arts elements, non-martial arts scene." 126 | }, 127 | { 128 | "name": "Wrestling Championship Pin", 129 | "prompt": "Enter the wrestling arena and capture the moment of a championship pin. Illustrate the strength, strategy, and determination of a wrestler securing victory.", 130 | "negative_prompt": "Wrestling defeat, lack of strategy, absence of wrestling elements, non-wrestling scene." 131 | }, 132 | { 133 | "name": "Badminton Smash", 134 | "prompt": "Experience the speed and precision of a badminton match. Depict a powerful smash shot, showcasing the athleticism and technique of the players on the court.", 135 | "negative_prompt": "Badminton mishap, lack of athleticism, absence of badminton elements, non-badminton scene." 136 | }, 137 | { 138 | "name": "Fencing Duel", 139 | "prompt": "Step into the world of fencing and capture an intense duel between fencers. Illustrate the agility, skill, and strategic maneuvers in a high-stakes match.", 140 | "negative_prompt": "Fencing misstep, lack of agility, absence of fencing elements, non-fencing scene." 141 | }, 142 | { 143 | "name": "Sailing Regatta Victory", 144 | "prompt": "Set sail in a regatta and celebrate a triumphant victory. Capture the sailors' elation as they cross the finish line, harnessing the wind and waves.", 145 | "negative_prompt": "Sailing setback, lack of elation, absence of sailing elements, non-sailing scene." 146 | }, 147 | { 148 | "name": "Cricket Century Celebration", 149 | "prompt": "Witness the celebration of a century in cricket. Illustrate a batsman's jubilation after scoring 100 runs, with teammates applauding the achievement.", 150 | "negative_prompt": "Cricket disappointment, lack of jubilation, absence of cricket elements, non-cricket scene." 151 | }, 152 | { 153 | "name": "Rhythmic Gymnastics Grace", 154 | "prompt": "Experience the grace and precision of rhythmic gymnastics. Capture a gymnast's elegant routine with apparatus, showcasing beauty and artistry in motion.", 155 | "negative_prompt": "Rhythmic gymnastics mishap, lack of grace, absence of gymnastics elements, non-gymnastics scene." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_sr.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none bySteamPunkRealism", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Clockwork Menagerie", 9 | "prompt": "Imagine a surreal world where a mechanical menagerie of whimsical creatures roams amidst the intricate gears and steam-powered wonders of a fantastical steampunk landscape.", 10 | "negative_prompt": "Ordinary creatures, lack of steampunk machinery." 11 | }, 12 | { 13 | "name": "Cogged Dreamscape", 14 | "prompt": "Create a dreamscape where surreal landscapes and intricate cogs merge, blurring the boundaries between the mechanical and the fantastical. Surrender to the whimsy of this surreal contraption.", 15 | "negative_prompt": "Static landscapes, absence of cogs or surreal elements." 16 | }, 17 | { 18 | "name": "Steam-Fueled Dreams", 19 | "prompt": "Illustrate a dreamlike world powered by steam, where locomotives soar through the skies, and steam-driven plants flourish in the clouds. Surrender to the whimsy of this surreal contraption.", 20 | "negative_prompt": "Conventional locomotives, absence of surreal steam-powered elements." 21 | }, 22 | { 23 | "name": "Chrono-Mystical Carnival", 24 | "prompt": "Craft an otherworldly carnival where time is both a performer and an illusionist. Surreal carnival rides and attractions, blending steampunk aesthetics with dreamlike time-bending experiences.", 25 | "negative_prompt": "Ordinary carnival, lack of time-bending or surreal elements." 26 | }, 27 | { 28 | "name": "Mechanical Menagerie Ballroom", 29 | "prompt": "Envision a grand ballroom filled with elegant steampunk automatons and clockwork dancers, their movements controlled by surreal and unpredictable forces. Surrender to the waltz of the surreal.", 30 | "negative_prompt": "Ordinary ballroom, absence of surreal automatons." 31 | }, 32 | { 33 | "name": "Steampunk Alchemical Garden", 34 | "prompt": "Create a surreal garden where alchemical experiments blend with Victorian horticulture. Plants sprout gears and cogs, and steam-powered contraptions nurture bizarre and whimsical flora.", 35 | "negative_prompt": "Conventional garden, lack of alchemical or surreal elements." 36 | }, 37 | { 38 | "name": "Clockwork Cityscape Dreams", 39 | "prompt": "Imagine a surreal cityscape where clockwork skyscrapers reach for the sky, while surreal, time-bending distortions play tricks on the eye, making every street a twist in reality.", 40 | "negative_prompt": "Conventional cityscape, absence of surreal distortions." 41 | }, 42 | { 43 | "name": "Steam-Driven Enigma", 44 | "prompt": "Capture a mysterious, enigmatic world powered by steam and populated by surreal and elusive beings. Surrender to the intrigue of this steampunk surrealist realm.", 45 | "negative_prompt": "Ordinary beings, lack of surreal or steam-powered elements." 46 | }, 47 | { 48 | "name": "Cogwheel Wonderland", 49 | "prompt": "Craft a whimsical wonderland where gigantic cogwheels and gears transform the landscape into a surreal mechanical dreamscape. Surrender to the rhythmic pulse of this clockwork world.", 50 | "negative_prompt": "Conventional landscape, absence of surreal mechanical elements." 51 | }, 52 | { 53 | "name": "Steam-Powered Carnival", 54 | "prompt": "Envision a fantastical carnival where steam-powered rides and contraptions defy gravity and physics, creating a surreal and exhilarating experience under the big, brass top.", 55 | "negative_prompt": "Ordinary carnival rides, lack of surreal steam-powered elements." 56 | }, 57 | { 58 | "name": "Surreal Airship Odyssey", 59 | "prompt": "Take a surreal journey aboard a fantastical airship, where time and space are fluid, and landscapes change with every turn of the steam-driven propellers. Surrender to the skies of wonder.", 60 | "negative_prompt": "Ordinary airship journey, absence of surreal elements." 61 | }, 62 | { 63 | "name": "Neo-Victorian Dreamscape", 64 | "prompt": "Picture a Neo-Victorian dreamscape where ornate steampunk architecture coexists with surreal and illogical landscapes. Surrender to the fantastical fusion of eras and realities.", 65 | "negative_prompt": "Conventional Neo-Victorian setting, lack of surreal elements." 66 | }, 67 | { 68 | "name": "Steampunk Surrealist Ball", 69 | "prompt": "Create a surreal masquerade ball where guests wear elaborate steampunk costumes that seem to come to life, blending with the dreamlike atmosphere of the event. Surrender to the dance of illusion.", 70 | "negative_prompt": "Ordinary masquerade, absence of surreal costumes." 71 | }, 72 | { 73 | "name": "Mechanical Dreamscape Symphony", 74 | "prompt": "Compose a symphony of surreal landscapes where mechanical wonders and impossible structures create a harmonious yet irrational world. Surrender to the mesmerizing music of this dreamscape.", 75 | "negative_prompt": "Ordinary landscapes, absence of surreal mechanical elements." 76 | }, 77 | { 78 | "name": "Clockwork Wonderland", 79 | "prompt": "Visualize an enchanted wonderland where time is at once a friend and a foe. Surreal clockwork creatures, intricate timepieces, and whimsical landscapes intertwine in a surreal dance.", 80 | "negative_prompt": "Conventional wonderland, lack of surreal clockwork elements." 81 | }, 82 | { 83 | "name": "Steampunk Astral Odyssey", 84 | "prompt": "Embark on an astral odyssey through a steampunk-inspired cosmos, where surreal celestial bodies and mechanical constellations guide your journey through time and space. Surrender to the cosmic clockwork.", 85 | "negative_prompt": "Conventional cosmic representation, absence of surreal celestial elements." 86 | }, 87 | { 88 | "name": "Mechanical Menagerie Parade", 89 | "prompt": "Imagine a surreal parade of mechanical wonders, where fantastical steampunk creatures and surreal contraptions march in a mesmerizing spectacle. Surrender to the parade of surreal marvels.", 90 | "negative_prompt": "Ordinary parade, absence of surreal contraptions." 91 | }, 92 | { 93 | "name": "Quantum Steam-Driven Enigma", 94 | "prompt": "Merge the realms of quantum physics with steampunk aesthetics, crafting a surreal world where subatomic particles are harnessed by steam-powered machines in a perplexing dance of science and art.", 95 | "negative_prompt": "Conventional science and art fusion, lack of surreal quantum elements." 96 | }, 97 | { 98 | "name": "Steampunk Dreamscape Architect", 99 | "prompt": "Become the architect of a surreal steampunk dreamscape, where imagination runs wild, gears are oversized, and landscapes are sculpted by whimsy. Surrender to the architect's fantasies.", 100 | "negative_prompt": "Conventional architecture, absence of surreal whimsy." 101 | }, 102 | { 103 | "name": "Mechanical Dreamscape Symphony", 104 | "prompt": "Compose a symphony of surreal landscapes where mechanical wonders and impossible structures create a harmonious yet irrational world. Surrender to the mesmerizing music of this dreamscape.", 105 | "negative_prompt": "Ordinary landscapes, absence of surreal mechanical elements." 106 | }, 107 | { 108 | "name": "Steampunk Dreamscape Architect", 109 | "prompt": "Become the architect of a surreal steampunk dreamscape, where imagination runs wild, gears are oversized, and landscapes are sculpted by whimsy. Surrender to the architect's fantasies.", 110 | "negative_prompt": "Conventional architecture, absence of surreal." 111 | }, 112 | { 113 | "name": "Mechanical Dreamscape Symphony", 114 | "prompt": "Compose a symphony of surreal landscapes where mechanical wonders and impossible structures create a harmonious yet irrational world. Surrender to the mesmerizing music of this dreamscape.", 115 | "negative_prompt": "Ordinary landscapes, absence of surreal mechanical elements." 116 | }, 117 | { 118 | "name": "Steam-Powered Carnival", 119 | "prompt": "Envision a fantastical carnival where steam-powered rides and contraptions defy gravity and physics, creating a surreal and exhilarating experience under the big, brass top.", 120 | "negative_prompt": "Ordinary carnival rides, lack of surreal steam-powered elements." 121 | }, 122 | { 123 | "name": "Steampunk Explorer's Dreams", 124 | "prompt": "Embark on an expedition through a surreal steampunk world where Victorian explorers encounter bizarre landscapes and mechanized creatures. Surrender to the explorer's surreal journey.", 125 | "negative_prompt": "Conventional exploration, absence of surreal landscapes." 126 | }, 127 | { 128 | "name": "Surreal Clockwork Opera", 129 | "prompt": "Imagine a surreal opera house where clockwork musicians and performers create a symphony of surreal sensations. Surrender to the melodious madness of this clockwork performance.", 130 | "negative_prompt": "Ordinary opera, absence of surreal clockwork performers." 131 | }, 132 | { 133 | "name": "Mechanical Dreamscape Symphony", 134 | "prompt": "Compose a symphony of surreal landscapes where mechanical wonders and impossible structures create a harmonious yet irrational world. Surrender to the mesmerizing music of this dreamscape.", 135 | "negative_prompt": "Ordinary landscapes, absence of surreal mechanical elements." 136 | }, 137 | { 138 | "name": "Steampunk Dreamscape Architect", 139 | "prompt": "Become the architect of a surreal steampunk dreamscape, where imagination runs wild, gears are oversized, and landscapes are sculpted by whimsy. Surrender to the architect's fantasies.", 140 | "negative_prompt": "Conventional architecture, absence of surreal whimsy." 141 | }, 142 | { 143 | "name": "Surreal Clockwork Opera", 144 | "prompt": "Imagine a surreal opera house where clockwork musicians and performers create a symphony of surreal sensations. Surrender to the melodious madness of this clockwork performance.", 145 | "negative_prompt": "Ordinary opera, absence of surreal clockwork performers." 146 | } 147 | ] -------------------------------------------------------------------------------- /sdxl_styles_street.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byStreet", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Urban Graffiti Art", 9 | "prompt": "Immerse yourself in the vibrant world of urban graffiti art. Illustrate a colorful street scene with intricate graffiti, capturing the essence of street culture.", 10 | "negative_prompt": "Rural landscape, lack of graffiti art, absence of street elements, non-urban scene." 11 | }, 12 | { 13 | "name": "City Street Market", 14 | "prompt": "Explore the bustling atmosphere of a city street market. Depict a lively scene with street vendors, colorful stalls, and a diverse crowd of shoppers.", 15 | "negative_prompt": "Desert setting, lack of market, absence of street elements, non-city scene." 16 | }, 17 | { 18 | "name": "Street Performers' Showcase", 19 | "prompt": "Witness the talent of street performers in a vibrant city. Capture a scene with musicians, dancers, and artists showcasing their skills on the street.", 20 | "negative_prompt": "Quiet countryside, lack of performers, absence of street talent, non-street scene." 21 | }, 22 | { 23 | "name": "Neon-lit Nightlife", 24 | "prompt": "Step into the neon-lit world of urban nightlife. Illustrate a scene with illuminated signs, bustling clubs, and people enjoying the energetic atmosphere.", 25 | "negative_prompt": "Daytime scene, lack of nightlife, absence of neon lights, non-urban scene." 26 | }, 27 | { 28 | "name": "Street Food Delight", 29 | "prompt": "Savor the flavors of street food in a bustling city. Depict a scene with food vendors selling diverse and delicious street eats to a hungry crowd.", 30 | "negative_prompt": "Remote wilderness, lack of street food, absence of vendors, non-street scene." 31 | }, 32 | { 33 | "name": "Street Fashion Runway", 34 | "prompt": "Celebrate street fashion on a vibrant urban runway. Capture models showcasing eclectic streetwear designs in the heart of the city.", 35 | "negative_prompt": "Natural landscape, lack of fashion, absence of runway, non-urban scene." 36 | }, 37 | { 38 | "name": "Street Skateboarding Session", 39 | "prompt": "Feel the thrill of a street skateboarding session. Illustrate a scene with skateboarders performing tricks, defying gravity, and embracing the street culture.", 40 | "negative_prompt": "Indoor setting, lack of skateboarding, absence of tricks, non-street scene." 41 | }, 42 | { 43 | "name": "Street Art Mural Festival", 44 | "prompt": "Immerse yourself in a street art mural festival. Depict a scene with artists creating large-scale murals that transform urban walls into works of art.", 45 | "negative_prompt": "Countryside setting, lack of murals, absence of art festival, non-street scene." 46 | }, 47 | { 48 | "name": "Street Photography Icon", 49 | "prompt": "Capture an iconic moment in street photography. Illustrate a scene with a street photographer capturing a candid and memorable urban moment.", 50 | "negative_prompt": "Studio setting, lack of photography, absence of iconic moments, non-street scene." 51 | }, 52 | { 53 | "name": "Street Protest Rally", 54 | "prompt": "Document a street protest rally in a city. Depict a passionate crowd, banners, and signs as people come together to raise their voices for change.", 55 | "negative_prompt": "Quiet neighborhood, lack of protest, absence of rally, non-street scene." 56 | }, 57 | { 58 | "name": "Cityscape at Dusk", 59 | "prompt": "Capture the enchanting beauty of a cityscape at dusk. Illustrate a scene with city lights, glowing skyscrapers, and the transition from day to night.", 60 | "negative_prompt": "Rural setting, lack of cityscape, absence of nighttime, non-urban scene." 61 | }, 62 | { 63 | "name": "Street Vendors in Marrakech", 64 | "prompt": "Transport yourself to the vibrant streets of Marrakech. Depict a scene with colorful street vendors selling spices, textiles, and local crafts.", 65 | "negative_prompt": "Remote wilderness, lack of vendors, absence of Marrakech elements, non-street scene." 66 | }, 67 | { 68 | "name": "Urban Park Skateboarding", 69 | "prompt": "Experience the energy of urban park skateboarding. Illustrate a scene with skateboarders mastering ramps, rails, and bowls in a city park.", 70 | "negative_prompt": "Natural landscape, lack of skateboarding, absence of urban park elements, non-urban scene." 71 | }, 72 | { 73 | "name": "Street Musicians' Jam Session", 74 | "prompt": "Join a lively jam session with street musicians. Capture a scene with musicians playing instruments and creating music on a bustling street corner.", 75 | "negative_prompt": "Suburban setting, lack of musicians, absence of music, non-street scene." 76 | }, 77 | { 78 | "name": "Street Art Gallery Opening", 79 | "prompt": "Celebrate the opening of a street art gallery. Depict a scene with art enthusiasts admiring graffiti and urban art in a gallery space.", 80 | "negative_prompt": "Countryside setting, lack of art gallery, absence of art enthusiasts, non-street scene." 81 | }, 82 | { 83 | "name": "City Biking Commute", 84 | "prompt": "Embrace the eco-friendly city biking commute. Illustrate a scene with cyclists navigating urban streets, bike lanes, and commuting with style.", 85 | "negative_prompt": "Mountainous terrain, lack of biking, absence of bike lanes, non-urban scene." 86 | }, 87 | { 88 | "name": "Urban Rooftop Party", 89 | "prompt": "Join an exclusive urban rooftop party. Capture a scene with a stylish crowd, city skyline views, and the vibrant atmosphere of a rooftop soirée.", 90 | "negative_prompt": "Remote wilderness, lack of party, absence of rooftop, non-urban scene." 91 | }, 92 | { 93 | "name": "Street Fashion Boutique", 94 | "prompt": "Explore a trendy street fashion boutique. Depict a scene with mannequins, racks of stylish clothing, and shoppers browsing the latest urban fashion.", 95 | "negative_prompt": "Quiet suburb, lack of boutique, absence of fashion, non-street scene." 96 | }, 97 | { 98 | "name": "Street Market Mosaic", 99 | "prompt": "Create a mosaic of a lively street market. Illustrate a scene with vendors, shoppers, colorful stalls, and a mosaic of urban life and culture.", 100 | "negative_prompt": "Desert setting, lack of market, absence of street elements, non-mosaic scene." 101 | }, 102 | { 103 | "name": "City Transportation Hub", 104 | "prompt": "Capture the bustling activity of a city transportation hub. Depict a scene with buses, taxis, and commuters navigating the urban transit system.", 105 | "negative_prompt": "Remote countryside, lack of transportation hub, absence of urban transit, non-urban scene." 106 | }, 107 | { 108 | "name": "Street Carnival Celebration", 109 | "prompt": "Join in the excitement of a street carnival celebration. Illustrate a scene with colorful floats, dancers, and crowds enjoying festive music and food.", 110 | "negative_prompt": "Quiet countryside, lack of carnival, absence of festivities, non-street scene." 111 | }, 112 | { 113 | "name": "Street Mural Collaboration", 114 | "prompt": "Witness a collaborative street mural project. Depict artists working together to create a massive mural that beautifies an urban neighborhood.", 115 | "negative_prompt": "Remote wilderness, lack of mural project, absence of collaboration, non-urban scene." 116 | }, 117 | { 118 | "name": "Urban Street Basketball Game", 119 | "prompt": "Experience the intensity of an urban street basketball game. Capture a scene with players competing on a neighborhood court, showcasing their skills.", 120 | "negative_prompt": "Natural landscape, lack of basketball, absence of street court, non-urban scene." 121 | }, 122 | { 123 | "name": "Street Fashion Show Extravaganza", 124 | "prompt": "Attend a glamorous street fashion show extravaganza. Illustrate a scene with models strutting down an open-air runway in a bustling urban setting.", 125 | "negative_prompt": "Suburban setting, lack of fashion show, absence of models, non-urban scene." 126 | }, 127 | { 128 | "name": "Street Food Truck Fiesta", 129 | "prompt": "Savor the flavors of a street food truck fiesta. Depict a scene with a variety of food trucks offering international cuisine to eager foodies.", 130 | "negative_prompt": "Rural countryside, lack of food trucks, absence of cuisine variety, non-street scene." 131 | }, 132 | { 133 | "name": "City Street Art Scavenger Hunt", 134 | "prompt": "Embark on a city street art scavenger hunt. Capture the excitement of participants searching for and discovering hidden urban art treasures.", 135 | "negative_prompt": "Desert setting, lack of scavenger hunt, absence of art treasures, non-urban scene." 136 | }, 137 | { 138 | "name": "Street Carnival Parade", 139 | "prompt": "Celebrate a vibrant street carnival parade. Illustrate a scene with colorful costumes, dancers, and marching bands parading through the city streets.", 140 | "negative_prompt": "Quiet suburb, lack of parade, absence of costumes, non-urban scene." 141 | }, 142 | { 143 | "name": "Street Bazaar Browsing", 144 | "prompt": "Explore a lively street bazaar. Depict a scene with shoppers browsing stalls filled with unique and handcrafted items from around the world.", 145 | "negative_prompt": "Remote wilderness, lack of bazaar, absence of unique items, non-street scene." 146 | }, 147 | { 148 | "name": "Urban Street Art Battle", 149 | "prompt": "Witness an epic street art battle between graffiti artists. Capture the creativity and competition as artists transform a wall into a masterpiece.", 150 | "negative_prompt": "Countryside setting, lack of art battle, absence of graffiti artists, non-urban scene." 151 | }, 152 | { 153 | "name": "Street Jazz Performance", 154 | "prompt": "Enjoy a lively street jazz performance. Illustrate a scene with talented musicians playing jazz melodies to captivated passersby in a city square.", 155 | "negative_prompt": "Quiet village, lack of jazz performance, absence of musicians, non-urban scene." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_subject.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none bySubject", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Animal", 9 | "prompt": "animal {prompt}", 10 | "negative_prompt": "human" 11 | }, 12 | { 13 | "name": "Art", 14 | "prompt": "art {prompt}", 15 | "negative_prompt": "abstract" 16 | }, 17 | { 18 | "name": "Building", 19 | "prompt": "building {prompt}", 20 | "negative_prompt": "landscape" 21 | }, 22 | { 23 | "name": "Child", 24 | "prompt": "child {prompt}", 25 | "negative_prompt": "adult" 26 | }, 27 | { 28 | "name": "Female", 29 | "prompt": "female {prompt}", 30 | "negative_prompt": "male" 31 | }, 32 | { 33 | "name": "Food", 34 | "prompt": "food {prompt}", 35 | "negative_prompt": "mould" 36 | }, 37 | { 38 | "name": "Male", 39 | "prompt": "male {prompt}", 40 | "negative_prompt": "female" 41 | }, 42 | { 43 | "name": "Nature", 44 | "prompt": "nature {prompt}", 45 | "negative_prompt": "urban" 46 | }, 47 | { 48 | "name": "Technology", 49 | "prompt": "technology {prompt}", 50 | "negative_prompt": "organic" 51 | }, 52 | { 53 | "name": "Vehicle", 54 | "prompt": "vehicle {prompt}", 55 | "negative_prompt": "structure" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_surrealism.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none bySurrealism", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Morning Light on the Seine", 9 | "prompt": "Capture the soft, early morning light reflecting on the gentle ripples of the Seine River, creating a tranquil and luminous atmosphere.", 10 | "negative_prompt": "Harsh shadows, overworked details, static, dull colors, lack of atmosphere." 11 | }, 12 | { 13 | "name": "Fields of Sunflowers in Bloom", 14 | "prompt": "Paint a field of sunflowers in full bloom under the radiant sun, with the vibrant yellow petals and their interaction with the light as the main focus.", 15 | "negative_prompt": "Flat colors, lack of light and shadow, overly detailed, static composition, unnatural colors." 16 | }, 17 | { 18 | "name": "A Rainy Day in the City", 19 | "prompt": "Capture the mood and atmosphere of a rainy day in the bustling city, with wet streets reflecting the lights and colors of the urban environment.", 20 | "negative_prompt": "Lack of mood, unrealistic colors, sharp edges, overly detailed, static composition." 21 | }, 22 | { 23 | "name": "Dappled Sunlight Through Trees", 24 | "prompt": "Convey the effect of dappled sunlight filtering through the leaves of a dense forest, creating intricate patterns of light and shadow on the ground.", 25 | "negative_prompt": "Flat lighting, lack of atmosphere, unrealistic colors, lack of texture, overly detailed." 26 | }, 27 | { 28 | "name": "A Parisian Café Scene", 29 | "prompt": "Capture the ambiance of a Parisian café, with people leisurely enjoying coffee and conversation at outdoor tables, emphasizing the play of light and shadow.", 30 | "negative_prompt": "Stiff and posed figures, lack of atmosphere, unnatural colors, overly detailed, lack of spontaneity." 31 | }, 32 | { 33 | "name": "Impressionistic Self-Portrait", 34 | "prompt": "Create a self-portrait in the Impressionist style, using loose brushwork and color to convey your mood and personality.", 35 | "negative_prompt": "Lack of character, flat colors, overly detailed, unrealistic portrayal, lack of emotional expression." 36 | }, 37 | { 38 | "name": "Harbor at Sunset", 39 | "prompt": "Paint a harbor scene at sunset, capturing the warm hues of the setting sun reflecting on the water, boats, and the surrounding environment.", 40 | "negative_prompt": "Lack of warmth, harsh lighting, overworked details, lack of atmosphere, static composition." 41 | }, 42 | { 43 | "name": "The Dance of Fireflies", 44 | "prompt": "Depict a magical night scene in a forest with fireflies illuminating the darkness, creating a sense of enchantment and wonder.", 45 | "negative_prompt": "Lack of magic, dull colors, unnatural lighting, overly detailed, lack of ambiance." 46 | }, 47 | { 48 | "name": "Ballet Rehearsal Backstage", 49 | "prompt": "Capture the backstage atmosphere of a ballet rehearsal, with dancers in various states of preparation and movement, focusing on the interplay of light and shadow.", 50 | "negative_prompt": "Lack of backstage atmosphere, static figures, lack of emotion, unrealistic colors, overworked details." 51 | }, 52 | { 53 | "name": "Water Lilies in a Pond", 54 | "prompt": "Paint a serene pond with water lilies in various stages of bloom, reflecting the changing light and colors of the sky.", 55 | "negative_prompt": "Flat water surface, lack of depth, dull colors, overworked details, lack of spontaneity." 56 | }, 57 | { 58 | "name": "Winter Morning Frost", 59 | "prompt": "Capture the frost-covered landscape of a winter morning, with the delicate frost crystals glistening in the soft morning light.", 60 | "negative_prompt": "Lack of frosty atmosphere, harsh lighting, lack of coldness, unrealistic colors, overly detailed." 61 | }, 62 | { 63 | "name": "Seaside Cliff at Dawn", 64 | "prompt": "Paint a dramatic seascape at dawn, with waves crashing against a rugged cliff, and the first light of day breaking through the clouds.", 65 | "negative_prompt": "Lack of drama, static waves, dull lighting, lack of atmosphere, overworked details." 66 | }, 67 | { 68 | "name": "Fields of Lavender in Provence", 69 | "prompt": "Convey the vibrant beauty of lavender fields in Provence, with rows of lavender plants stretching to the horizon, and the intoxicating scent of lavender in the air.", 70 | "negative_prompt": "Lack of fragrance, flat colors, lack of depth, unrealistic colors, overly detailed." 71 | }, 72 | { 73 | "name": "Children Playing by the Seashore", 74 | "prompt": "Capture the joy and spontaneity of children playing by the seashore, with the shimmering sea and the golden sands as the backdrop.", 75 | "negative_prompt": "Lack of playfulness, stiff figures, lack of spontaneity, unrealistic colors, overworked details." 76 | }, 77 | { 78 | "name": "Twilight in a Venetian Canal", 79 | "prompt": "Paint the enchanting twilight atmosphere in a Venetian canal, with gondolas gliding on the water and the soft glow of lanterns illuminating the scene.", 80 | "negative_prompt": "Lack of enchantment, harsh lighting, lack of ambiance, unrealistic colors, overly detailed." 81 | }, 82 | { 83 | "name": "The Blooming Cherry Blossoms", 84 | "prompt": "Convey the ephemeral beauty of cherry blossoms in full bloom, with delicate pink petals falling like confetti in the gentle breeze.", 85 | "negative_prompt": "Lack of delicacy, flat colors, lack of movement, unrealistic colors, overworked details." 86 | }, 87 | { 88 | "name": "Sunrise Over a Wheat Field", 89 | "prompt": "Capture the serene beauty of a wheat field at sunrise, with the golden wheat swaying in the breeze and the first light of day painting the landscape.", 90 | "negative_prompt": "Lack of serenity, harsh lighting, lack of warmth, unrealistic colors, overly detailed." 91 | }, 92 | { 93 | "name": "Boating on a Tranquil Pond", 94 | "prompt": "Paint the tranquility of a small pond, with a rowboat gently gliding on the calm water, surrounded by lush greenery and reflected skies.", 95 | "negative_prompt": "Lack of tranquility, static water, lack of reflection, unrealistic colors, overworked details." 96 | }, 97 | { 98 | "name": "Cafe Terrace at Night", 99 | "prompt": "Capture the nocturnal atmosphere of a bustling café terrace at night, with patrons seated at tables, under the soft glow of street lamps and starry skies.", 100 | "negative_prompt": "Lack of nocturnal atmosphere, harsh lighting, lack of ambiance, unrealistic colors, overly detailed." 101 | }, 102 | { 103 | "name": "A Country Path in Autumn", 104 | "prompt": "Convey the rustic beauty of a countryside path in autumn, with colorful leaves carpeting the ground and the soft, golden hues of the autumnal light.", 105 | "negative_prompt": "Lack of rustic charm, flat colors, lack of autumnal ambiance, unrealistic colors, overworked details." 106 | }, 107 | { 108 | "name": "The Clockwork Dreamscape", 109 | "prompt": "An otherworldly realm where gears and mechanisms merge with the organic, creating surreal landscapes where clockwork animals roam and mechanical plants grow.", 110 | "negative_prompt": "Non-clockwork, ordinary, lacking organic fusion, unremarkable, mundane." 111 | }, 112 | { 113 | "name": "The Melting Clocks of Dali's Vision", 114 | "prompt": "A surreal scene inspired by Salvador Dali's art, featuring melting clocks draped over bizarre landscapes, defying the laws of physics and reality.", 115 | "negative_prompt": "Non-melting, ordinary, lacking surrealism, unartistic, mundane." 116 | }, 117 | { 118 | "name": "The Mirrored Masks of Identity", 119 | "prompt": "A surreal masquerade where everyone wears mirrored masks reflecting the emotions and thoughts of others, blurring the boundaries of self and other.", 120 | "negative_prompt": "Non-mirrored, ordinary, lacking masks, unreflective, mundane." 121 | }, 122 | { 123 | "name": "The Endless Staircase Ascent", 124 | "prompt": "A surreal climb up an infinite staircase that defies gravity and perspective, leading to strange and surreal destinations with each step.", 125 | "negative_prompt": "Non-endless, ordinary, lacking staircase, unascendant, mundane." 126 | }, 127 | { 128 | "name": "The Floating Islands of Imagination", 129 | "prompt": "A surreal archipelago where islands float in the sky, each one representing a different aspect of human imagination and creativity.", 130 | "negative_prompt": "Non-floating, ordinary, lacking imagination, uncreative, mundane." 131 | }, 132 | { 133 | "name": "The Eyes in the Sky", 134 | "prompt": "A surreal sky filled with giant floating eyes, watching over a dreamlike landscape where reality and perception merge in unsettling ways.", 135 | "negative_prompt": "Non-observant, ordinary, lacking eyes, unwatchful, mundane." 136 | }, 137 | { 138 | "name": "The Rain of Upside-Down Umbrellas", 139 | "prompt": "A surreal rainstorm where inverted umbrellas fall from the sky, creating an otherworldly spectacle as they twirl and dance in the air.", 140 | "negative_prompt": "Non-inverted, ordinary, lacking umbrellas, unspiraled, mundane." 141 | }, 142 | { 143 | "name": "The Fish in the Desert Mirage", 144 | "prompt": "A surreal desert landscape where an oasis appears as a mirage, but upon closer inspection, it's an underwater realm with fish swimming in the sand.", 145 | "negative_prompt": "Non-miraged, ordinary, lacking fish, unexamined, mundane." 146 | }, 147 | { 148 | "name": "The Doorways to Unknown Realms", 149 | "prompt": "A surreal cityscape filled with doorways that lead to entirely different dimensions and realities, blurring the lines between the possible and impossible.", 150 | "negative_prompt": "Non-doorway, ordinary, lacking dimensions, unblurred, mundane." 151 | }, 152 | { 153 | "name": "The Symphony of Disjointed Melodies", 154 | "prompt": "A surreal musical performance where instruments play disjointed melodies, and the audience becomes part of the surreal composition, both conductor and listener.", 155 | "negative_prompt": "Non-musical, ordinary, lacking melodies, undiscordant, mundane." 156 | }, 157 | { 158 | "name": "The Desert of Mirrors", 159 | "prompt": "A surreal desert where the sands are made of mirrors that reflect distorted and fragmented images, creating a disorienting and mesmerizing landscape.", 160 | "negative_prompt": "Non-mirrored, ordinary, lacking distortion, unreflective, mundane." 161 | }, 162 | { 163 | "name": "The Carousel of Forgotten Dreams", 164 | "prompt": "A surreal carnival carousel that spins endlessly, with each seat holding a different forgotten dream, waiting for riders to unlock their mysteries.", 165 | "negative_prompt": "Non-carousel, ordinary, lacking dreams, unspinning, mundane." 166 | }, 167 | { 168 | "name": "The Library of Whispering Pages", 169 | "prompt": "A surreal library where books whisper their stories to those who enter, with pages that come to life and characters that interact with readers.", 170 | "negative_prompt": "Non-library, ordinary, lacking whispers, unbookish, mundane." 171 | }, 172 | { 173 | "name": "The Symphony of Broken Instruments", 174 | "prompt": "A surreal orchestra where musicians play broken and deformed instruments, creating a cacophony of discordant sounds that blend into an eerie harmony.", 175 | "negative_prompt": "Non-orchestra, ordinary, lacking instruments, unharmonious, mundane." 176 | }, 177 | { 178 | "name": "The Mirrored Faces of Identity", 179 | "prompt": "A surreal gathering where participants have mirrored surfaces instead of faces, reflecting the emotions and thoughts of those they interact with, revealing inner truths.", 180 | "negative_prompt": "Non-mirrored, ordinary, lacking faces, unreflective, mundane." 181 | }, 182 | { 183 | "name": "The Endless Corridor of Mirrors", 184 | "prompt": "A surreal corridor that extends infinitely in all directions, with mirrors on every surface, creating an endless maze of reflections and distortions.", 185 | "negative_prompt": "Non-endless, ordinary, lacking corridors, unreflected, mundane." 186 | }, 187 | { 188 | "name": "The Clockwork Circus of Time", 189 | "prompt": "A surreal circus where time itself is the main attraction, with performers manipulating the flow of time, causing moments to stretch and contract in bizarre ways.", 190 | "negative_prompt": "Non-circus, ordinary, lacking time manipulation, unremarkable, mundane." 191 | }, 192 | { 193 | "name": "The Rain of Falling Stars", 194 | "prompt": "A surreal rainstorm where stars fall from the sky, turning into celestial creatures upon touching the ground, creating a mesmerizing celestial menagerie.", 195 | "negative_prompt": "Non-celestial, ordinary, lacking stars, ungrounded, mundane." 196 | }, 197 | { 198 | "name": "The Underwater Forest of Whispers", 199 | "prompt": "A surreal underwater forest where the trees have branches made of flowing water, and their whispers can be heard by those who dive into its depths.", 200 | "negative_prompt": "Non-underwater, ordinary, lacking whispers, unflowing, mundane." 201 | }, 202 | { 203 | "name": "The Chessboard of Surreal Strategies", 204 | "prompt": "A surreal chessboard where the pieces have minds of their own, and the game unfolds as a surreal battle of wits between the players and the pieces.", 205 | "negative_prompt": "Non-chessboard, ordinary, lacking strategies, unstrategic, mundane." 206 | } 207 | ] -------------------------------------------------------------------------------- /sdxl_styles_themes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byThemes", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Abstract", 9 | "prompt": "abstract {prompt}", 10 | "negative_prompt": "realistic" 11 | }, 12 | { 13 | "name": "Aerial", 14 | "prompt": "aerial {prompt}", 15 | "negative_prompt": "ground" 16 | }, 17 | { 18 | "name": "Fashion", 19 | "prompt": "fashion {prompt}", 20 | "negative_prompt": "casual" 21 | }, 22 | { 23 | "name": "Landscape", 24 | "prompt": "landscape {prompt}", 25 | "negative_prompt": "portrait" 26 | }, 27 | { 28 | "name": "Macro", 29 | "prompt": "macro {prompt}", 30 | "negative_prompt": "micro" 31 | }, 32 | { 33 | "name": "Portrait", 34 | "prompt": "portrait {prompt}", 35 | "negative_prompt": "landscape" 36 | }, 37 | { 38 | "name": "Sports", 39 | "prompt": "sports {prompt}", 40 | "negative_prompt": "stilllife" 41 | }, 42 | { 43 | "name": "Street", 44 | "prompt": "street {prompt}", 45 | "negative_prompt": "studio" 46 | }, 47 | { 48 | "name": "Wedding", 49 | "prompt": "wedding {prompt}", 50 | "negative_prompt": "event" 51 | }, 52 | { 53 | "name": "Wildlife", 54 | "prompt": "wildlife {prompt}", 55 | "negative_prompt": "urban" 56 | } 57 | ] -------------------------------------------------------------------------------- /sdxl_styles_tod.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byTimeofDay", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Afternoon", 9 | "prompt": "afternoon {prompt}", 10 | "negative_prompt": "morning" 11 | }, 12 | { 13 | "name": "BlueHour", 14 | "prompt": "bluehour {prompt}", 15 | "negative_prompt": "night" 16 | }, 17 | { 18 | "name": "Evening", 19 | "prompt": "evening {prompt}", 20 | "negative_prompt": "morning" 21 | }, 22 | { 23 | "name": "Midday", 24 | "prompt": "midday {prompt}", 25 | "negative_prompt": "morning" 26 | }, 27 | { 28 | "name": "Morning", 29 | "prompt": "morning {prompt}", 30 | "negative_prompt": "night" 31 | }, 32 | { 33 | "name": "Night", 34 | "prompt": "night {prompt}", 35 | "negative_prompt": "day" 36 | }, 37 | { 38 | "name": "Sunrise", 39 | "prompt": "sunrise {prompt}", 40 | "negative_prompt": "sunset" 41 | }, 42 | { 43 | "name": "Sunset", 44 | "prompt": "sunset {prompt}", 45 | "negative_prompt": "morning" 46 | }, 47 | { 48 | "name": "Twilight", 49 | "prompt": "twilight {prompt}", 50 | "negative_prompt": "day" 51 | }, 52 | { 53 | "name": "Golden Hour", 54 | "prompt": "The warm and inviting light of early morning or late afternoon, casting long shadows and bathing the world in a soft, golden glow, evoking a sense of tranquility and magic.", 55 | "negative_prompt": "Ungolden, ordinary, lacking warmth, uninviting, mundane." 56 | }, 57 | { 58 | "name": "Midnight Reverie", 59 | "prompt": "The deep, still hours of the night when the world is wrapped in darkness, and a sense of mystery and introspection fills the air, inviting contemplation and solitude.", 60 | "negative_prompt": "Unmidnight, ordinary, lacking stillness, unreflective, mundane." 61 | }, 62 | { 63 | "name": "Twilight Serenity", 64 | "prompt": "The tranquil and ethereal moments when day transitions into night, with the sky painted in shades of pink and purple, creating a dreamy and serene atmosphere.", 65 | "negative_prompt": "Untwilight, ordinary, lacking tranquility, unethereal, mundane." 66 | }, 67 | { 68 | "name": "Noonday Radiance", 69 | "prompt": "The bright and vibrant light of midday, when the sun is at its zenith, casting sharp shadows and illuminating the world with intense brilliance, evoking a sense of energy and vibrancy.", 70 | "negative_prompt": "Unnoonday, ordinary, lacking brightness, unvibrant, mundane." 71 | }, 72 | { 73 | "name": "Dawn's Awakening", 74 | "prompt": "The tender and hopeful moments of early morning when the world awakens from slumber, with the sky painted in soft pastels, creating a sense of renewal and anticipation.", 75 | "negative_prompt": "Undawn, ordinary, lacking tenderness, unawakening, mundane." 76 | }, 77 | { 78 | "name": "Dusk's Embrace", 79 | "prompt": "The gentle and romantic moments of evening when the day transitions into night, with the sky adorned in shades of orange and red, creating a sense of warmth and intimacy.", 80 | "negative_prompt": "Undusk, ordinary, lacking gentleness, unromantic, mundane." 81 | }, 82 | { 83 | "name": "Midday Hustle", 84 | "prompt": "The bustling and energetic hours of late morning and early afternoon when the world is in full swing, and a sense of productivity and activity fills the air, inviting engagement and momentum.", 85 | "negative_prompt": "Unmidday, ordinary, lacking hustle, unproductive, mundane." 86 | }, 87 | { 88 | "name": "Starlit Silence", 89 | "prompt": "The tranquil and mysterious hours of night when the stars fill the sky, and a sense of peace and wonder prevails, inviting contemplation and awe.", 90 | "negative_prompt": "Unstarlit, ordinary, lacking silence, unpeaceful, mundane." 91 | }, 92 | { 93 | "name": "Afternoon Lull", 94 | "prompt": "The calm and soothing hours of late afternoon when the world takes a moment to rest, with the sun casting a gentle glow, creating a sense of relaxation and respite.", 95 | "negative_prompt": "Unafternoon, ordinary, lacking calm, unsoothing, mundane." 96 | }, 97 | { 98 | "name": "Moonlit Dream", 99 | "prompt": "The magical and enchanting hours of night when the moon bathes the world in silvery light, casting a spell of mystery and enchantment, inviting imagination and reverie.", 100 | "negative_prompt": "Unmoonlit, ordinary, lacking magic, unenchanting, mundane." 101 | }, 102 | { 103 | "name": "Misty Morning Hush", 104 | "prompt": "The quiet and mystical hours of early morning when a soft mist blankets the world, creating an atmosphere of stillness and wonder, inviting contemplation and discovery.", 105 | "negative_prompt": "Unmisty, ordinary, lacking quietness, undiscovering, mundane." 106 | }, 107 | { 108 | "name": "Midnight Dance", 109 | "prompt": "The lively and enchanting hours of the night when the world comes alive with music and celebration, with the moon and stars as witnesses, evoking a sense of joy and camaraderie.", 110 | "negative_prompt": "Unmidnight, ordinary, lacking dance, unjoyful, mundane." 111 | }, 112 | { 113 | "name": "Noontime Reverberation", 114 | "prompt": "The vibrant and bustling hours of midday when the world resounds with activity and echoes of life, creating a sense of vitality and resonance, inviting engagement and connection.", 115 | "negative_prompt": "Unnoon, ordinary, lacking vibrancy, unresonant, mundane." 116 | }, 117 | { 118 | "name": "Twilight's Whispers", 119 | "prompt": "The mysterious and alluring moments of evening when the world is bathed in shades of blue and indigo, and whispers of secrets fill the air, creating a sense of intrigue and mystique.", 120 | "negative_prompt": "Untwilight, ordinary, lacking whispers, unintriguing, mundane." 121 | }, 122 | { 123 | "name": "High Noon Blaze", 124 | "prompt": "The intense and scorching hours of midday when the sun blazes at its peak, casting stark shadows and igniting the world with searing heat, evoking a sense of intensity and endurance.", 125 | "negative_prompt": "Unnoon, ordinary, lacking intensity, unenduring, mundane." 126 | }, 127 | { 128 | "name": "Dawn's Promise", 129 | "prompt": "The hopeful and optimistic moments of early morning when the world is bathed in soft light, and the promise of a new day fills the air, creating a sense of anticipation and hope.", 130 | "negative_prompt": "Undawn, ordinary, lacking promise, unhopeful, mundane." 131 | }, 132 | { 133 | "name": "Eerie Midnight", 134 | "prompt": "The eerie and unsettling hours of the night when the world is shrouded in darkness, and a sense of unease and mystery hangs in the air, inviting suspense and trepidation.", 135 | "negative_prompt": "Uneerie, ordinary, lacking darkness, unsuspenseful, mundane." 136 | }, 137 | { 138 | "name": "Afternoon Bliss", 139 | "prompt": "The tranquil and idyllic hours of late afternoon when the world seems to slow down, with the sun casting a warm and comforting light, creating a sense of contentment and serenity.", 140 | "negative_prompt": "Unafternoon, ordinary, lacking tranquility, uncontented, mundane." 141 | }, 142 | { 143 | "name": "Moonlit Reflection", 144 | "prompt": "The introspective and contemplative hours of night when the moonlight illuminates the world, casting a reflective and introspective mood, inviting deep thought and self-discovery.", 145 | "negative_prompt": "Unmoonlit, ordinary, lacking reflection, unreflective, mundane." 146 | }, 147 | { 148 | "name": "Daybreak's Hope", 149 | "prompt": "The tender and promising moments of early morning when the world emerges from darkness, with the sky painted in delicate hues, creating a sense of renewal and optimism.", 150 | "negative_prompt": "Undaybreak, ordinary, lacking tenderness, unoptimistic, mundane." 151 | } 152 | ] -------------------------------------------------------------------------------- /sdxl_styles_viking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byVikingArt", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Viking_Knotwork", 9 | "prompt": "Intricate Viking knotwork design, black and white, historical", 10 | "negative_prompt": "modern, colorful, abstract, nature, portrait, contemporary" 11 | }, 12 | { 13 | "name": "Viking_Runic_Inscription", 14 | "prompt": "Ancient Viking runic inscription, stone carving, runes", 15 | "negative_prompt": "painting, calligraphy, abstract, modern, contemporary" 16 | }, 17 | { 18 | "name": "Viking_Animal_Motifs", 19 | "prompt": "Viking-style animal motifs, wood carving, decorative", 20 | "negative_prompt": "abstract, portrait, landscape, modern, colorful" 21 | }, 22 | { 23 | "name": "Viking_Ship_Design", 24 | "prompt": "Viking longship design, detailed ship carving, historical", 25 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 26 | }, 27 | { 28 | "name": "Viking_Metalwork", 29 | "prompt": "Viking metalwork art, jewelry, intricate craftsmanship", 30 | "negative_prompt": "painting, abstract, modern, colorful, contemporary" 31 | }, 32 | { 33 | "name": "Viking_Warrior_Illustration", 34 | "prompt": "Illustration of a Viking warrior in battle, historical", 35 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 36 | }, 37 | { 38 | "name": "Viking_Artifacts", 39 | "prompt": "Viking artifacts, archaeological finds, historical", 40 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 41 | }, 42 | { 43 | "name": "Viking_Rune_Stone", 44 | "prompt": "Viking rune stone carving, ancient inscriptions", 45 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 46 | }, 47 | { 48 | "name": "Viking_Shield_Design", 49 | "prompt": "Viking shield design, intricate patterns, historical", 50 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 51 | }, 52 | { 53 | "name": "Viking_Mythology_Illustration", 54 | "prompt": "Illustration of Viking mythology scene, gods, historical", 55 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 56 | }, 57 | { 58 | "name": "Viking_Jewelry", 59 | "prompt": "Viking-style jewelry, brooches, necklaces, historical", 60 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 61 | }, 62 | { 63 | "name": "Viking_Axe_Engraving", 64 | "prompt": "Engraving on a Viking axe, historical craftsmanship", 65 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 66 | }, 67 | { 68 | "name": "Viking_Runestone_Replica", 69 | "prompt": "Replica of a Viking runestone, historical artwork", 70 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 71 | }, 72 | { 73 | "name": "Viking_Ship_Illustration", 74 | "prompt": "Illustration of a Viking ship at sea, historical", 75 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 76 | }, 77 | { 78 | "name": "Viking_Wood_Carving", 79 | "prompt": "Viking-style wood carving, decorative craftsmanship", 80 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 81 | }, 82 | { 83 | "name": "Viking_Warrior_Helmet", 84 | "prompt": "Viking warrior helmet design, historical craftsmanship", 85 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 86 | }, 87 | { 88 | "name": "Viking_Dragon_Art", 89 | "prompt": "Artwork featuring Viking dragon motifs, historical", 90 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 91 | }, 92 | { 93 | "name": "Viking_Boat_Decoration", 94 | "prompt": "Viking boat decoration, ornate designs, historical", 95 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 96 | }, 97 | { 98 | "name": "Viking_Warrior_Sculpture", 99 | "prompt": "Sculpture of a Viking warrior, historical depiction", 100 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 101 | }, 102 | { 103 | "name": "Viking_Textile_Pattern", 104 | "prompt": "Viking-style textile pattern, intricate weaving, historical", 105 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 106 | }, 107 | { 108 | "name": "Viking_Raid_Illustration", 109 | "prompt": "Illustration of a Viking raid scene, historical", 110 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 111 | }, 112 | { 113 | "name": "Viking_Warship_Painting", 114 | "prompt": "Painting of a Viking warship, historical portrayal", 115 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 116 | }, 117 | { 118 | "name": "Viking_Artist_Sketch", 119 | "prompt": "Sketch by a Viking artist, historical artwork", 120 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 121 | }, 122 | { 123 | "name": "Viking_Metalwork_Pattern", 124 | "prompt": "Pattern from Viking metalwork, intricate designs", 125 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 126 | }, 127 | { 128 | "name": "Viking_Mythical_Beast", 129 | "prompt": "Artwork featuring mythical beasts from Viking lore, historical", 130 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 131 | }, 132 | { 133 | "name": "Viking_Armor_Design", 134 | "prompt": "Viking armor design, historical craftsmanship", 135 | "negative_prompt": "painting, calligraphy, abstract, modern, colorful" 136 | }, 137 | { 138 | "name": "Viking_Ship_Model", 139 | "prompt": "Model of a Viking ship, intricate craftsmanship, historical", 140 | "negative_prompt": "abstract, modern, contemporary, nature, portrait" 141 | }, 142 | { 143 | "name": "Viking_Folk_Art", 144 | "prompt": "Traditional Viking folk art, decorative motifs, historical", 145 | "negative_prompt": "abstract, portrait, landscape, modern, contemporary" 146 | } 147 | ] 148 | -------------------------------------------------------------------------------- /sdxl_styles_wildlife.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byWildlife", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "African Safari Adventure", 9 | "prompt": "Embark on an African safari adventure and capture the majesty of wildlife. Illustrate a scene with lions, elephants, and giraffes in their natural habitat.", 10 | "negative_prompt": "Urban environment, lack of wildlife, absence of safari elements, non-safari scene." 11 | }, 12 | { 13 | "name": "Arctic Wildlife Encounter", 14 | "prompt": "Explore the beauty of Arctic wildlife. Depict a polar bear on a vast icy landscape or a group of penguins huddled together in the cold.", 15 | "negative_prompt": "Tropical setting, lack of Arctic wildlife, absence of icy elements, non-Arctic scene." 16 | }, 17 | { 18 | "name": "Underwater Coral Reef Wonderland", 19 | "prompt": "Dive into the vibrant world of coral reefs. Illustrate a colorful underwater scene with tropical fish, corals, and sea turtles in their mesmerizing habitat.", 20 | "negative_prompt": "Desert landscape, lack of underwater life, absence of coral elements, non-underwater scene." 21 | }, 22 | { 23 | "name": "Amazon Rainforest Biodiversity", 24 | "prompt": "Discover the incredible biodiversity of the Amazon rainforest. Capture a lush scene with exotic birds, monkeys, and lush greenery in the heart of the jungle.", 25 | "negative_prompt": "Urban setting, lack of rainforest life, absence of lush greenery, non-rainforest scene." 26 | }, 27 | { 28 | "name": "Savannah Wildlife Spectacle", 29 | "prompt": "Witness the grandeur of the African savannah. Depict a sweeping landscape with zebras, wildebeests, and cheetahs in a breathtaking natural tableau.", 30 | "negative_prompt": "Polar setting, lack of savannah life, absence of grasslands, non-savannah scene." 31 | }, 32 | { 33 | "name": "Australian Outback Encounter", 34 | "prompt": "Explore the rugged beauty of the Australian outback. Illustrate a scene with kangaroos, koalas, and unique flora in this iconic Australian wilderness.", 35 | "negative_prompt": "Tropical paradise, lack of outback wildlife, absence of arid terrain, non-outback scene." 36 | }, 37 | { 38 | "name": "Deep Sea Discovery", 39 | "prompt": "Delve into the mysteries of the deep sea. Depict a bioluminescent underwater world with strange creatures, jellyfish, and deep-sea flora in the abyss.", 40 | "negative_prompt": "Surface world, lack of deep-sea life, absence of bioluminescence, non-deep-sea scene." 41 | }, 42 | { 43 | "name": "North American Wilderness Serenity", 44 | "prompt": "Experience the tranquility of the North American wilderness. Capture a serene scene with deer, bears, and serene forests under a clear blue sky.", 45 | "negative_prompt": "Desert landscape, lack of wilderness life, absence of forests, non-wilderness scene." 46 | }, 47 | { 48 | "name": "Tropical Rainforest Canopy", 49 | "prompt": "Ascend to the canopy of a tropical rainforest. Illustrate a scene with toucans, colorful butterflies, and lush canopy foliage high above the forest floor.", 50 | "negative_prompt": "Urban setting, lack of rainforest life, absence of canopy foliage, non-rainforest scene." 51 | }, 52 | { 53 | "name": "African Elephant Migration", 54 | "prompt": "Witness the epic African elephant migration. Depict a sweeping landscape with a herd of elephants on the move across the vast savannah.", 55 | "negative_prompt": "Arctic environment, lack of elephants, absence of savannah terrain, non-migration scene." 56 | }, 57 | { 58 | "name": "Antarctic Penguin Parade", 59 | "prompt": "Experience the charm of a penguin parade in Antarctica. Illustrate a scene with adorable penguins marching in unison on the icy continent.", 60 | "negative_prompt": "Desert landscape, lack of penguins, absence of icy terrain, non-Antarctic scene." 61 | }, 62 | { 63 | "name": "Majestic Mountain Wildlife", 64 | "prompt": "Capture the majesty of mountain wildlife. Depict a serene scene with mountain goats, eagles, and other creatures thriving in the high-altitude environment.", 65 | "negative_prompt": "Underwater setting, lack of mountain wildlife, absence of mountain terrain, non-mountain scene." 66 | }, 67 | { 68 | "name": "Jungle Canopy Adventure", 69 | "prompt": "Embark on an adventure in the jungle canopy. Illustrate a scene with monkeys swinging through the trees, vibrant birds, and lush greenery.", 70 | "negative_prompt": "Arctic setting, lack of jungle wildlife, absence of canopy foliage, non-jungle scene." 71 | }, 72 | { 73 | "name": "African Big Five Safari", 74 | "prompt": "Embark on an African safari and encounter the Big Five. Capture a scene with lions, leopards, rhinoceroses, elephants, and buffaloes in their natural habitat.", 75 | "negative_prompt": "Urban environment, lack of Big Five animals, absence of safari elements, non-safari scene." 76 | }, 77 | { 78 | "name": "Arctic Foxes in the Snow", 79 | "prompt": "Witness the resilience of Arctic foxes in the snowy wilderness. Depict these white-furred foxes navigating their snowy environment with grace and adaptability.", 80 | "negative_prompt": "Tropical setting, lack of Arctic foxes, absence of snowy terrain, non-Arctic scene." 81 | }, 82 | { 83 | "name": "Australian Reef Life", 84 | "prompt": "Dive into the vibrant life of the Great Barrier Reef. Illustrate a colorful underwater scene with coral formations, sea turtles, and a multitude of fish species.", 85 | "negative_prompt": "Desert landscape, lack of reef life, absence of coral formations, non-reef scene." 86 | }, 87 | { 88 | "name": "African Cheetah Sprint", 89 | "prompt": "Experience the lightning-fast sprint of a cheetah in the African savannah. Capture the cheetah's incredible speed and grace as it chases prey.", 90 | "negative_prompt": "Tropical paradise, lack of cheetahs, absence of savannah terrain, non-sprint scene." 91 | }, 92 | { 93 | "name": "Amazon River Wildlife", 94 | "prompt": "Explore the rich diversity of wildlife along the Amazon River. Depict a scene with river dolphins, colorful birds, and lush vegetation along the riverbanks.", 95 | "negative_prompt": "Urban setting, lack of river wildlife, absence of river scenery, non-Amazon scene." 96 | }, 97 | { 98 | "name": "Boreal Forest Moose Encounter", 99 | "prompt": "Encounter the majesty of a moose in a boreal forest. Illustrate a serene scene with a moose wading in a forested lake, surrounded by lush greenery.", 100 | "negative_prompt": "Underwater setting, lack of moose, absence of boreal forest, non-encounter scene." 101 | }, 102 | { 103 | "name": "Gorilla Family in the Jungle", 104 | "prompt": "Observe a family of gorillas in their jungle habitat. Capture a heartwarming scene of gorillas bonding, with lush vegetation as their backdrop.", 105 | "negative_prompt": "Desert landscape, lack of gorillas, absence of jungle elements, non-jungle scene." 106 | }, 107 | { 108 | "name": "Alaskan Brown Bear Fishing", 109 | "prompt": "Witness the fishing prowess of Alaskan brown bears. Illustrate a scene with a massive bear standing in a rushing river, catching salmon in its powerful jaws.", 110 | "negative_prompt": "Tropical paradise, lack of bears, absence of a river, non-Alaskan scene." 111 | }, 112 | { 113 | "name": "African Serengeti Migration", 114 | "prompt": "Experience the epic annual migration of wildebeests in the African Serengeti. Depict a sweeping landscape with thousands of wildebeests on the move.", 115 | "negative_prompt": "Arctic setting, lack of wildebeests, absence of savannah terrain, non-migration scene." 116 | }, 117 | { 118 | "name": "Coral Polyp Microcosm", 119 | "prompt": "Explore the microscopic world of coral polyps in a coral reef. Illustrate the intricate beauty of these tiny organisms building coral structures.", 120 | "negative_prompt": "Desert landscape, lack of coral polyps, absence of a reef, non-coral scene." 121 | }, 122 | { 123 | "name": "Bengal Tiger in the Jungle", 124 | "prompt": "Observe the elusive Bengal tiger in its jungle habitat. Capture a scene of a majestic tiger prowling through dense foliage with stealth and grace.", 125 | "negative_prompt": "Arctic setting, lack of tigers, absence of jungle elements, non-tiger scene." 126 | }, 127 | { 128 | "name": "Humpback Whale Breach", 129 | "prompt": "Experience the breathtaking sight of a humpback whale breaching the surface. Illustrate the sheer power and beauty of this massive marine mammal in action.", 130 | "negative_prompt": "Desert landscape, lack of humpback whales, absence of ocean, non-whale scene." 131 | }, 132 | { 133 | "name": "Red-Eyed Tree Frog in the Rainforest", 134 | "prompt": "Discover the vibrant colors of a red-eyed tree frog in the lush rainforest. Depict this small but stunning amphibian in its natural habitat.", 135 | "negative_prompt": "Urban setting, lack of tree frogs, absence of rainforest elements, non-frog scene." 136 | }, 137 | { 138 | "name": "Siberian Tiger Stalking Prey", 139 | "prompt": "Witness the stealth and determination of a Siberian tiger stalking its prey. Capture the intensity of the tiger's focus as it prepares for a hunt.", 140 | "negative_prompt": "Tropical paradise, lack of tigers, absence of stalking elements, non-tiger scene." 141 | }, 142 | { 143 | "name": "Monarch Butterfly Migration", 144 | "prompt": "Follow the incredible journey of Monarch butterflies during their migration. Illustrate a scene with thousands of butterflies covering trees in a Mexican forest.", 145 | "negative_prompt": "Arctic setting, lack of butterflies, absence of migration, non-butterfly scene." 146 | }, 147 | { 148 | "name": "African Nile Crocodile Basking", 149 | "prompt": "Observe the ancient Nile crocodile basking in the sun along the African riverbanks. Capture the prehistoric appearance of this formidable reptile.", 150 | "negative_prompt": "Tropical paradise, lack of crocodiles, absence of riverbanks, non-crocodile scene." 151 | }, 152 | { 153 | "name": "Honeybee Hive Activity", 154 | "prompt": "Enter the busy world of a honeybee hive. Illustrate the organized chaos as worker bees tend to their hive, collecting nectar and producing honey.", 155 | "negative_prompt": "Desert landscape, lack of honeybees, absence of hive activity, non-hive scene." 156 | } 157 | 158 | ] -------------------------------------------------------------------------------- /sdxl_styles_wyvern.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "none byWyvern", 4 | "prompt": "", 5 | "negative_prompt": "" 6 | }, 7 | { 8 | "name": "Azure Skywing", 9 | "prompt": "A majestic wyvern with scales as blue as the sky, capable of soaring through the heavens with grace and power, evoking a sense of awe and wonder.", 10 | "negative_prompt": "Non-azure, ordinary, lacking grace, unpowerful, mundane." 11 | }, 12 | { 13 | "name": "Emerald Venomspine", 14 | "prompt": "A deadly wyvern adorned in emerald green scales, equipped with venomous spines that it launches at its prey with deadly accuracy, creating a sense of danger and intrigue.", 15 | "negative_prompt": "Non-emerald, ordinary, lacking venom, unaccurate, mundane." 16 | }, 17 | { 18 | "name": "Crimson Firebreath", 19 | "prompt": "A fearsome wyvern with fiery red scales and the ability to unleash scorching flames from its maw, capable of turning anything to ash, evoking a sense of terror and destruction.", 20 | "negative_prompt": "Non-crimson, ordinary, lacking fire, unscorching, mundane." 21 | }, 22 | { 23 | "name": "Golden Serpentwing", 24 | "prompt": "A regal wyvern with gleaming golden scales and wings that shimmer in the sunlight, a symbol of wealth and power, creating a sense of opulence and grandeur.", 25 | "negative_prompt": "Non-golden, ordinary, lacking wings, unshimmering, mundane." 26 | }, 27 | { 28 | "name": "Shadowy Nightstalker", 29 | "prompt": "A stealthy wyvern with inky black scales that can blend seamlessly into the night, lurking in the shadows and striking with swift and deadly precision, evoking a sense of mystery and fear.", 30 | "negative_prompt": "Non-shadowy, ordinary, lacking stealth, unprecise, mundane." 31 | }, 32 | { 33 | "name": "Crystal Frostclaw", 34 | "prompt": "An ice-cold wyvern with translucent crystal-like scales and talons sharp enough to shatter stone, capable of freezing its prey solid, creating a sense of icy beauty and danger.", 35 | "negative_prompt": "Non-crystal, ordinary, lacking frost, unshattering, mundane." 36 | }, 37 | { 38 | "name": "Sapphire Stormrider", 39 | "prompt": "A wyvern with stormy blue scales and the power to control the weather, summoning thunderstorms and tornadoes at will, evoking a sense of elemental might and chaos.", 40 | "negative_prompt": "Non-sapphire, ordinary, lacking storm control, unsummoning, mundane." 41 | }, 42 | { 43 | "name": "Onyx Deathwing", 44 | "prompt": "A wyvern of darkness with onyx black scales and the ability to drain the life force from its victims, leaving behind a trail of death and desolation, creating a sense of dread and malevolence.", 45 | "negative_prompt": "Non-onyx, ordinary, lacking life drain, undraining, mundane." 46 | }, 47 | { 48 | "name": "Amethyst Dreamwing", 49 | "prompt": "A mystical wyvern with amethyst-hued scales and the power to enter the dreams of mortals, offering wisdom or weaving nightmares, evoking a sense of enchantment and mysticism.", 50 | "negative_prompt": "Non-amethyst, ordinary, lacking dream entry, unwisdom, mundane." 51 | }, 52 | { 53 | "name": "Verdant Forestgale", 54 | "prompt": "A wyvern of the wilds with verdant green scales, capable of manipulating the forces of nature, summoning winds and unleashing the fury of the forest, creating a sense of natural harmony and chaos.", 55 | "negative_prompt": "Non-verdant, ordinary, lacking nature manipulation, unsummoning, mundane." 56 | }, 57 | { 58 | "name": "Topaz Thunderstrike", 59 | "prompt": "A thunderous wyvern with scales the color of topaz and the power to summon lightning bolts from the sky, striking down its foes with electrifying force, evoking a sense of electrifying power and awe.", 60 | "negative_prompt": "Non-topaz, ordinary, lacking lightning, unstriking, mundane." 61 | }, 62 | { 63 | "name": "Obsidian Nightshade", 64 | "prompt": "A nocturnal wyvern with obsidian-black scales and the ability to create impenetrable darkness, enveloping its prey in inescapable shadows, creating a sense of darkness and fear.", 65 | "negative_prompt": "Non-obsidian, ordinary, lacking darkness, unenveloping, mundane." 66 | }, 67 | { 68 | "name": "Ruby Flameheart", 69 | "prompt": "A passionate wyvern with fiery red scales that can channel its inner flame into powerful bursts of fire, igniting its enemies with relentless fury, creating a sense of fiery determination and destruction.", 70 | "negative_prompt": "Non-ruby, ordinary, lacking flame, unigniting, mundane." 71 | }, 72 | { 73 | "name": "Aurora Skydancer", 74 | "prompt": "A graceful wyvern with iridescent scales that shimmer like the Northern Lights, capable of mesmerizing its prey with hypnotic displays, creating a sense of ethereal beauty and enchantment.", 75 | "negative_prompt": "Non-aurora, ordinary, lacking shimmer, unmesmerizing, mundane." 76 | }, 77 | { 78 | "name": "Cerulean Wavecrest", 79 | "prompt": "A coastal wyvern with cerulean scales that rides the ocean's waves and commands the tides, creating surges and storms, evoking a sense of maritime might and chaos.", 80 | "negative_prompt": "Non-cerulean, ordinary, lacking wave control, uncreating surges, mundane." 81 | }, 82 | { 83 | "name": "Opal Dreamseeker", 84 | "prompt": "A visionary wyvern with opalescent scales and the ability to reveal hidden truths and glimpses of the future through its dreams, creating a sense of prophetic insight and mystique.", 85 | "negative_prompt": "Non-opal, ordinary, lacking dream vision, untruthful, mundane." 86 | }, 87 | { 88 | "name": "Crimson Inferno", 89 | "prompt": "A blazing wyvern with crimson scales and an insatiable appetite for destruction, capable of turning the world to ash with its fiery breath, creating a sense of fiery apocalypse and chaos.", 90 | "negative_prompt": "Non-crimson, ordinary, lacking destruction, unincinerating, mundane." 91 | }, 92 | { 93 | "name": "Sapphire Stormsurge", 94 | "prompt": "A tempestuous wyvern with sapphire scales and the power to conjure raging storms at sea, summoning massive waves and whirlpools, evoking a sense of aquatic fury and mayhem.", 95 | "negative_prompt": "Non-sapphire, ordinary, lacking storm conjuring, unwhirlpooling, mundane." 96 | }, 97 | { 98 | "name": "Emerald Forestwhisper", 99 | "prompt": "A guardian wyvern with emerald-green scales that protects the heart of the ancient forest, communicating with the spirits of the woods and defending its domain with unwavering resolve, creating a sense of natural harmony and protection.", 100 | "negative_prompt": "Non-emerald, ordinary, lacking forest protection, undefending, mundane." 101 | }, 102 | { 103 | "name": "Crystal Moonshroud", 104 | "prompt": "A mystical wyvern with crystalline scales that reflects the light of the moon, capable of creating illusions and bending reality to its whims, evoking a sense of enchantment and illusion.", 105 | "negative_prompt": "Non-crystal, ordinary, lacking illusion, unreflecting, mundane." 106 | } 107 | ] --------------------------------------------------------------------------------