A minimal poster merges a character profile with a city skyline in flat ink

A gestalt poster combines a character's profile silhouette with a city skyline, using flat archival paper tones and screen-print overprint.

Prompt

create temp view franchise_dna as
select
infer_iconic_character_profile(:franchise) as profile_mask,
infer_flat_environment(:franchise) as foreground,
infer_light_color(:franchise) as light_ink,
infer_dark_color(:franchise) as dark_ink;

create temp view poster_layers as
select
layer1 = render_background(light_ink, texture='archival_paper'),
layer2 = render_foreground(foreground, dark_ink, mask=profile_mask)
from franchise_dna;

-- gestalt logic: the foreground is printed with the profile_mask as negative space.
-- the environment's skyline edge aligns exactly with the profile silhouette.

create temp view final_poster as
select
composite(layer1, layer2, mode='screen_print_overprint') as artwork
from poster_layers;

render artwork
with style='olly_moss_minimalism, gestalt_figure_ground',
constraints='no_gradients, no_3d, no_floating_faces_in_sky';
Published: August 20, 2026 by