An editorial atelier for the modern minimalist. Bespoke silhouettes in silk, lace and brocade — composed in our signature palette of plum, champagne gold and warm alabaster.
Each garment is handcrafted by Accra's finest artisans, blending traditional Ghanaian weaves with contemporary silhouettes.
Commission a one-of-a-kind piece. Our master tailors work with you from fabric selection to final fitting — all from Accra.
Compose your dream piece — silhouette, fabric, palette, finishing details. At the final step, our AI conjures a photorealistic render of the look.
Start with the form — every PCLR piece begins with the line of the body.
Heritage cloth, woven in Bonwire, printed in Makola, or finely milled Italian silk blends.
Choose a primary colour. Plain fabrics render as a solid; multi-colour patterns will weave the accent into the design.
The little decisions that make a piece truly yours.
Review your choices, then let our AI render a photorealistic preview.
Tell the AI what to adjust — sleeves, drape, colour shift, accessories, expression — and it will edit the current render rather than starting from scratch.
PCLR Studio was founded in Accra in 2019 with a singular mission: to honour Ghana's textile heritage while creating garments worthy of the world stage.
Every PCLR piece is built to outlast trends. We use long-staple fabrics, double-stitched seams and master-tailored patterns — so the dress you buy today still hangs beautifully in your wardrobe a decade from now. Quality, when measured per wear, is the most cost-effective luxury there is. And because each silhouette is cut to flatter rather than follow, the wearer is what's noticed first — the garment simply makes her unmistakable.
id:secret · Get at fal.ai/dashboard/keyslocalStorage only. Nothing leaves your machine until you click Generate.
| Garment | Price | Badge | Photo | Status | Actions |
|---|---|---|---|---|---|
| Loading… | |||||
create table garments ( id serial primary key, name text not null, cat text, type text, price numeric, price_type text, description text, badge text, icon text, img_url text, sizes text[], available boolean default true, created_at timestamptz default now() ); create table enquiries ( id serial primary key, firstname text, lastname text, email text, phone text, garment_type text, occasion text, budget text, notes text, bust numeric, waist numeric, hips numeric, shoulder numeric, arm_length numeric, dress_length numeric, fabrics text[], status text default 'new', created_at timestamptz default now() ); -- Storage bucket (run in dashboard: Storage → New bucket → "garments" → Public) -- RLS: allow anon inserts for enquiries alter table enquiries enable row level security; create policy "anon insert" on enquiries for insert to anon with check (true); create policy "admin read" on enquiries for select to anon using (true); -- RLS: allow anon reads for garments alter table garments enable row level security; create policy "public read" on garments for select using (true); create policy "admin write" on garments for all using (true) with check (true);