[
#Promptshare] [
#AIart ]
Try this prompt design and create your own beauty.
Grok imagine
========================
#[derive(Debug)]
struct ImageMetadata {
title: String,
aspect_ratio: String,
style: String,
}
#[derive(Debug)]
struct Subject {
description: String,
features: Features,
expression: String,
}
#[derive(Debug)]
struct Features {
hair: Hair,
skin: String,
makeup: String,
}
#[derive(Debug)]
struct Hair {
color: String,
style: String,
}
#[derive(Debug)]
struct Garment {
creative_element: String,
newspaper_details: String,
gothic_accent: String,
bottom: String,
}
#[derive(Debug)]
struct Accessories {
gloves: String,
arm_bands: String,
stockings: String,
choker: String,
}
#[derive(Debug)]
struct Attire {
garment: Garment,
accessories: Accessories,
}
#[derive(Debug)]
struct PoseAndComposition {
pose: String,
framing: String,
}
#[derive(Debug)]
struct Environment {
setting: String,
background: String,
}
#[derive(Debug)]
struct Lighting {
setup: String,
quality: String,
}
#[derive(Debug)]
struct ColorPalette {
film_simulation: String,
overall_tone: String,
}
#[derive(Debug)]
struct ImagePrompt {
metadata: ImageMetadata,
subject: Subject,
attire: Attire,
pose_and_composition: PoseAndComposition,
environment: Environment,
lighting: Lighting,
color_palette: ColorPalette,
}
let image_prompt = ImagePrompt {
metadata: ImageMetadata {
title: "Newspaper Top Editorial".to_string(),
aspect_ratio: "4:5 vertical".to_string(),
style: "High-end fashion magazine editorial with gothic anime fusion".to_string(),
},
subject: Subject {
description: "Young woman based on user reference, sultry seductive with playful gothic anime energy".to_string(),
features: Features {
hair: Hair {
color: "Long blonde".to_string(),
style: "Twin ponytails tied with black ribbons, slightly tousled with natural flow".to_string(),
},
skin: "Natural clear with subtle blush, dewy luminous finish".to_string(),
makeup: "Soft natural with subtle peachy blush, nude glossy lips, striking blue eyes with anime-inspired depth".to_string(),
},
expression: "Playful seductive gaze, bedroom eyes with confident alluring look, lips slightly parted".to_string(),
},
attire: Attire {
garment: Garment {
creative_element: "English newspaper used as makeshift top, held against chest with arms crossed".to_string(),
newspaper_details: "Vintage-style with visible text, slightly crumpled, integrated gothic lace patterns".to_string(),
gothic_accent: "Off-shoulder black dress elements with ruffled edges and corset-like bodice beneath newspaper".to_string(),
bottom: "High-waisted deep blue denim jeans".to_string(),
},
accessories: Accessories {
gloves: "Black fingerless gloves".to_string(),
arm_bands: "Striped arm bands".to_string(),
stockings: "Fishnet stockings".to_string(),
choker: "Choker with lace detailing".to_string(),
},
},
pose_and_composition: PoseAndComposition {
pose: "Arms crossed over chest holding newspaper against body, hands gripping edges, slight body twist with playful stance".to_string(),
framing: "Medium shot waist up, subject center-right with negative space".to_string(),
},
environment: Environment {
setting: "Professional photography studio".to_string(),
background: "Draped fabric backdrop in muted neutral tones, plain white emphasis with subtle gothic texture".to_string(),
},
lighting: Lighting {
setup: "Professional studio softbox lighting".to_string(),
quality: "Extremely soft, no hard shadows, gradual falloff with subtle anime-inspired highlights".to_string(),
},
color_palette: ColorPalette {
film_simulation: "PRO Neg Std inspired, desaturated muted tones".to_string(),
overall_tone: "Desaturated grey-shifted with black gothic accents and blue eye pops".to_string(),
},
};