# Souss Furniture — Style Reference
> industrial rawness, refined quiet: a cool grey canvas for stark matte black forms and unadorned typography.
**Theme:** light
Souss Furniture embodies a minimalist, industrial aesthetic with a muted color palette serving as a stark backdrop for product forms. Typography is direct and unstyled, primarily focusing on conveying product names and essential navigation. The system emphasizes clear object presentation over decorative flair, with most visual weight coming from the products themselves and strong text contrasts. Layouts are spacious, allowing elements to breathe, reflecting a gallery-like presentation of individual pieces.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Canvas Grey | `#f2f2f2` | `--color-canvas-grey` | Page background, primary surface for product display — a cool, neutral base that makes products pop without distraction |
| Matte Black | `#000000` | `--color-matte-black` | Dark borders and separators for elevated surfaces and inverted UI. Do not promote it to the primary CTA color |
## Tokens — Typography
### acumin-pro — All textual content, from body text to headlines and navigation elements, in a consistent, functional weight. Its directness supports the raw, unadorned aesthetic. · `--font-acumin-pro`
- **Substitute:** system-ui
- **Weights:** 400
- **Sizes:** 16px, 30px, 48px
- **Line height:** 1.00, 1.50
- **Letter spacing:** normal
- **Role:** All textual content, from body text to headlines and navigation elements, in a consistent, functional weight. Its directness supports the raw, unadorned aesthetic.
### Type Scale
| Role | Size | Line Height | Letter Spacing | Token |
|------|------|-------------|----------------|-------|
| body-sm | 16px | 1.5 | — | `--text-body-sm` |
| body | 30px | 1.5 | — | `--text-body` |
| heading | 48px | 1 | — | `--text-heading` |
## Tokens — Spacing & Shapes
**Base unit:** 8px
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 16 | 16px | `--spacing-16` |
| 20 | 20px | `--spacing-20` |
| 48 | 48px | `--spacing-48` |
### Border Radius
| Element | Value |
|---------|-------|
| none | 0px |
### Layout
- **Page max-width:** 1440px
- **Section gap:** 60px
- **Card padding:** 16px
- **Element gap:** 20px
## Components
### Product Title Link
**Role:** Interactive text for product names
Matte Black (#000000) text at 48px, acumin-pro weight 400, underlined with a 1px Matte Black (#000000) border, typically in a stacked list.
### Header Navigation Link
**Role:** Top-right navigation items
Matte Black (#000000) text at 16px, acumin-pro weight 400. Not underlined by default, but an interactive state or on-hover might introduce an underline.
### Logo Icon
**Role:** Site identifier in the top-left
An icon rendered in Matte Black (#000000) against the Canvas Grey (#f2f2f2) background, sized to afford quick recognition without dominating the header.
## Do's and Don'ts
### Do
- Prioritize Canvas Grey (#f2f2f2) for backgrounds, providing a clean, cool, and neutral base for all content.
- Use Matte Black (#000000) exclusively for all text, icons, and interactive strokes to maintain stark contrast and visual consistency.
- Present typography unadorned; use acumin-pro (system-ui fallback) at weight 400 across all text roles.
- Maintain generous spacing with an element gap of 20px and section gaps of 60px to ensure visual calm and focus on individual items.
- Ensure interactive text elements, like product titles, are underlined in Matte Black (#000000) to clearly indicate their link status.
- Use a max content width of 1440px, centering all content to provide a focused viewing experience.
### Don't
- Avoid decorative elements, additional colors, or complex gradients that would detract from the industrial presentation.
- Do not introduce multiple font weights or styles that could disrupt the uniform and functional typographic system.
- Refrain from using strong shadows or heavy borders, as this would contradict the light, raw aesthetic.
- Do not clutter the layout; elements should appear spacious and largely isolated in their presentation.
- Avoid photographic imagery; instead, rely on isolated product renders or clean, symbolic icons.
- Do not use animation other than very subtle transitions if absolutely necessary; the design is static and focused.
## Imagery
The site primarily features 3D product renders set against a plain, light background. These renders showcase the physical form of furniture pieces with realistic shadows but without environmental context or lifestyle photography. The focus is entirely on the object itself, treated as a sculptural form. Icons are simple, outlined, and monochromatic, like the hand icon in the header, serving a purely functional rather than decorative role. The imagery is content-specific, acting as a direct product showcase rather than atmospheric decoration.
## Layout
The page adheres to a max-width contained layout, centering content within a 1440px wide frame. The hero section is characterized by a centered, large-scale product image with minimal surrounding text, creating a strong focal point. Content is arranged predominantly in a single-column, stacked format, with product titles listed sequentially. The rhythm is open and spacious, with generous vertical spacing between text blocks and images, making each element feel distinct and important. Navigation is a minimalist top bar with links aligned to the top-right, while a simple logo resides in the top-left, reinforcing a gallery-like, un-cluttered presentation.
## Agent Prompt Guide
Quick Color Reference:
text: #000000
background: #f2f2f2
border: #000000
accent: no distinct accent color
primary action: no distinct CTA color
Example Component Prompts:
Create a header with a logo icon on the left (Matte Black #000000) and two navigation links 'Info' and 'Insta>' on the right, all using acumin-pro weight 400 at 16px, text color Matte Black (#000000) on a Canvas Grey (#f2f2f2) background.
Create a product listing title: 'Coffee table.' using acumin-pro weight 400, 48px size, Matte Black (#000000) text color, with a 1px Matte Black (#000000) underline, on a Canvas Grey (#f2f2f2) background.
Create a list item for a product description, like 'Fin 2+1.' using acumin-pro weight 400, 30px size, Matte Black (#000000) text color, on a Canvas Grey (#f2f2f2) background with 20px vertical spacing between items.
## Similar Brands
- **Figma** — Clean, predominantly monochromatic interfaces with minimal decoration and strong emphasis on functional typography.
- **Case Furniture** — Focus on high-quality product photography (or renders) against simple backgrounds, with minimalist text layouts.
- **Dieter Rams' work (Braun)** — Strict adherence to functional minimalism, absolute clarity in product presentation, and stark, timeless design principles.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-canvas-grey: #f2f2f2;
--color-matte-black: #000000;
/* Typography — Font Families */
--font-acumin-pro: 'acumin-pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-body-sm: 16px;
--leading-body-sm: 1.5;
--text-body: 30px;
--leading-body: 1.5;
--text-heading: 48px;
--leading-heading: 1;
/* Typography — Weights */
--font-weight-regular: 400;
/* Spacing */
--spacing-unit: 8px;
--spacing-16: 16px;
--spacing-20: 20px;
--spacing-48: 48px;
/* Layout */
--page-max-width: 1440px;
--section-gap: 60px;
--card-padding: 16px;
--element-gap: 20px;
/* Named Radii */
--radius-none: 0px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-canvas-grey: #f2f2f2;
--color-matte-black: #000000;
/* Typography */
--font-acumin-pro: 'acumin-pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-body-sm: 16px;
--leading-body-sm: 1.5;
--text-body: 30px;
--leading-body: 1.5;
--text-heading: 48px;
--leading-heading: 1;
/* Spacing */
--spacing-16: 16px;
--spacing-20: 20px;
--spacing-48: 48px;
}
```
Gallery of Quiet Objects

Minimalist digital gallery
Architectural blueprint on white…
Warm Minimalism Canvas
Gallery Grid Serenity
Gallery Canvas, Monochromatic Depth
White canvas, sharp monochrome…
Monochromatic architectural…
Sculptural Typography on Forest…
Gallery Grid Aesthetics
Warm gray minimalism on unbleached…
Warm earth-tones, artisan…
Photographic gallery on…
Architectural blueprint on stark…
Gallery Wall Catalog: A stark,…

Gallery of precise objects. A…
Black script on white canvas
Graphic Monochrome Canvas: crisp,…
Forest floor stillness
Gallery White Box – stark,…