A sample prompt of what you can find in this page
Prompt by Selena_H

creating gentle shadows Nano Banana prompts

very few results

23 days ago

full body ighlyy detailed portrait of a man eith buzz cut hair style with his face and upper body covered in splashes of neon, fluorescent paint that glows vividly under UV blacklight. The man’s eyes are closed, her expression serene and peaceful, as vibrant colors—pinks, purples, oranges, and blues—dance across her skin. The glowing paint creates abstract patterns across her face, neck, and shoulders, with specks and streaks of bright neon colors enhancing the ethereal atmosphere. The lighting is dramatic and minimal, with the UV light illuminating the fluorescent paint, making the colors pop against the dark, almost pitch-black background. The contrast between the neon hues and the shadows emphasizes the glowing effect of the paint, giving the image a surreal, otherworldly feel. The texture of the paint is sharp and detailed, while the soft lighting highlights the contours of his face, creating a beautiful interplay of light and shadow. The overall mood is artistic, futuristic, and mesmerizing, with a focus on the glowing, vibrant colors and the serene expression of the subject." Key Elements (Embedded in the Prompt): Neon Fluorescent Paint: The subject’s face and body are adorned with splashes of vibrant fluorescent paint that glows under UV light, creating an abstract, artistic effect. UV Blacklight Lighting: The UV lighting illuminates the fluorescent paint, making the neon colors pop against the dark background. Closed-Eye Pose: The subject’s eyes are gently closed, with a serene expression, emphasizing a calm, peaceful mood. Dark, Minimal Background: The dark background provides strong contrast, allowing the glowing colors to stand out vividly. Soft Lighting on the Face: The soft lighting creates a beautiful interplay of light and shadow, highlighting the subject’s features while keeping the focus on the neon colors. Otherworldly, Artistic Vibe: The overall mood is futuristic and ethereal, capturing the surreal beauty of the glowing paint under UV light.

1 day ago

sometric 3D Miniature Shanghai City Scene – Cute Pastel Cartoon Style Prompt Text: Create a charming, isometric 3D illustration of a miniature Shanghai city scene. The entire composition sits on a small square platform representing a slice of land, about 1/10 the total image height. Platform & Environment: The platform includes a river that cuts diagonally through it, separating about 1/5 of the front corner area facing the viewer. On this near corner, depict The Bund, with shorter neo-classical buildings and a waterfront promenade. The river should have soft blue tones and curved, gentle edges. Landmarks (stylized 3D cartoon style): Back: shanghai world financial center tower— tallest structure, iconic steel blue color with the iconic top portion. Center: Shanghai Disneyland Castle (image uploaded to this prompt for reference) — 2/3 the height of the Oriental Pearl Tower, with white, blue, and gold trim, light pink shading. Left: Oriental Pearl Tower — 2/3 the height of the Shanghai World Financial Center Tower, simplified, recognizable silhouette. Right: Jade Buddha Palace — traditional Chinese pagoda, half the height of oriental pearl tower. Surrounding Elements: Add small, round hawker stands spaced evenly around the platform edges for local charm. Include mid-rise gray buildings behind or between landmarks to suggest urban density without visual clutter. Typography: Above the scene, center the word “Shanghai” in rounded 3D block letters, soft white or light gray, floating gently over the skyline. Style & Lighting: Isometric, clean, and cute. Color palette: Pastel with earthy tones, pinks, muted reds, and light blues. Lighting: Soft daylight with gentle shadows and warm highlights. Overall mood: Whimsical, balanced, and visually calm.

12 days ago

photography, monochrome, front view, evoking the starkness of classic noir with an intimate, psychological edge, close-up, profile with strategic lighting to accentuate features and create depth, black and white digital photography, with a high emphasis on texture and contrast, Canon EOS 5D Mark IV, preferred for its full-frame sensor that captures detailed gradations in tone, Canon EF 85mm f/1.2L II USM, offering a shallow depth of field, manual mode, using a single off-camera flash with a snoot to direct a focused beam of light, camera on a tripod for stability, male in his thirties, with a beard and a gaze that holds an introspective stillness, beard is well-groomed, catching highlights where the light grazes, and his eyes are deep-set, underlined by a furrowed brow, indicative of concentration or internal conflict, minimalist, to avoid distracting from the subject's emotive presence, he absence of a background ensures that all narrative weight is carried by the subject's expression and the play of light on skin, void of context, the darkness envelops the subject, focusing attention on the stark contrast of light and shadow across his face, low key, with a singular source that creates a diagonal divide across the face, symbolizing the chiaroscuro technique's thematic play between revelation and concealment, the light catches on the ridges of the subject's facial features; the thoughtful position of his hand, fingers resting gently yet firmly against his chin, adds to the introspective quality, portrait invites the viewer into a moment of private reflection, punctuated by a profound silence that speaks volumes, serving as a canvas for the viewer's own interpretations of light, shadow, and the layers of the human condition, UHD--ar 9:16 --style raw --stylize 600

