# SEEN — Style Reference
> Vibrant dreamscape playground
**Theme:** light
SEEN's design system embraces a playful, otherworldly aesthetic where vibrant colors are central to its identity. The core visual language is an expressive, gradient-rich fantasy with rounded, organic forms and bold, custom typography. Color is used for soft background washes and as a distinct outline for interactive elements, creating an inviting and whimsical user experience.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Dreamdust Gradient | `radial-gradient(circle, rgba(250, 230, 255, 0.67) 0%, rgba(212, 154, 226, 0.55) 100%)` | `--color-dreamdust-gradient` | Primary background color, creating a soft, ethereal canvas for content. This gradient gives pages a subtly shifting depth |
| Bubblegum Outline | `#683c72` | `--color-bubblegum-outline` | Outlined button borders, iconic element borders, and button text — it provides distinct interactive affordances against lighter backgrounds without being a solid fill |
| Twilight Mist | `#f7d1ff` | `--color-twilight-mist` | Subtle highlight color in background gradients |
| Sunrise Glow | `#f7ae47` | `--color-sunrise-glow` | Warm accent color within background gradients, providing a soft contrast |
| Grape Vine | `#a35ab3` | `--color-grape-vine` | Cool accent color within background gradients, blending with the primary lilac |
| Midnight Vignette | `#390b5d` | `--color-midnight-vignette` | Darkest accent for background gradients, creating depth with a subtle radial vignette |
| Ink | `#000000` | `--color-ink` | Primary text color, providing high contrast against light and gradient backgrounds, as well as decorative elements and borders |
## Tokens — Typography
### BB Sans — Custom display and body font. The custom font contributes significantly to the brand's unique, approachable, and playful voice. It appears at 16px weight 400 for primary content and 14px for smaller interactive elements. · `--font-bb-sans`
- **Substitute:** Inter
- **Weights:** 400, 500
- **Sizes:** 14px, 16px
- **Line height:** 1.00
- **Role:** Custom display and body font. The custom font contributes significantly to the brand's unique, approachable, and playful voice. It appears at 16px weight 400 for primary content and 14px for smaller interactive elements.
## Tokens — Spacing & Shapes
**Base unit:** 8px
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 8 | 8px | `--spacing-8` |
| 16 | 16px | `--spacing-16` |
### Border Radius
| Element | Value |
|---------|-------|
| buttons | 32px |
### Layout
- **Section gap:** 64px
- **Card padding:** 16px
- **Element gap:** 8px
## Components
### Outlined Button
**Role:** Primary interactive element.
Ghost button with Bubblegum Outline (#683c72) border and text color, white background, and a generous 32px border radius for a distinct, soft pill shape. Padding is 4px top, 2px bottom, 16px left/right. Font is BB Sans, weight 500, 16px.
## Do's and Don'ts
### Do
- Always use 'Dreamdust Gradient' (#d49ae2) as the base background, allowing for subtle color shifts and depth.
- Apply 'Bubblegum Outline' (#683c72) exclusively for interactive elements like button borders, icons, and button text.
- Use 'Ink' (#000000) for all primary text content to ensure optimal legibility against gradient backgrounds.
- Maintain a consistent 32px border-radius for all interactive components such as buttons to reinforce the soft, organic aesthetic.
- Incorporate `BB Sans` at 16px weight 400 for body text and 14px for smaller captions and labels, avoiding other font families.
- Implement an 8px base unit for all element spacing, with elements like buttons using 16px horizontal padding.
### Don't
- Do not use solid fills for primary backgrounds; always leverage the 'Dreamdust Gradient'.
- Avoid using 'Bubblegum Outline' (#683c72) as a solid background fill for any interactive element.
- Do not use highly saturated colors for large areas of text; restrict 'Ink' (#000000) for body and headline text.
- Avoid sharp or low border-radius values; all elements should adhere to the rounded and soft aesthetic.
- Do not introduce additional font families or weights outside of BB Sans 400 and 500.
- Do not use values other than 8px or 16px for element padding and spacing unless explicitly defined for a specific component.
## Imagery
The site heavily features whimsical, 3D rendered surreal objects in vibrant, pastel colors with soft, glowing highlights and starry overlay effects. These are treated as full-bleed, atmospheric backdrops rather than contained elements, creating an immersive, dreamlike environment. The primary visual focal point is custom-rendered, blob-like typography with emotive eyes, making the text itself an expressive visual element. The imagery is purely decorative and atmospheric, setting a unique brand mood rather than conveying literal information.
## Layout
The page appears to be full-bleed, with no defined maximum width, utilizing a hero section that covers the entire viewport. The main content (the 'seen' typography) is centrally aligned and dominant. The layout prioritizes a single, compelling visual statement, implying subsequent content sections would follow a similar, spacious, and visually rich pattern without hard section dividers.
## Agent Prompt Guide
Quick Color Reference:
text: #000000
background: #d49ae2 (Dreamdust Gradient)
border: #683c72 (Bubblegum Outline)
accent: #f7d1ff
primary action: #683c72 (outlined action border)
Example Component Prompts:
1. Create a hero section: radial-gradient(circle, rgba(250, 230, 255, 0.67) 0%, rgba(212, 154, 226, 0.55) 100%) background. Place a large custom 'seen' typography element with black fill at its center. Below, position an Outlined Button with text `Open your chats`.
2. Design an interactive icon: Use #683c72 as the stroke color. The icon should be simple and line-based, suggesting an action or navigation element.
3. Create a secondary content block: Use the 'Dreamdust Gradient' as the background. Include body text `BB Sans` 16px, weight 400, #000000. Add a decorative element with a #a35ab3 tint within a linear gradient: `linear-gradient(0deg, rgba(163, 90, 179, 0.54) 0%, rgba(247, 174, 71, 0.65) 100%)`.
## Similar Brands
- **Gooey** — Known for highly stylistic and animated blobby shapes and vibrant, gradient-heavy backgrounds.
- **Calm** — Utilizes expressive, full-bleed scenic illustrations and gradients for a calming yet immersive feel, similar to SEEN's atmospheric backdrop.
- **Stripe (early branding)** — Known for its early adoption of subtle gradients and modern, rounded UI elements which give a friendly, yet sophisticated feel.
- **Superhuman** — Uses custom, distinct typography and emphasizes atmosphere through background treatments, though generally more subdued than SEEN.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-dreamdust-gradient: #d49ae2;
--gradient-dreamdust-gradient: radial-gradient(circle, rgba(250, 230, 255, 0.67) 0%, rgba(212, 154, 226, 0.55) 100%);
--color-bubblegum-outline: #683c72;
--color-twilight-mist: #f7d1ff;
--color-sunrise-glow: #f7ae47;
--color-grape-vine: #a35ab3;
--color-midnight-vignette: #390b5d;
--color-ink: #000000;
/* Typography — Font Families */
--font-bb-sans: 'BB Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-sm: 14px;
--leading-sm: 1;
--text-base: 16px;
--leading-base: 1;
/* Typography — Weights */
--font-weight-regular: 400;
--font-weight-medium: 500;
/* Spacing */
--spacing-unit: 8px;
--spacing-8: 8px;
--spacing-16: 16px;
/* Layout */
--section-gap: 64px;
--card-padding: 16px;
--element-gap: 8px;
/* Border Radius */
--radius-3xl: 32px;
/* Named Radii */
--radius-buttons: 32px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-dreamdust-gradient: #d49ae2;
--color-bubblegum-outline: #683c72;
--color-twilight-mist: #f7d1ff;
--color-sunrise-glow: #f7ae47;
--color-grape-vine: #a35ab3;
--color-midnight-vignette: #390b5d;
--color-ink: #000000;
/* Typography */
--font-bb-sans: 'BB Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-sm: 14px;
--leading-sm: 1;
--text-base: 16px;
--leading-base: 1;
/* Spacing */
--spacing-8: 8px;
--spacing-16: 16px;
/* Border Radius */
--radius-3xl: 32px;
}
```
monochromatic starkness with…
Vivid green workspace.
Vibrant billboard clarity
Vibrant dreamscape on cloudnine.…

Shifting Gradual Horizon — a…
Warm canvas, playful 3D
Shifting gradient nebula
Midnight Lake Serenity: a…
Electric Blue Studio

Grape Soda & Lemon Zest. A bold…

Architectural blueprint on white…
Gradient Playground
Deep-space command center. A…
Vibrant digital gallery. Each…
Subtle dynamism on a crisp canvas
Playful block playground
Shifting gradient nebula
Inked Canvas, Violet Spark. A…
Digital collage playground

Crisp canvas, gradient fireworks.…