WizWhite's picture
Upload LoRA: Wizard's Midsommar Pagan Murals from Civitai model ID 1325989
5679ec4 verified
---
license: other
license_name: "bespoke-lora-trained-license"
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=False
tags:
- ari aster
- concept
- diffusers
- folk art
- hand-painted
- lora
- midsommar
- migrated
- murals
- naive art
- stable-diffusion
- template:sd-lora
- text-to-image
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: w1z_m1ds0mm4r style
widget:
- text: 'w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted mural on wooden planks, that reads "WELCOME TO HARGA" in red swirly script lettering. Below a smaller text that say "- Newbloods Wanted -". Decorated frame featuring kurbits ornamentation of gourds, leaves, and flowers in pink and yellow. The painting also features bear waving, inside of the bear''s gaping mouth is the face of a man peeking out. The man''s face is inside the bear''s mouth
'
output:
url: >-
61739500.jpeg
- text: 'w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted mural on wooden planks, that reads "ATTESTUPA" in bold, swirly script letters. Above is a smaller text that say "Championship Qualification". Decorated frame featuring kurbits ornamentation of gourds, leaves, and flowers in pink and yellow. The painting features a man in a linen tunic jumping from a mountain cliff. At the bottom is the information "Harga - Midsummer 2025"
'
output:
url: >-
61739582.jpeg
- text: 'w1z_m1ds0mm4r style, naive Scandinavian folk art, hand-painted mural on wooden planks. A man dressed in traditional Nordic folk attire, wearing a white embroidered tunic with delicate patterns, a matching vest, and a woven blue belt with intricate geometric designs. He holds a massive wooden ceremonial mallet. A mountain with a steep cliff wall beside him. Decorated frame featuring kurbits ornamentation of gourds, leaves, and flowers in maroon and tan.
'
output:
url: >-
61739592.jpeg
- text: 'w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted artwork depicting Swedish summer
'
output:
url: >-
61739599.jpeg
- text: 'w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted artwork depicting Batman in a bath tub
'
output:
url: >-
61739602.jpeg
---
# Wizard's Midsommar Pagan Murals
<Gallery />
## Model description
<p><strong><span style="color:rgb(193, 194, 197)">LoRA strength:</span></strong><span style="color:rgb(193, 194, 197)"> </span><code>0.8 - 1.0</code><br /><strong><span style="color:rgb(193, 194, 197)">Trigger:</span></strong><span style="color:rgb(193, 194, 197)"> </span><code>w1z_m1ds0mm4r style</code></p><p><strong><span style="color:rgb(193, 194, 197)">Usage examples:</span></strong><br /><span style="color:rgb(193, 194, 197)">Mural on wood boards = </span><code>w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted mural on wooden planks depicting [YOUR PROMPT]. Decorated frame featuring kurbits ornamentation of leaves, and flowers</code><br /><span style="color:rgb(193, 194, 197)">Poster/other = </span><code>w1z-m1ds0mm4r, naive Scandinavian folk art, hand-painted artwork [YOUR PROMPT]. Decorated frame featuring kurbits ornamentation of leaves, and flowers</code></p><p>A LoRA inspired by the murals in the movie Midsommar by Ari Aster, originals are made by the excellent artist/illustrator Ragnar Persson (<a rel="ugc" href="https://papercutshop.se/writer/ragnar-persson/">check out his art books</a>)</p>
## Trigger words
You should use `w1z_m1ds0mm4r style`, `naive Scandinavian folk art, hand-painted artwork, with a decorated frame featuring kurbits ornamentation of leaves, and flowers`, `naive Scandinavian folk art, hand-painted mural on wooden planks. Decorated frame featuring kurbits ornamentation of leaves, and flowers` to trigger the generation.
## Download model
Weights for this model are available in Safetensors format.
[Download](/WizWhite/wizard-s-midsommar-pagan-murals/tree/main) them in the Files & versions tab.
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipe.load_lora_weights('WizWhite/wizard-s-midsommar-pagan-murals', weight_name='w1z-m1ds0mm4r.safetensors')
image = pipeline('w1z-m1ds0mm4r style, naive Scandinavian folk art, hand-painted mural on wooden planks, that reads "WELCOME TO HARGA" in red swirly script lettering. Below a smaller text that say "- Newbloods Wanted -". Decorated frame featuring kurbits ornamentation of gourds, leaves, and flowers in pink and yellow. The painting also features bear waving, inside of the bear\'s gaping mouth is the face of a man peeking out. The man\'s face is inside the bear\'s mouth
').images[0]
```
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)