24 days ago

# Keeps 589 bright, boosts jewelry shine, replaces background, and maps to Casinofi duotone. import cv2, numpy as np from google.colab import files from PIL import Image # Upload your image when prompted up = files.upload() fn = list(up.keys())[0] img_bgr = cv2.imdecode(np.frombuffer(up[fn], np.uint8), cv2.IMREAD_COLOR) # --- Palette (BGR) --- HEX = lambda h: (int(h[5:7],16), int(h[3:5],16), int(h[1:3],16)) SHADOW = np.array(HEX("#0F1011"), np.float32) MID = np.array(HEX("#8E7A55"), np.float32) HILITE = np.array(HEX("#E6D2A1"), np.float32) HILITE_PLUS = np.array(HEX("#EBDDB7"), np.float32) # extra-bright cream for 589 # --- Helper: gradient map (shadow -> mid -> highlight) --- def gradient_map(gray01): g = gray01[...,None] t1 = np.clip(g/0.5, 0, 1) t2 = np.clip((g-0.5)/0.5, 0, 1) low = SHADOW*(1-t1) + MID*t1 high = MID*(1-t2) + HILITE*t2 return np.where(g<=0.5, low, high) hsv = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2HSV) # --- Masks --- # Background (yellow) range bg_mask = cv2.inRange(hsv, (15, 120, 120), (40, 255, 255)) # tune if needed # Shirt (blue) range – helpful for separate contrast if you want shirt_mask = cv2.inRange(hsv, (95, 80, 40), (130, 255, 255)) # Numbers “589” (white-ish areas on shirt) gray = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2GRAY) num_mask = cv2.threshold(gray, 210, 255, cv2.THRESH_BINARY)[1] # bright white # Jewelry (gold/yellow highlights) jew_mask = cv2.inRange(hsv, (12, 60, 120), (30, 255, 255)) # gold tones # Clean masks a bit def clean(m, k=3): kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (k,k)) m = cv2.morphologyEx(m, cv2.MORPH_OPEN, kernel, iterations=1) m = cv2.morphologyEx(m, cv2.MORPH_CLOSE, kernel, iterations=1) return m bg_mask = clean(bg_mask, 5) shirt_mask= clean(shirt_mask, 5) num_mask = clean(num_mask, 3) jew_mask = clean(jew_mask, 3) # --- Step 1: Replace background with deep charcoal --- out = img_bgr.copy() out[bg_mask>0] = SHADOW # --- Step 2: Convert subject to Casinofi duotone --- # Work on non-background regions subj = out.copy() subj_mask = (bg_mask==0).astype(np.uint8)*255 subj_gray = cv2.cvtColor(subj, cv2.COLOR_BGR2GRAY).astype(np.float32)/255.0 mapped = gradient_map(subj_gray).astype(np.uint8) mapped = cv2.bitwise_and(mapped, mapped, mask=subj_mask) bg_area = cv2.bitwise_and(out, out, mask=bg_mask) out = cv2.add(mapped, bg_area) # --- Step 3: Boost numbers “589” to brighter cream and keep edges crisp --- num_rgb = np.zeros_like(out, dtype=np.uint8) num_rgb[:] = HILITE_PLUS num_layer = cv2.bitwise_and(num_rgb, num_rgb, mask=num_mask) out = cv2.bitwise_and(out, out, mask=cv2.bitwise_not(num_mask)) out = cv2.add(out, num_layer) # Optional: thin dark stroke around numbers edges = cv2.Canny(num_mask, 50, 150) stroke = cv2.dilate(edges, np.ones((2,2), np.uint8), iterations=1) out[stroke>0] = (out[stroke>0]*0 + SHADOW*0.9).astype(np.uint8) # --- Step 4: Jewelry shine (Screen-like brighten in cream) --- # Create a cream layer and blend additively where jewelry mask is j_layer = np.zeros_like(out, dtype=np.float32) j_layer[:] = HILITE j_mask_f = (jew_mask.astype(np.float32)/255.0)[...,None] out_f = out.astype(np.float32) out = np.clip(out_f + j_layer*0.35*j_mask_f, 0, 255).astype(np.uint8) # --- Step 5: Gentle contrast pop on subject only --- subj_mask3 = cv2.merge([subj_mask, subj_mask, subj_mask]) subj_pix = np.where(subj_mask3>0) sub = out.astype(np.float32) sub[subj_pix] = np.clip((sub[subj_pix]-20)*1.08 + 20, 0, 255) out = sub.astype(np.uint8) # Save cv2.imwrite("output_casinofi.png", out) files.download("output_casinofi.png") print("Done. Download output_casinofi.png")