PCLR Studio · Accra

Welcome to Pclr.

(pronounced 'peculiar')

Custom made to order pieces for a chosen generation — a peculiar people. Modest, stylish and affordable, crafted right here in Accra.

"Crafted with intention"
or use Admin → Site Photos
Uploading…
GH₵
GHS Pricing
Custom Made to Order Modest & Stylish Made in Accra Looking like Royalty @wear_pclr Custom Made to Order Modest & Stylish Made in Accra Looking like Royalty @wear_pclr
👗
PCLR STUDIO
minimalist · modest · made for you
GH₵ PRICED
What We Do

What We Do

We make minimalistic clothes for the modern woman — elegant pieces with simple silhouettes and clean lines.

Our inspo pics offer several options you can choose from — sleeves, necklines, silhouettes and more.

Everything is custom made to order — modest, stylish, and priced to be accessible right here in Accra.

👩🏾
Barbara
Upload photo via Admin
"Crafted with love and intention"
The Person Behind the Brand

Meet Barbara

I'm Barbara, the face behind the brand.

Welcome to the PCLR page! PCLR (pronounced 'peculiar') is a custom fashion studio based in Accra, Ghana.

Custom pieces made with love, intention, and a little bit of peculiar magic — right here in Accra.

📱 @wear_pclr  ·  📞 0543 206 244
Simple Process

How to Order

1
Browse our inspo pics.. 🔥
Choose from our sleeves, necklines and silhouettes.
2
Pick a fabric... 🍁
Check our page for available fabrics and their prices.
3
Get measured... 📏
We can measure with you on video call or you get a friend to help.
4
Pay to verify order... ❤️✨
Full payment or payment for your fabric verifies your order.

Our Pieces

Each garment is custom made to order — your measurements, your fabric, your style.

Fabrics

Our Fabrics

Hand-selected fabrics — the foundation of every PCLR piece.

Place Your Order

Fill in your details below and we'll reach out within 24 hours to get started.

Reach Us Directly
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);