PCLR Studio

Welcome to Pclr.

(pronounced 'peculiar')

Custom made to order pieces for a chosen generation — a peculiar people.

"Crafted with intention"
Upload your editorial image
Uploading…
GH₵
GHS Pricing
✦ New Outfit
Blazer Dress Shift Dress Sheath Dress A-Line Gown Wrap Dress Tailored Suit Blazer Dress Shift Dress Sheath Dress A-Line Gown Wrap Dress Tailored Suit

Curated Pieces
for Every Occasion

Each garment is handcrafted by Accra's finest artisans, blending traditional Ghanaian weaves with contemporary silhouettes.

Fabrics

Our Fabrics

Hand-selected fabrics from heritage looms and global mills — the foundation of every PCLR piece.

Bespoke Enquiries

Commission a one-of-a-kind piece. Our master tailors work with you from fabric selection to final fitting — all from Accra.

Our Process
1
Submit Enquiry
Fill out your requirements and vision. We respond within 24 hours.
2
Consultation & Design
A PCLR stylist meets you in-person or virtually to finalize design and fabrics.
3
Crafting & Fitting
Expert artisans begin cutting and sewing. Fittings at 50% and 90% completion.
4
Final Delivery
Pick up at our Accra studio or delivery across Ghana. International shipping available.
Visit the Atelier
PCLR Studio, Accra
Generating your preview…
Our AI is draping the fabric onto your photo
Initializing AI model…

Your Cart

🛍
Your cart is empty
Explore our collection to find your perfect piece.
AI Try-On Settings
Connect your AI provider to enable virtual try-on
Format: id:secret · Get at fal.ai/dashboard/keys
🔒 Tokens are stored in your browser's localStorage only. Nothing leaves your machine until you click Generate.
pclr Admin
Supabase
Garment Catalogue
Add New Garment
— or upload directly —
GarmentPriceBadgePhotoStatusActions
Loading…
Supabase Setup — run once in SQL editor
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);